test new features

This commit is contained in:
2020-09-22 21:47:33 +02:00
parent 23c527fef1
commit b447b99159
16 changed files with 370 additions and 264 deletions

View File

@@ -1,5 +1,11 @@
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&family=Playfair+Display&display=swap');
:root {
--ff: 'Jost', Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
Helvetica Neue, sans-serif;
--ff-alt: 'Playfair Display', serif;
}
body {
margin: 0;
box-sizing: border-box;
@@ -7,8 +13,7 @@ body {
background-color: #ffffff;
font-family: 'Jost', Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans,
Droid Sans, Helvetica Neue, sans-serif;
font-family: var(--ff);
font-size: 1em;
font-weight: lighter;
color: #000;
@@ -24,7 +29,7 @@ h3,
h4,
h5,
h6 {
font-family: 'Playfair Display', serif;
font-family: var(--ff-alt);
font-weight: normal;
margin: 1em 0 0.5em 0;
}
@@ -40,6 +45,7 @@ hr {
:root {
--clr-primary: hsl(219, 90%, 80%);
--clr-secondary: hsl(64, 93%, 51%);
}
a {