2022-01-09 19:52:27 +01:00
|
|
|
header {
|
2022-01-14 02:18:09 +01:00
|
|
|
margin: -25px -25px 0px -25px;
|
2022-01-09 19:52:27 +01:00
|
|
|
background: $background_accent_1;
|
|
|
|
padding: 20px 30px;
|
|
|
|
box-shadow: 5px 5px 5px 10px $background_accent_1;
|
2022-01-14 02:18:09 +01:00
|
|
|
h1 a, h1 a:hover, h1 a:link {
|
2022-01-16 02:17:41 +01:00
|
|
|
font-family: $headline_font, sans-serif;
|
2022-01-09 19:52:27 +01:00
|
|
|
color: $font_accent_1;
|
|
|
|
margin: 0;
|
2022-01-14 02:18:09 +01:00
|
|
|
font-weight: bold;
|
2022-01-09 20:12:56 +01:00
|
|
|
text-decoration: none;
|
2022-01-14 02:18:09 +01:00
|
|
|
font-size: $font_size_h1;
|
2022-01-09 19:52:27 +01:00
|
|
|
}
|
|
|
|
nav ul {
|
2022-01-14 02:18:09 +01:00
|
|
|
font-size: $font_size_default;
|
2022-01-09 19:52:27 +01:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-01-16 04:53:54 +01:00
|
|
|
a, a:link, a:visited {
|
|
|
|
color: $font_accent_2;
|
|
|
|
}
|
|
|
|
a:hover, a:active {
|
|
|
|
color: $font_accent_3;
|
|
|
|
}
|
2022-01-09 19:52:27 +01:00
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-16 02:17:41 +01:00
|
|
|
@media (max-width: $media_horizontal_breakpoint) {
|
|
|
|
header {
|
|
|
|
h1 a, h1 a:hover, h1 a:link {
|
|
|
|
font-size: $font_size_h1_mobile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|