24 lines
381 B
CSS
24 lines
381 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;
|
|
}
|
|
.navbar-item{
|
|
color: white !important;
|
|
}
|
|
.navbar-item:hover {
|
|
color: #363636 !important;
|
|
background-color: white !important;
|
|
} |