40 lines
537 B
SCSS
40 lines
537 B
SCSS
|
$fa-font-path: "fa/";
|
||
|
@import "fa/fontawesome.scss";
|
||
|
@import "fa/solid.scss";
|
||
|
|
||
|
div#navbar {
|
||
|
position: fixed;
|
||
|
|
||
|
height:fit-content;
|
||
|
width: 100vw;
|
||
|
|
||
|
background-color: rgba(0,0,0, 0.1);
|
||
|
|
||
|
z-index: 500;
|
||
|
|
||
|
ul {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: left;
|
||
|
|
||
|
padding: .2em 0 .5em 0;
|
||
|
margin: 0;
|
||
|
|
||
|
i {
|
||
|
margin-right: .5em;
|
||
|
}
|
||
|
|
||
|
li{
|
||
|
list-style: none;
|
||
|
|
||
|
padding: 0 1em;
|
||
|
|
||
|
a{
|
||
|
color: rgba(255, 255, 255, 0.8);
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|