Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 38 additions & 30 deletions PyBay/content/contents.lr
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ center_image:
#### text-block ####
text:

<div style="background-color: #daeef3;" class="p4 rounded-circle">
<h3 style="
font-size: 2.5rem;
font-weight: bold;
Expand All @@ -32,7 +31,7 @@ text:


<script type="text/javascript" src="https://sessionize.com/api/v2/w0m77abc/view/SpeakerWall"></script>
</div>

----
class: centered
#### text-block ####
Expand Down Expand Up @@ -65,38 +64,47 @@ text:

<br>

<div class="row">
<div class="col-md-4 card text-center">
<div class="card-header">
<span class="iwrap"><i class="fa-solid fa-building"></i></span>
</div>
<div class="card-body">
<b>attending</b>
<p class="card-text">We will be returning to the Mission Bay Conference Center</p>
<a href="./attending" class="btn rainbow">Learn More</a>
</div>
</div>
<div class="col-md-4 card text-center">
<div class="card-header">
<span class="iwrap"><i class="far fa-handshake"></i></span>
</div>
<div class="card-body">
<b>sponsoring</b>
<p class="card-text">PyBay wouldn't be possible without our sponsors. Check out our prospectus and sponsor PyBay today.</p>
<a href="./sponsors/sponsor-us/" class="btn btn-primary">Sponsor Us</a>

<div class="row g-4 bottom-cards">
<div class="col-md-4">
<div class="bottom-card text-center">
<div class="card-icon">
<i class="fa-solid fa-building"></i>
</div>
<div class="card-body">
<h5 class="card-title">Attending</h5>
<p class="card-text">We will be returning to the Mission Bay Conference Center</p>
<a href="./attending" class="btn" style="border-bottom: 5px solid orange">Learn More</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 card text-center">
<div class="card-header">
<span class="iwrap"><i class="fa-solid fa-microphone-lines"></i> </span>
<div class="col-md-4">
<div class="bottom-card text-center">
<div class="card-icon">
<i class="far fa-handshake"></i>
</div>
<div class="card-body">
<h5 class="card-title">Sponsoring</h5>
<p class="card-text">PyBay wouldn't be possible without our sponsors. Check out our prospectus and sponsor PyBay today.</p>
<a href="./sponsors/sponsor-us/" class="btn" style="border-bottom: 5px solid orange">Sponsor Us</a>
</div>
</div>
</div>
<div class="card-body">
<b>speaking</b>
<p class="card-text">Every year we have top speakers.</p>
<a href="./speaking/current-speakers" class="btn btn-primary">Check out our speakers!</a>
<div class="col-md-4">
<div class="bottom-card text-center">
<div class="card-icon">
<i class="fa-solid fa-microphone-lines"></i>
</div>
<div class="card-body">
<h5 class="card-title">Speaking</h5>
<p class="card-text">Every year we have top speakers.</p>
<a href="./speaking/current-speakers" class="btn " style="border-bottom: 5px solid orange">Check out our speakers!</a>
</div>
</div>
</div>
</div>
</div>


----
class: default
---
Expand Down
65 changes: 65 additions & 0 deletions PyBay/webpack/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1145,4 +1145,69 @@ header.navbar-custom {
}


/* SpeakerCards */

.sz-speaker {
background: white;
border-radius: 12px;
margin: 10px !important;
padding: 24px 20px !important;
padding: 16px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sz-speaker:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}



.sz-modal .sz-speaker{
padding: 10px !important
}

.sz-modal .sz-speaker__photo{
margin: 5px !important
}


/* BottomCards */

.bottom-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
padding: 24px 20px;
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.bottom-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-icon {
font-size: 2.5rem;
margin-bottom: 16px;
color: #006B8F; /* Bootstrap primary color, change as needed */
}

.card-title {
font-weight: 600;
margin-bottom: 10px;
text-transform: capitalize;
}

.card-body{
background-color: white !important;
}



// background-image: url(../images/waves.png), ;