mirror of
https://github.com/adulau/foo.be.git
synced 2024-11-07 11:26:25 +00:00
60 lines
1.1 KiB
SCSS
60 lines
1.1 KiB
SCSS
|
/* ==========================================================================
|
||
|
Navigation
|
||
|
========================================================================== */
|
||
|
|
||
|
.c-navigation {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
padding: 0 2.5rem;
|
||
|
width: 100%;
|
||
|
background: $t-theme;
|
||
|
z-index: 10;
|
||
|
|
||
|
&:after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: 100%;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 10px;
|
||
|
background: linear-gradient(to bottom, rgba(#000, .25), rgba(#000, 0));
|
||
|
}
|
||
|
|
||
|
&.is-fixed {
|
||
|
position: fixed;
|
||
|
will-change: transform;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.c-navigation__item {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
padding-top: 2.5rem;
|
||
|
padding-bottom: 2.5rem;
|
||
|
@include ff--mono(500);
|
||
|
@include fs--meta;
|
||
|
color: $c__white;
|
||
|
text-transform: uppercase;
|
||
|
|
||
|
&:not(:last-of-type) {
|
||
|
margin-right: 2.5rem;
|
||
|
}
|
||
|
|
||
|
&:after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 2px;
|
||
|
background: transparent;
|
||
|
transition: background ease-in-out 0.2s;
|
||
|
}
|
||
|
|
||
|
&:hover:after,
|
||
|
&.is-active:after {
|
||
|
background: $c__white;
|
||
|
}
|
||
|
}
|