151 lines
2.4 KiB
CSS
151 lines
2.4 KiB
CSS
body {
|
|
font-family: 'Lato', sans-serif;
|
|
color: #264653;
|
|
background-color: #F4F4F4;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
color: #2A9D8F !important;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #264653 !important;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #2A9D8F !important;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #2A9D8F, #2de0c9);
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #E9C46A;
|
|
border-color: #E9C46A;
|
|
color: #264653;
|
|
padding: 12px 30px;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
border-radius: 0.5rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #f0d28a;
|
|
border-color: #f0d28a;
|
|
}
|
|
|
|
section {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
section h2 {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
font-size: 2.5rem;
|
|
color: #264653;
|
|
}
|
|
|
|
.feature-card {
|
|
background-color: #FFFFFF;
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
padding: 30px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 3rem;
|
|
color: #2A9D8F;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.testimonial-card {
|
|
background-color: #FFFFFF;
|
|
border-radius: 0.5rem;
|
|
padding: 30px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
#contact {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: 0.5rem;
|
|
padding: 15px;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: #2A9D8F;
|
|
box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
|
|
}
|
|
|
|
footer {
|
|
background-color: #264653;
|
|
color: white;
|
|
padding: 40px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
footer a {
|
|
color: #E9C46A;
|
|
}
|
|
|
|
/* Dashboard Styles */
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 280px;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border-right: 1px solid #dee2e6;
|
|
}
|
|
.sidebar .nav-link {
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
.sidebar .nav-link.active {
|
|
color: #0d6efd;
|
|
}
|
|
.sidebar .nav-link .bi {
|
|
margin-right: 10px;
|
|
}
|
|
.main-content {
|
|
margin-left: 280px;
|
|
padding: 20px;
|
|
} |