mirror of
https://github.com/Unkn0wnCat/data-toolbox-site.git
synced 2025-05-28 15:16:10 +02:00
Bootstrap Kevin's Data-Toolbox
This commit is contained in:
parent
4da936864f
commit
3f4d6da00b
30 changed files with 1255 additions and 120 deletions
39
src/components/Navigation.module.scss
Normal file
39
src/components/Navigation.module.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue