Bootstrap Kevin's Data-Toolbox

This commit is contained in:
Kevin Kandlbinder 2021-04-09 23:42:32 +02:00
parent 4da936864f
commit 3f4d6da00b
30 changed files with 1255 additions and 120 deletions

View file

@ -0,0 +1,39 @@
@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;
}
}
}