le-courage-du-reel/assets/css/src/_header.scss

39 lines
628 B
SCSS
Raw Normal View History

2026-02-23 16:31:30 +01:00
body {
> header {
box-sizing: border-box;
2026-02-23 16:31:30 +01:00
position: sticky;
z-index: 999;
top: 0;
left: 0;
width: 100vw;
2026-02-23 16:31:30 +01:00
padding: 1.5rem var(--padding-body);
box-sizing: border-box;
.nav-logo,
.burger {
display: none;
}
2026-02-23 16:31:30 +01:00
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;
}
}
}
}