36947-vm/assets/css/custom.css
Flatlogic Bot 4be8924eba Educ8
2025-12-14 21:05:45 +00:00

131 lines
2.3 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');
body {
background-color: #fdfdfd;
color: #333;
font-family: 'Poppins', sans-serif;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #222;
}
a {
color: #007bff;
transition: color 0.3s ease;
}
a:hover {
color: #0056b3;
text-decoration: none;
}
.navbar {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
padding: 1rem 0;
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 1.75rem;
color: #333 !important;
}
.nav-link {
font-family: 'Poppins', sans-serif;
font-weight: 500;
text-transform: uppercase;
font-size: 0.9rem;
color: #555 !important;
margin-left: 1.5rem;
transition: color 0.3s ease;
}
.nav-link:hover {
color: #007bff !important;
}
.card {
border: none;
border-radius: 15px;
background-color: #fff;
box-shadow: 0 10px 30px rgba(0,0,0,0.07);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 2.5rem;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.card-body {
padding: 2.5rem;
}
.card-title {
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.3;
}
.card-text {
color: #666;
font-size: 1.05rem;
}
.btn {
border-radius: 50px;
font-family: 'Poppins', sans-serif;
font-weight: 500;
padding: 0.8rem 2rem;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
color: #fff;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}
.footer {
background-color: #333;
color: #fdfdfd;
padding: 3rem 0;
margin-top: 4rem;
}
.footer a {
color: #fdfdfd;
}
.footer a:hover {
color: #007bff;
}
.container {
max-width: 1140px;
}
.post-meta {
font-size: 0.9rem;
color: #888;
margin-bottom: 1.5rem;
}