From 5aff968bf932f201b1103f2f81255ab58f115241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Sun, 19 May 2024 14:57:39 +0200 Subject: feat: scaffold website skeleton --- src/styles/main.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/styles/main.css (limited to 'src/styles') diff --git a/src/styles/main.css b/src/styles/main.css new file mode 100644 index 0000000..489298e --- /dev/null +++ b/src/styles/main.css @@ -0,0 +1,38 @@ +* { + font-family: monospace, monospace; + font-size: 1em; +} + +body { + margin-left: 10vw; + max-width: 96ch; +} + +h1 { + font-size: 2em; + margin-bottom: 30vh; + margin-top: 1em; +} + +h1 > a { + text-decoration-style: wavy; + text-decoration-thickness: 15%; +} + +a, a:hover, a:visited { + color: blue; +} + +ul { + padding-inline-start: 0; +} + +ul li { + display: block; +} + +footer { + color: white; + background-color: black; + margin-top: 4em; +} -- cgit v1.2.3