mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
makes some fields visible and other hidden depending on the result of some API calls, e.g. visitor is logged in -> show "Log out" button
41 lines
733 B
CSS
41 lines
733 B
CSS
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.hidden-before-load {
|
|
display: none !important;
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
|
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
|
}
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin-bottom: 60px;
|
|
}
|
|
.custom-btn {
|
|
background: linear-gradient(135deg, #00b09b, #96c93d);
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 24px;
|
|
border-radius: 10px;
|
|
font-size: 18px;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.custom-btn:hover {
|
|
background: linear-gradient(135deg, #007d71, #7ba328);
|
|
}
|