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
49 changes: 49 additions & 0 deletions _sass/_anthropic.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2163,3 +2163,52 @@ h4:hover .fc-anchor,
border-radius: 0 !important;
box-shadow: none !important;
}

// 26. Sponsors — centered logo card(s) below the contributors grid.
// Mirrors the .fc-school-card look but uses a centered flex row so a single
// (or a few) sponsor logos sit centered instead of pinned to a 12-col grid.
.fc-sponsors .fc-sponsor-grid {
display: flex !important;
flex-wrap: wrap;
justify-content: center;
gap: 0.75rem;
max-width: 1080px;
margin: 0 auto !important;
}

.fc-sponsors .fc-sponsor-card {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
gap: 0.7rem !important;
padding: 1.5rem 2rem !important;
background: var(--fc-industrial-panel) !important;
border: 1px solid var(--fc-industrial-line) !important;
border-radius: 10px !important;
min-height: 118px;
text-decoration: none !important;
transition: border-color 0.2s ease, transform 0.2s ease;
}

.fc-sponsors .fc-sponsor-card:hover {
border-color: var(--fc-industrial-line-strong) !important;
transform: translateY(-2px);
}

.fc-sponsors .fc-sponsor-card img {
height: 40px !important;
max-height: 40px !important;
width: auto !important;
object-fit: contain !important;
}

.fc-sponsors .fc-sponsor-card p {
font-size: 0.8125rem !important;
font-weight: 500 !important;
letter-spacing: -0.005em !important;
color: var(--fc-industrial-muted) !important;
margin: 0 !important;
text-align: center;
line-height: 1.3 !important;
}
Loading
Loading