Base structure

This commit is contained in:
Edgar P. Burkhart 2022-05-06 18:58:00 +02:00
parent aee8ec012c
commit 2f0c170ef0
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
42 changed files with 260 additions and 0 deletions

30
src/static/css/main.css Normal file
View file

@ -0,0 +1,30 @@
@import "../fonts/inter/inter.css";
*, *::before, *::after {
box-sizing: content-box;
}
:root {
--brand: #66cc00;
--text: #000000de;
}
body {
font-family: "Inter var", "Inter", sans-serif;
color: var(--text);
}
h1, h2, h3 {font-weight: 250}
h1 {
font-size: 3rem;
letter-spacing: -.1rem;
}
h2 {font-size: 2.3rem}
h3 {font-size: 1.7rem}
h4, h5, h6 {font-weight: 700}
h4 {font-size: 1.2rem}
h5 {font-size: 1rem}
h6 {font-size: .8rem}
p {font-weight: 350}