diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-07-06 17:09:12 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-07-06 17:09:12 +0200 |
commit | 31ed77b2f4c7d012df22acc9963f0b57489c3216 (patch) | |
tree | 3375879326364cd860e3dbe3ff8f6ae9d3f35080 /style.css | |
parent | 049d655d42e63a6469890fed4276a5d1a3a8f68b (diff) | |
download | traedgaardstomten-31ed77b2f4c7d012df22acc9963f0b57489c3216.tar.gz |
Add a little bit of stuff
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 33 |
1 files changed, 33 insertions, 0 deletions
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; +} |