diff options
Diffstat (limited to 'wk8/pset/homepage/styles.css')
-rw-r--r-- | wk8/pset/homepage/styles.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/wk8/pset/homepage/styles.css b/wk8/pset/homepage/styles.css index 286d107..597df75 100644 --- a/wk8/pset/homepage/styles.css +++ b/wk8/pset/homepage/styles.css @@ -1,3 +1,8 @@ +@font-face { + font-family: "FreePixel"; + src: url("https://sadhost.neocities.org/fonts/FreePixel.ttf") format("truetype"); +} + :root { --background: #221122; --main-color: #EB53D3; @@ -5,11 +10,20 @@ --accent-1: #6eebff; --accent-2:#a225e3; --content-spacing:5px; + --background-img: #332233; --border:1px solid black; } +html, +body { + margin: 0; + box-sizing: border-box; + font-family: "FreePixel"; +} + body { - background-color: var(--main-color); + background-color: var(--background-img); + } main { |