aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorMathias Magnusson <mathias@magnusson.space>2025-07-06 17:09:12 +0200
committerMathias Magnusson <mathias@magnusson.space>2025-07-06 17:09:12 +0200
commit31ed77b2f4c7d012df22acc9963f0b57489c3216 (patch)
tree3375879326364cd860e3dbe3ff8f6ae9d3f35080 /style.css
parent049d655d42e63a6469890fed4276a5d1a3a8f68b (diff)
downloadtraedgaardstomten-31ed77b2f4c7d012df22acc9963f0b57489c3216.tar.gz
Add a little bit of stuff
Diffstat (limited to 'style.css')
-rw-r--r--style.css33
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;
+}