fonts, grid

This commit is contained in:
2021-03-30 16:24:18 +02:00
parent 964832e90b
commit cfe7812cba
95 changed files with 5439 additions and 2708 deletions
@@ -10,6 +10,8 @@
}
}
#body > script:first-child + .grav-lightslider {
margin-top: -3rem;
}
@@ -8,7 +8,7 @@ $dropdown-color: #f6f6f6;
z-index: 10;
width: 100%;
height: $header-height;
background-color: black;
background-color: white;
box-shadow: 0 0.05rem 1rem rgba(0,0,0, 0.15);
@@ -13,6 +13,7 @@ $panel-text: #ddd;
list-style: none;
padding: 0;
li {
a {
color: $panel-text;
@@ -71,4 +72,3 @@ $panel-text: #ddd;
}
}
}
@@ -1,16 +1,22 @@
// Body Base
html, body, button, input, select, textarea, .pure-g, .pure-g [class *= "pure-u"] {
font-family: $font-family-default;
font-weight: 400;
}
// Headings
h1, h2, h3, h4, h5, h6 {
h1 {
font-family: $font-family-header;
font-weight: 400;
text-rendering: optimizeLegibility;
letter-spacing: -0px;
}
h2, h3, h5, h6 {
font-family: $font-family-chapeau;
}
h1 {
font-size: $h1-font-size;
@@ -40,6 +46,8 @@ h3 {
}
h4 {
font-family: $font-family-default;
font-weight: bold;
@include breakpoint(tablet-range) {
font-size: $h4-font-size - .40;
}
@@ -50,31 +58,32 @@ h4 {
h1 {
text-align: center;
letter-spacing: -3px;
letter-spacing: -0px;
}
h2 {
letter-spacing: -2px;
letter-spacing: -0px;
}
h3 {
letter-spacing: -1px;
letter-spacing: -0px;
}
h1 + h2 {
margin: -2rem 0 2rem 0;
font-size: 2rem;
@include breakpoint(tablet-range) {
font-size: 1.6rem;
}
@include breakpoint(mobile-only) {
font-size: 1.5rem;
}
line-height: 1;
text-align: center;
font-family: $font-family-default;
font-weight: 300;
}
// h1 + h2 {
// margin: -2rem 0 2rem 0;
// font-size: 2rem;
// @include breakpoint(tablet-range) {
// font-size: 1.6rem;
// }
// @include breakpoint(mobile-only) {
// font-size: 1.5rem;
// }
// line-height: 1;
// text-align: center;
// font-family: $font-family-default;
// font-weight: 300;
// }
h2 + h3 {
margin: 0.5rem 0 2rem 0;
@@ -87,10 +96,15 @@ h2 + h3 {
}
line-height: 1;
text-align: center;
font-family: $font-family-default;
font-family: $font-family-chapeau;
font-weight: 300;
}
p {
font-size: 19px;
}
// Blockquote
blockquote {
@@ -233,4 +247,3 @@ hr {
font-family: $font-family-header;
margin-right: 0.75rem;
}