diff options
Diffstat (limited to 'static/styles.css')
-rw-r--r-- | static/styles.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..2186656 --- /dev/null +++ b/static/styles.css @@ -0,0 +1,51 @@ +h1 { + text-align: center; + font-size: 4em; + width: 100%; + font-family: monospace; + margin: 0; +} + +h1.jumbo { + background-image: linear-gradient(green, darkgreen); + color: white; + text-align: center; + font-size: 10em; + width: 100%; + padding: 50px 10px; + vertical-align: middle; +} + +body { + margin: 0; + font-family: monospace; +} + +div { + padding: 1em; +} + +table#toplinks { + width: 100%; + td { + width: 1%; + text-align: center; + a { + font-size: 2em; + color: green; + text-decoration: none; + } + a:hover { + color: darkgreen; + filter: blur(2px); + } + } +} + +blockquote { + font-style: italic; +} + +div#quote { + font-weight: bold; +} |