100 lines
2.1 KiB
CSS
100 lines
2.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700&display=swap');
|
|
|
|
:root {
|
|
--primary-color: #10b981; /* Vibrant Emerald */
|
|
--secondary-color: #1a1d23; /* Deep Charcoal */
|
|
--bg-color: #f8fafc; /* Soft Slate */
|
|
--text-color: #334155;
|
|
--heading-font: 'Outfit', sans-serif;
|
|
--body-font: 'Inter', sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
font-family: var(--body-font);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--heading-font);
|
|
color: var(--secondary-color);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(135deg, var(--secondary-color) 0%, #334155 100%);
|
|
color: white;
|
|
padding: 100px 0;
|
|
margin-bottom: 50px;
|
|
border-radius: 0 0 30px 30px;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
color: white;
|
|
font-size: 3.5rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
border-radius: 8px;
|
|
padding: 10px 25px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #059669;
|
|
border-color: #059669;
|
|
}
|
|
|
|
.stat-card {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-card .number {
|
|
font-size: 2.5rem;
|
|
color: var(--primary-color);
|
|
display: block;
|
|
}
|
|
|
|
.stat-card .label {
|
|
font-weight: 500;
|
|
color: #64748b;
|
|
}
|
|
|
|
.nav-link {
|
|
font-weight: 500;
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: var(--heading-font);
|
|
font-size: 1.5rem;
|
|
color: var(--secondary-color) !important;
|
|
}
|
|
|
|
.badge-staff { background-color: #dcfce7; color: #166534; }
|
|
.badge-board { background-color: #dbeafe; color: #1e40af; }
|
|
.badge-volunteer { background-color: #fef9c3; color: #854d0e; }
|
|
|
|
.search-bar {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 30px;
|
|
} |