diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:50:26 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-04-01 21:42:38 +0200 |
commit | c8992bc7543d8ca7c2ee3cc200a7fbf1a5fae059 (patch) | |
tree | c8c05c8a85fcdf36b65e9580929b2151be6bea73 /css |
Initial
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..e6fcdd1 --- /dev/null +++ b/css/style.css @@ -0,0 +1,27 @@ +html { + margin: 0; + padding: 0 5px; +} + +body { + background-color: #fdfdfd; + color: #313b45; + font-family: sans-serif; + font-size: 15px; + hyphens: auto; + margin: 0 auto; + max-width: 900px; + padding: 0 5px; +} + +h1 { + border-bottom: solid 1px #ccc; + font-size: 56px; + font-weight: 100; + margin-left: -5px; + padding-bottom: 20px; +} + +a { + color: blue; +} |