25 lines
343 B
CSS
25 lines
343 B
CSS
|
body {
|
||
|
margin: 0px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.mbNavTop {
|
||
|
background-color: var(--colour-navbar);
|
||
|
overflow: hidden;
|
||
|
height: 65;
|
||
|
padding: 0 .5rem;
|
||
|
width:100vw;
|
||
|
}
|
||
|
|
||
|
#Logo {
|
||
|
color:white;
|
||
|
}
|
||
|
|
||
|
.mbNavTop a {
|
||
|
float:left;
|
||
|
color:antiquewhite;
|
||
|
text-align: center;
|
||
|
padding: 14px 16px;
|
||
|
text-decoration: none;
|
||
|
font-size: 17px;
|
||
|
}
|