diff options
author | nathan <nathansmith@disroot.org> | 2025-08-08 23:07:32 -0600 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-08 23:07:32 -0600 |
commit | cd382aeadbe7f92609d13a74ed7b8b8167da8755 (patch) | |
tree | 28910e0add64f0372890b8d83b1ca0c3e06c6ff9 /org/css | |
parent | 93cff0935bffc8a23e7f392cce394fe3ad5e7b26 (diff) |
Working on switch to dark theme
Diffstat (limited to 'org/css')
-rw-r--r-- | org/css/contact.css | 4 | ||||
-rw-r--r-- | org/css/front-page.css | 6 | ||||
-rw-r--r-- | org/css/shitty-theme.css | 24 |
3 files changed, 25 insertions, 9 deletions
diff --git a/org/css/contact.css b/org/css/contact.css index a991fef..1704bfc 100644 --- a/org/css/contact.css +++ b/org/css/contact.css @@ -7,7 +7,7 @@ body { margin: auto; color: #00ff00; background-color: #060a0f; - border: 1px solid black; + border: 1px solid gray; } a:link { @@ -23,7 +23,7 @@ b { } .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } #buttons { diff --git a/org/css/front-page.css b/org/css/front-page.css index c4595a3..3f75712 100644 --- a/org/css/front-page.css +++ b/org/css/front-page.css @@ -15,7 +15,9 @@ body { margin: auto; color: #00ff00; background-color: #060a0f; - border: 1px solid black; + border: 1px solid gray; + word-wrap : break-word; + overflow-wrap: break-word; } a:link { @@ -35,7 +37,7 @@ table { } .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } #buttons { diff --git a/org/css/shitty-theme.css b/org/css/shitty-theme.css index 19da409..e2aeff2 100644 --- a/org/css/shitty-theme.css +++ b/org/css/shitty-theme.css @@ -1,5 +1,5 @@ body { - background-color: #dcd1ba; + background-color: black; } .shittyweb-header { @@ -9,18 +9,32 @@ body { #content { width: 65%; margin: auto; - background-color: #bebebe; - border: 1px solid black; + color: #00ff00; + background-color: #060a0f; + border: 1px solid gray; word-wrap : break-word; overflow-wrap: break-word; } +a:link { + color: red; +} + +a:visited { + color: pink; +} + +b { + color: white; +} + .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } .org-src-container { - background-color: white; + color: black; + background-color: darkgray; } #postamble { |