Files
hermes/WebApp/wwwroot/css/site.css
eee4 5536a9ad7f fix: front-end improvements
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
2025-05-19 00:43:15 +02:00

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);
}