Skip to content

Commit bb36e9d

Browse files
authored
Merge pull request #14 from mrmundt/sponsor-pros
Add Sponsor Prospectus Page
2 parents 99c7efe + 86a9a82 commit bb36e9d

51 files changed

Lines changed: 348 additions & 6 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/css/style.css

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12208,4 +12208,65 @@ article > a:visited:hover {
1220812208
max-width: 680px;
1220912209
margin: -0.75em auto 0;
1221012210
text-align: center;
12211+
12212+
}
12213+
12214+
/* === Sponsor Carousel === */
12215+
.sponsor-carousel {
12216+
position: relative;
12217+
overflow: hidden;
12218+
max-width: 800px;
12219+
margin: 2rem auto;
12220+
border-radius: 8px;
12221+
}
12222+
.carousel-track {
12223+
display: flex;
12224+
transition: transform 0.5s ease;
12225+
}
12226+
.carousel-track img {
12227+
min-width: 100%;
12228+
height: 400px;
12229+
object-fit: cover;
12230+
}
12231+
.carousel-btn {
12232+
position: absolute;
12233+
top: 50%;
12234+
transform: translateY(-50%);
12235+
background: rgba(0,0,0,0.5);
12236+
color: white;
12237+
border: none;
12238+
font-size: 2rem;
12239+
padding: 0.5rem 1rem;
12240+
cursor: pointer;
12241+
border-radius: 4px;
12242+
}
12243+
.carousel-btn.prev { left: 10px; }
12244+
.carousel-btn.next { right: 10px; }
12245+
12246+
/* === Conference Gallery === */
12247+
.gallery-grid {
12248+
display: grid;
12249+
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
12250+
gap: 1rem;
12251+
margin: 2rem 0;
12252+
}
12253+
12254+
.gallery-item {
12255+
overflow: hidden;
12256+
border-radius: 8px;
12257+
aspect-ratio: 4 / 3;
12258+
cursor: pointer;
12259+
}
12260+
12261+
.gallery-item img {
12262+
width: 100%;
12263+
height: 100%;
12264+
object-fit: cover;
12265+
transition: transform 0.3s ease, box-shadow 0.3s ease;
12266+
display: block;
12267+
}
12268+
12269+
.gallery-item img:hover {
12270+
transform: scale(1.08);
12271+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
1221112272
}
8.9 MB
6.57 MB
6.49 MB
6.9 MB
7.34 MB
8.01 MB
5.89 MB
5.48 MB
6.64 MB

0 commit comments

Comments
 (0)