32 lines
542 B
SCSS
32 lines
542 B
SCSS
body {
|
|
> header {
|
|
position: sticky;
|
|
z-index: 999;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
padding: 1.5rem var(--padding-body);
|
|
box-sizing: border-box;
|
|
|
|
ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
li {
|
|
a {
|
|
padding: 0.75rem;
|
|
}
|
|
}
|
|
|
|
li:not(:first-child) {
|
|
font-size: var(--font-size-s);
|
|
text-transform: uppercase;
|
|
}
|
|
li:first-child {
|
|
width: 30%;
|
|
font-size: 1.5625rem;
|
|
}
|
|
}
|
|
}
|
|
}
|