pyratebeard_net

personal website
git clone git://git.pyratebeard.net/pyratebeard_net.git
Log | Files | Refs | README

commit f8f3770ef595005fa17e33be72a723b54c0aba05
parent fa13bf9193556039bcf86734803d71903142b271
Author: pyratebeard <root@pyratebeard.net>
Date:   Sun, 15 Nov 2020 12:19:56 +0000

minimal style

Diffstat:
Mindex.html | 2+-
Astatic/css/stylemin.css | 19+++++++++++++++++++
2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -1,6 +1,6 @@ <html> <head> - <link href="/static/css/style.css" rel="stylesheet"> + <link href="/static/css/stylemin.css" rel="stylesheet"> <title>pyratebeard</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> diff --git a/static/css/stylemin.css b/static/css/stylemin.css @@ -0,0 +1,19 @@ +body { + font-family: monospace; + background-color: #111; + color: #eee; +} + +a { + color: #eee; + text-decoration: underline; +} + +a:active,a:hover,a:focus { + color: #eee; + text-decoration: none; +} + +ul { + list-style: '- '; +}