60 lines
902 B
CSS
60 lines
902 B
CSS
:root {
|
|
--bs-primary: #093e9a;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fffcf5;
|
|
}
|
|
|
|
.main-content {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
footer {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Override Bootstrap primary color classes */
|
|
.btn-primary,
|
|
.btn-primary:active,
|
|
.btn-primary:focus,
|
|
.btn-primary:hover {
|
|
background-color: #093e9a !important;
|
|
border-color: #093e9a !important;
|
|
}
|
|
|
|
.bg-primary {
|
|
background-color: #093e9a !important;
|
|
}
|
|
|
|
.border-primary {
|
|
border-color: #093e9a !important;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #093e9a !important;
|
|
}
|
|
|
|
.container {
|
|
width: 673px;
|
|
max-width: 100%;
|
|
margin: 16px auto;
|
|
background: transparent;
|
|
border-radius: 1.25rem;
|
|
box-shadow: none;
|
|
padding: 16px;
|
|
}
|
|
|
|
.d-flex.gap-2>.btn.flex-fill,
|
|
.d-flex.gap-2>.btn {
|
|
flex: 1 1 0 !important;
|
|
min-width: 0;
|
|
} |