Website_MFI.de/_source/scss/styles.scss

32 lines
625 B
SCSS
Raw Normal View History

2020-05-04 23:02:34 +02:00
$breakpoint-tablet: 640px;
$breakpoint-mobile: 380px;
2020-05-05 00:16:03 +02:00
$color-primary: #1167B4;
2020-05-04 20:49:49 +02:00
body {
2020-05-04 22:31:17 +02:00
background-color: #fff;
color: #111;
2020-05-05 00:16:03 +02:00
font-family: 'Inter', sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
2020-05-04 23:02:34 +02:00
font-size: 100%;
}
h1, h2, h3 {
2020-05-05 00:16:03 +02:00
font-family: 'Libre Baskerville', serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 700;
2020-05-04 20:49:49 +02:00
}
2020-05-04 22:31:17 +02:00
#logo {
height: 80px;
2020-05-04 23:02:34 +02:00
@media (max-width: $breakpoint-tablet){
height: 70px;
}
@media (max-width: $breakpoint-mobile){
height: 60px;
}
}
header {
margin-left: 0.4em;
margin-top: 0.4em;
2020-05-04 22:31:17 +02:00
}