From 0ff62ea7886bdeff160682d3d5713c2c8a6dd4b1 Mon Sep 17 00:00:00 2001 From: sanine Date: Thu, 13 Jan 2022 17:41:02 -0600 Subject: initial commit --- public/style.css | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 public/style.css (limited to 'public/style.css') diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..f43e73d --- /dev/null +++ b/public/style.css @@ -0,0 +1,44 @@ +body { + color: #eee; + background: #1c1c1c; + font-family: monospace; + font-size: 16px; +} + +#navigation { + text-align: center; +} + +.centered { + text-align: center; +} + +#content { + width: 600px; + max-width: 100%; + margin: auto; +} + +a { + color: #ff3a21; +} + +a:hover { + color: #1c1c1c; + background: #ff3a21; + text-decoration: none; +} + +ul { + list-style: none; +} + +li:before { + content: '* '; +} + +code { + background: black; + padding: 0 6px; + border-radius: 4px; +} -- cgit v1.2.1