[Add] Team section & teams post
This commit is contained in:
parent
723e3762ec
commit
c2d03efc57
15 changed files with 1063 additions and 53 deletions
|
|
@ -775,3 +775,218 @@ footer a:hover {
|
|||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #3a424a;
|
||||
}
|
||||
|
||||
/* ─── Socials Section Layout ─── */
|
||||
#socials .content-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
/* Social links come first */
|
||||
.social-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/* Staff section below socials */
|
||||
.staff-section {
|
||||
width: 100%;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
/* Staff title */
|
||||
.staff-section h2 {
|
||||
text-align: center;
|
||||
font-size: 2.2rem;
|
||||
margin-bottom: 3rem;
|
||||
text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.staff-card {
|
||||
padding: 1.8rem 1.2rem;
|
||||
}
|
||||
|
||||
.staff-placeholder {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: #2a2e33;
|
||||
margin: 0 auto 1rem;
|
||||
border: 3px solid #2a2e33;
|
||||
}
|
||||
|
||||
/* ─── Team Cards ─── */
|
||||
#team {
|
||||
background: var(--bg-solid);
|
||||
}
|
||||
|
||||
#team h2 {
|
||||
text-align: center;
|
||||
font-size: 2.2rem;
|
||||
margin-bottom: 3rem;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.teams-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.team-card-large {
|
||||
position: relative;
|
||||
border-radius: 16px;
|
||||
border: 1px solid var(--border-base);
|
||||
overflow: hidden;
|
||||
transition: all 0.3s;
|
||||
min-height: 420px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.team-card-large:hover {
|
||||
transform: translateY(-6px);
|
||||
border-color: var(--border-hover);
|
||||
}
|
||||
|
||||
/* background image */
|
||||
.team-card-image {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* Bottom half */
|
||||
.team-card-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
transparent 0%,
|
||||
transparent 35%,
|
||||
rgba(10, 12, 14, 0.85) 65%,
|
||||
rgba(10, 12, 14, 0.95) 100%
|
||||
);
|
||||
backdrop-filter: blur(0px);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Header text centered */
|
||||
.team-card-header {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
padding: 2rem 1.5rem 1rem;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.team-name {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
.team-acronym {
|
||||
font-size: 0.9rem;
|
||||
color: var(--accent-light);
|
||||
margin-top: 0.3rem;
|
||||
letter-spacing: 0.15em;
|
||||
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.team-card-body {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
padding: 0 1.5rem 1.5rem;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
/* Fade divider lines */
|
||||
.fade-line {
|
||||
height: 1px;
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
transparent 0%,
|
||||
var(--border-hover) 30%,
|
||||
var(--border-hover) 70%,
|
||||
transparent 100%
|
||||
);
|
||||
margin: 0.8rem 0;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.team-meta-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.meta-label {
|
||||
font-size: 1.1rem;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.meta-value.vips {
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-muted);
|
||||
letter-spacing: 0.15em;
|
||||
}
|
||||
|
||||
.team-description {
|
||||
color: #bbb;
|
||||
line-height: 1.6;
|
||||
font-size: 0.95rem;
|
||||
text-align: center;
|
||||
margin: 0.5rem 0 1rem;
|
||||
}
|
||||
|
||||
/* Discord button centered at bottom */
|
||||
.team-discord-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.6rem;
|
||||
width: calc(100% - 1rem);
|
||||
margin: 0.5rem auto 0;
|
||||
padding: 0.7rem 1rem;
|
||||
background: rgba(88, 101, 242, 0.2);
|
||||
border: 1px solid rgba(88, 101, 242, 0.35);
|
||||
border-radius: 10px;
|
||||
color: #aab2ff;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.team-discord-btn:hover {
|
||||
background: rgba(88, 101, 242, 0.35);
|
||||
border-color: rgba(88, 101, 242, 0.55);
|
||||
color: #c5cbff;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.discord-mini {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* ─── Responsive ─── */
|
||||
@media (max-width: 768px) {
|
||||
.teams-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue