diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/.gitkeep | 0 | ||||
-rw-r--r-- | public/styles/fonts.css | 16 | ||||
-rw-r--r-- | public/styles/global.css | 14 |
3 files changed, 30 insertions, 0 deletions
diff --git a/public/.gitkeep b/public/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/public/.gitkeep +++ /dev/null diff --git a/public/styles/fonts.css b/public/styles/fonts.css new file mode 100644 index 0000000..af6c36a --- /dev/null +++ b/public/styles/fonts.css @@ -0,0 +1,16 @@ +@font-face { + font-family: "Quicksand"; + font-weight: 400; + src: url("/fonts/Quicksand-Regular.ttf") format("truetype"); +} + +@font-face { + font-family: "Drafting"; + font-weight: 200; + src: url("/fonts/DraftingMono-ExtraLight.woff2") format("woff2"); +} + +:root { + --font-family-heading: "Drafting", Times, serif; + --font-family-body: "Quicksand", Arial, sans-serif; +} diff --git a/public/styles/global.css b/public/styles/global.css new file mode 100644 index 0000000..2d39674 --- /dev/null +++ b/public/styles/global.css @@ -0,0 +1,14 @@ +html { + margin: 0; + padding: 0; + background: linear-gradient(to bottom, #444, #222); + min-height: 100vh; +} + +body { + min-height: 100vh; + margin: 0 auto; + box-sizing: border-box; + font-family: var(--font-family-body); +} + |