pico/docs/scss/components/_nav.scss
2020-09-29 08:38:35 +07:00

50 lines
872 B
SCSS

/**
* Docs: Navs
*/
body > nav {
-webkit-backdrop-filter: saturate(180%) blur(20px);
z-index: 99;
position: fixed;
top: 0;
right: 0;
left: 0;
backdrop-filter: saturate(180%) blur(20px);
background-color: var(--nav-background);
box-shadow: 0px 1px 0 var(--nav-border);
a {
border-radius: 0;
svg {
vertical-align: text-bottom;
}
}
ul:first-of-type li {
// Brand
&:first-of-type {
a {
width: 3.5rem;
height: 3.5rem;
margin-left: calc(var(--spacing-gutter) * -1);
padding: 0;
background: var(--h1);
color: var(--background);
}
}
// Title
&:nth-of-type(2) {
display: none;
margin-left: var(--spacing-gutter);
color: var(--h1);
@media (min-width: map-get($breakpoints, "lg")) {
display: inline;
}
}
}
}