1
0
web-semprace/sass/header.scss

39 lines
544 B
SCSS
Raw Normal View History

2023-11-19 00:19:59 +01:00
nav {
2023-12-01 03:23:59 +01:00
display: flex;
justify-content: space-between;
background-color: var(--clr-Melon);
padding: 1rem var(--container-size);
font-family: 'coolvetica';
2023-11-20 16:52:40 +01:00
2023-12-01 03:23:59 +01:00
.nav-right, .nav-left {
display: flex;
align-items: center;
gap: 2rem;
}
2023-11-20 16:52:40 +01:00
2023-12-01 03:23:59 +01:00
.nav-right > a {
display: flex;
}
.nav-btn {
display: none;
}
a {
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
font-size: normal;
color: var(--clr-Murrey);
}
img {
height: 2rem;
}
.nav-left img {
height: 4rem;
}
2023-11-24 00:46:26 +01:00
}