From ca9efbcaaaffc5c79af93188c991051ba1c7a42e Mon Sep 17 00:00:00 2001 From: Skiz Date: Wed, 17 Jul 2024 20:12:54 -0400 Subject: Created theme file --- themes/schizo/static/style.css | 60 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 themes/schizo/static/style.css (limited to 'themes/schizo/static/style.css') diff --git a/themes/schizo/static/style.css b/themes/schizo/static/style.css new file mode 100644 index 0000000..24eff86 --- /dev/null +++ b/themes/schizo/static/style.css @@ -0,0 +1,60 @@ +body { + font-family: 'Courier New' ; + /*background: #110000 ;*/ + background: #1e1e22; + background-image: url("/images/space2.gif") ; + color: #ccc ; +} + +main { + max-width: 800px ; + margin: auto ; +} + +a { + color: #FFA500; +} + +a:visited { + color: #FF8C00; +} + +a:hover { + color: #FFD700; +} + +img { + max-width: 100% ; +} + +header h1 { + text-align: center ; + font-family: 'Courier New' ; +} + +footer { + text-align: center ; + clear: both ; +} + +/* For TAGLIST.HTML */ +.taglist { + text-align: center ; + clear: both ; +} + +/* For NEXTPREV.HTML */ +#nextprev { + /* The container for both the previous and next articles. */ +} +#prevart { + float: left ; + text-align: left ; +} +#nextart { + float: right ; + text-align: right ; +} +#nextart,#prevart { + max-width: 33% ; +} -- cgit v1.2.3