33 lines
615 B
CSS
33 lines
615 B
CSS
body {
|
|
background-color: #F8F6F4 !important;
|
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
|
color: #38404B;
|
|
}
|
|
|
|
.navbar-brand {
|
|
color: #A68A64 !important;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Georgia', serif;
|
|
color: #38404B;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #A68A64;
|
|
border-color: #A68A64;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #8b7355;
|
|
border-color: #8b7355;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: #E0CDB8;
|
|
box-shadow: 0 0 0 0.25rem rgba(166, 138, 100, 0.25);
|
|
}
|
|
|
|
.bg-gradient-light {
|
|
background: linear-gradient(180deg, #F8F6F4 0%, #FFFFFF 100%);
|
|
} |