70 lines
853 B
CSS

/* Hide scrollbar for Chrome, Safari and Opera */
:root::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
:root {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
@font-face {
font-family: Roboto Slab;
src: url("../fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf");
}
* {
font-family: Roboto Slab;
}
a {
text-decoration: none;
color: black;
}
a:hover {
cursor: pointer;
}
header {
background-color: #235D70;
}
.navbar {
color: white;
}
.navbar-brand {
color: white;
margin-bottom: 0.2em;
}
.navbar-brand:hover {
color: white;
}
.bottom-menu {
background-color: #235D70;
}
.bottom-menu * {
color: white;
}
.bottom-menu span {
font-size: smaller;
}
#login-form {
width: 50%;
}
@media screen and (max-width: 576px) {
#login-form {
width: 75%;
}
}