mirror of
https://github.com/Unkn0wnCat/data-toolbox-site.git
synced 2025-05-25 13:46:11 +02:00
39 lines
No EOL
743 B
SCSS
39 lines
No EOL
743 B
SCSS
@import "../common";
|
|
|
|
.navigation {
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: $layoutNavigationHeight;
|
|
background-color: #1c1c1c;
|
|
z-index: 100;
|
|
|
|
@supports(backdrop-filter: blur(5px)) {
|
|
background-color: #000000e0;
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
|
|
> nav {
|
|
max-width: $layoutWidth;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
height: $layoutNavigationHeight;
|
|
align-items: stretch;
|
|
|
|
.spacer {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
> a {
|
|
padding: 0 $layoutPadding;
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
} |