From 31ed77b2f4c7d012df22acc9963f0b57489c3216 Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Sun, 6 Jul 2025 17:09:12 +0200 Subject: Add a little bit of stuff --- style.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..28c2567 --- /dev/null +++ b/style.css @@ -0,0 +1,33 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +@font-face { + font-family: "OpenSans"; + src: url(/OpenSans-VariableFont_wdth,wght.ttf); +} + +body { + font-family: OpenSans; +} + +header { + text-align: center; +} + +header section { + padding-block: 2em; + font-size: 24px; +} + +header nav a, header nav a:visited { + color: green; + text-decoration: none; +} + +main { + padding-block: 2em; + text-align: center; +} -- cgit v1.2.3