36 lines
No EOL
647 B
CSS
36 lines
No EOL
647 B
CSS
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
@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 Navbar Style */
|
|
.navbar-custom {
|
|
background-color: #28a745; /* A nice shade of green */
|
|
}
|
|
|
|
.navbar-custom .navbar-brand,
|
|
.navbar-custom .nav-link {
|
|
color: #ffffff; /* White text for good contrast */
|
|
}
|
|
|
|
.navbar-custom .nav-link:hover {
|
|
color: #d4d4d4; /* A light gray for hover effect */
|
|
} |