diff options
author | Stephen Enders <senders@spotify.com> | 2019-01-21 13:58:14 -0500 |
---|---|---|
committer | Stephen Enders <senders@spotify.com> | 2019-01-21 13:58:14 -0500 |
commit | f8bc07f42f3866d32c777c0f3b6300fd99a4e2e2 (patch) | |
tree | 31ccaf9d0e5bb607e99411e5ceed60df98839d25 /www/index.css | |
parent | ca52caeb2a768ba2f8847097c669b66f0e7bc214 (diff) |
Added www and index files
Diffstat (limited to 'www/index.css')
-rw-r--r-- | www/index.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/www/index.css b/www/index.css new file mode 100644 index 0000000..7d14951 --- /dev/null +++ b/www/index.css @@ -0,0 +1,18 @@ +html,body { margin: 0; font-family: monospace; } +#header { + background-color: #060606; + color: #67ff79; + border-bottom: 4px solid #23ed9b; + line-height: 2em; + margin: 0; + padding: 8px 10%; +} +#header > nav { display: inline-block; float: right; } +#header > nav > a:link { color: #81b7ff } +#header > nav > a:visited { color: #cd78f4; } +#header > nav > a:focus, #header > nav > a:active, #header > nav > a:hover { color: #6005dd; } +#header > .title { display: inline-block; font-size: 1.5em; } +#body { margin: 16px 10%; } +#body article { border-bottom: 1px solid #060606; } +#body article:last { border-bottom: none; } + |