70 lines
1.5 KiB
CSS
70 lines
1.5 KiB
CSS
/* Elementary School Website - Custom Styles */
|
|
|
|
:root {
|
|
--primary-color: #4A90E2; /* Friendly Blue */
|
|
--secondary-color: #F5A623; /* Warm Orange */
|
|
--background-color: #F9F9F9;
|
|
--surface-color: #FFFFFF;
|
|
--text-color: #333333;
|
|
--heading-font: 'Poppins', sans-serif;
|
|
--body-font: 'Lato', sans-serif;
|
|
--border-radius: 8px;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--body-font);
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, .navbar-brand {
|
|
font-family: var(--heading-font);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(45deg, var(--primary-color), #7dc1ff);
|
|
min-height: 50vh;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
#announcements h2 {
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.announcement-card {
|
|
border: 0;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.announcement-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
|
|
}
|
|
|
|
.announcement-card .card-title {
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navbar-nav .nav-link.dropdown-toggle {
|
|
background-color: var(--secondary-color);
|
|
color: white !important;
|
|
border-radius: var(--border-radius);
|
|
padding-left: 1rem !important;
|
|
padding-right: 1rem !important;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #343a40;
|
|
}
|