31 lines
508 B
CSS
31 lines
508 B
CSS
*,
|
|
*:after,
|
|
*:before {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
.navbar-menu,
|
|
.navbar-dropdown {
|
|
background-color: rgb(24, 24, 24) !important;
|
|
z-index: 100 !important;
|
|
/* position: absolute !important; */
|
|
}
|
|
.navbar-item {
|
|
color: white !important;
|
|
}
|
|
.navbar-item:hover {
|
|
color: #363636 !important;
|
|
background-color: white !important;
|
|
}
|
|
|
|
#navContainer {
|
|
padding-bottom: 5.5rem !important;
|
|
}
|