diff options
Diffstat (limited to 'resources/style.css')
-rw-r--r-- | resources/style.css | 43 |
1 files changed, 43 insertions, 0 deletions
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; +} |