From 4a8f1d3bd76a923dcb353ba585ba9b7626fe28a2 Mon Sep 17 00:00:00 2001 From: Tempest Date: Wed, 1 Jun 2022 23:17:13 -0600 Subject: Initial neocities content --- resources/signature.svg | 1 + resources/style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 resources/signature.svg create mode 100644 resources/style.css (limited to 'resources') diff --git a/resources/signature.svg b/resources/signature.svg new file mode 100644 index 0000000..4d69a57 --- /dev/null +++ b/resources/signature.svg @@ -0,0 +1 @@ + diff --git a/resources/style.css b/resources/style.css new file mode 100644 index 0000000..c0266f4 --- /dev/null +++ b/resources/style.css @@ -0,0 +1,43 @@ +* { + box-sizing: border-box; +} + +html, body { + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background: #191316; +} + +body { + min-height: 100vh; + background: #715a7f; + color: white; + max-width: 600px; + margin: 0 auto; + padding: 16px; +} + +h1 > aside { + display: inline-block; + font-size: .5em; + font-weight: 100; + font-style: italic; + opacity: .6; + margin-left: 8px; +} + +ul > li:not(:last-child) { + margin-bottom: 8px; +} + +a { + color: white; + opacity: .8; +} + +a[href^="https:"], +a[href^="http:"], +a[href^="//"] { + color: #fdd7ff; +} -- cgit 1.4.1