www.franconian.net/assets/style.scss

90 lines
1.0 KiB
SCSS
Raw Normal View History

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
}
h1, h2, h3, h4, h5, h6, p {
margin-bottom: 0.5em;
padding: 0 0.5rem;
}
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;
}
a {
text-decoration: none;
}
2020-11-23 18:56:53 +01:00
figure {
img {
2020-11-23 19:20:05 +01:00
max-width: 100%;
2020-11-23 18:56:53 +01:00
display: block;
margin: 0 auto;
}
figcaption {
display: none;
}
}
2020-11-23 02:56:53 +01:00
.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
}