65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
body {
|
|
background-color: #F1FAEE; /* Off-white */
|
|
font-family: 'Inter', sans-serif;
|
|
color: #1D3557; /* Dark blue text for contrast */
|
|
}
|
|
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
z-index: 1055;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #E63946, #D62828); /* Vibrant Red Gradient */
|
|
color: white;
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-weight: 700;
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Button override */
|
|
.btn-primary {
|
|
background-color: #E63946;
|
|
border-color: #E63946;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #D62828;
|
|
border-color: #D62828;
|
|
}
|
|
|
|
/* Table header */
|
|
.table > thead {
|
|
background-color: #E63946;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.table > thead th {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Modal Header */
|
|
.modal-header {
|
|
background-color: #E63946;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.modal-header .btn-close {
|
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
} |