61 lines
984 B
CSS
61 lines
984 B
CSS
body {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #F4F4F4;
|
|
color: #0A2342;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.bg-primary {
|
|
background-color: #0A2342 !important;
|
|
}
|
|
|
|
.text-accent {
|
|
color: #2CA58D;
|
|
}
|
|
|
|
.text-accent-2 {
|
|
color: #FFD700;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #2CA58D;
|
|
border-color: #2CA58D;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #248a73;
|
|
border-color: #248a73;
|
|
}
|
|
|
|
.dashboard-hero {
|
|
padding: 4rem 2rem;
|
|
background: linear-gradient(45deg, #0A2342, #1a4a8a);
|
|
color: white;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.progress-bar {
|
|
background-color: #2CA58D;
|
|
}
|
|
|
|
.table-hover tbody tr:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
.form-check-input:checked {
|
|
background-color: #2CA58D;
|
|
border-color: #2CA58D;
|
|
} |