diff --git a/PyBay/content/contents.lr b/PyBay/content/contents.lr index da8e9c2..2854205 100644 --- a/PyBay/content/contents.lr +++ b/PyBay/content/contents.lr @@ -15,7 +15,6 @@ center_image: #### text-block #### text: -

-

+ ---- class: centered #### text-block #### @@ -65,38 +64,47 @@ text:
-
-
-
- -
-
- attending -

We will be returning to the Mission Bay Conference Center

- Learn More -
-
-
-
- -
-
- sponsoring -

PyBay wouldn't be possible without our sponsors. Check out our prospectus and sponsor PyBay today.

- Sponsor Us + +
+
+
+
+ +
+
+
Attending
+

We will be returning to the Mission Bay Conference Center

+ Learn More +
+
-
-
-
- +
+
+
+ +
+
+
Sponsoring
+

PyBay wouldn't be possible without our sponsors. Check out our prospectus and sponsor PyBay today.

+ Sponsor Us +
+
-
- speaking -

Every year we have top speakers.

- Check out our speakers! +
+
+
+ +
+
+
Speaking
+

Every year we have top speakers.

+ Check out our speakers! +
+
-
+ + ---- class: default --- diff --git a/PyBay/webpack/scss/main.scss b/PyBay/webpack/scss/main.scss index b22c3a7..7c90644 100644 --- a/PyBay/webpack/scss/main.scss +++ b/PyBay/webpack/scss/main.scss @@ -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), ; \ No newline at end of file