36 lines
537 B
CSS
36 lines
537 B
CSS
/* Header */
|
|
|
|
.navbar {
|
|
margin: 0;
|
|
background: rgb(11,11,12);
|
|
height: 3em;
|
|
border-color: white;
|
|
border-bottom: 5px;
|
|
|
|
overflow: hidden;
|
|
z-index: 1000;
|
|
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.sticky {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.navbar a {
|
|
float: left;
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 10px 10px;
|
|
text-decoration: underline 0.1em rgba(255,255,255,0);
|
|
}
|
|
|
|
.navbar-right {
|
|
float: right;
|
|
margin-right 10px;
|
|
}
|