From 4fff758644b7905ce5c8ce5fc1c04c6f7c0d65d7 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Fri, 5 Jul 2024 07:59:45 +0000 Subject: Fri, Jul 5, 2024, 12:59 AM -07:00 --- wk8/pset/homepage/index.html | 9 --------- wk8/pset/homepage/styles.css | 16 +++++++++++++++- 2 files changed, 15 insertions(+), 10 deletions(-) (limited to 'wk8/pset/homepage') diff --git a/wk8/pset/homepage/index.html b/wk8/pset/homepage/index.html index 94552ab..f52fccb 100644 --- a/wk8/pset/homepage/index.html +++ b/wk8/pset/homepage/index.html @@ -7,15 +7,6 @@ - Miau - Home Page 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 { -- cgit v1.2.3