You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.1 KiB

6 years ago
body > header {
6 years ago
// FIXME responsive
6 years ago
position: fixed;
top: 0;
z-index: 100;
width: 100vw;
display: flex;
justify-content: space-between;
align-items: center;
height: var(--toolbar-height);
padding: 0 var(--container-margin);
box-shadow: 0 var(--space-1) var(--space-2) var(--darken-1);
background: var(--primary);
color: var(--primary-txt);
.logo img {
height: calc(var(--toolbar-height) - (2 * var(--space-2)));
}
nav {
display: flex;
align-items: center;
a {
display: block;
text-transform: uppercase;
padding: 0 var(--space-3);
text-decoration: none;
line-height: calc(var(--toolbar-height) - (4 * var(--space-2)));;
color: inherit;
opacity: .5;
font-weight: 200;
transition: all var(--animation);
border-bottom: medium solid transparent;
border-radius: 5%;
&:focus, &:hover {
6 years ago
text-shadow: var(--extruded-dark);
6 years ago
opacity: .75;
}
&.active {
opacity: 1;
border-bottom-color: currentColor;
}
}
}
}