2022-01-11 03:00:54 +00:00
|
|
|
|
@import "../Shared/Globals.scss";
|
|
|
|
|
|
|
|
|
|
#top-bar {
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: calc(100% - #{$sidebar-width});
|
|
|
|
|
height: $header-height;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
backdrop-filter: blur(5px) grayscale(10%);
|
|
|
|
|
z-index: 2;
|
2022-01-11 15:05:48 +00:00
|
|
|
|
|
|
|
|
|
font-family: $raleway-font;
|
|
|
|
|
text-transform: uppercase;
|
2022-01-11 03:00:54 +00:00
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
|
|
nav {
|
|
|
|
|
font-weight: 100;
|
2022-01-11 15:05:48 +00:00
|
|
|
|
font-size: 1em;
|
2022-01-11 03:00:54 +00:00
|
|
|
|
line-height: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
a {
|
|
|
|
|
color: white;
|
|
|
|
|
display: block;
|
2022-01-11 15:05:48 +00:00
|
|
|
|
padding: 0.5rem 1rem;
|
2022-01-11 03:00:54 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: background-color .25s ease-in-out;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-bottom: 2px solid $accent-color;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|