2020-11-23 02:56:53 +01:00
|
|
|
@import 'fonts';
|
|
|
|
@import 'colors';
|
2020-11-23 02:06:40 +01:00
|
|
|
|
2020-11-15 00:32:58 +01:00
|
|
|
* {
|
2020-11-23 02:06:40 +01:00
|
|
|
font-family: Montserrat, sans-serif;
|
2020-11-23 02:56:53 +01:00
|
|
|
color: $text-color;
|
|
|
|
|
2020-11-15 00:32:58 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-11-23 02:56:53 +01:00
|
|
|
background: $background;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: auto;
|
2020-11-15 00:32:58 +01:00
|
|
|
}
|
|
|
|
|
2020-11-23 02:06:40 +01:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: Orbitron, sans-serif;
|
2020-11-23 02:56:53 +01:00
|
|
|
font-weight: 900;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
border-bottom: 2px $text-color solid;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0.25em 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
@media screen and (min-width: 800px) {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-logo {
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
@media screen and (min-width: 800px) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
align-self: center;
|
|
|
|
padding: 0.5em;
|
|
|
|
|
|
|
|
&.nav-link-active {
|
|
|
|
}
|
|
|
|
}
|
2020-11-23 02:06:40 +01:00
|
|
|
}
|
|
|
|
|
2020-11-15 00:32:58 +01:00
|
|
|
#no-content {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|