From 4dcd125d9880f13ce7bbe5e421dca802fd3598dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Prin=C4=8Di=C4=8D?= Date: Thu, 3 Dec 2020 14:02:52 +0100 Subject: [PATCH] adding dark-sccode-org.user.css --- stylus/dark-sccode-org.user.css | 49 +++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 stylus/dark-sccode-org.user.css diff --git a/stylus/dark-sccode-org.user.css b/stylus/dark-sccode-org.user.css new file mode 100644 index 0000000..633d96e --- /dev/null +++ b/stylus/dark-sccode-org.user.css @@ -0,0 +1,49 @@ +/* ==UserStyle== +@name Dark sccode.org - 12/3/2020, 1:05:07 PM +@namespace github.com/openstyles/stylus +@version 1.0.0 +@description A dark - inverted - style for sccode.org +@author Luka Prinčič - luka@lukaprincic.si +==/UserStyle== */ + +@-moz-document domain("sccode.org") { + + body { + background: #222; + color: #333; + -webkit-filter: invert(100%) !important; + filter: invert(100%) !important; + _max-width: 700px; + margin: auto; + } + + + header.b-head div.auth span.user a { + color: black; + text-shadow: 0px 1px 0px #fff; + } + + div.b-content { + background-color: #ccc; + } + + div.b-content div.format { + background-color: #c8c8c8 + } + + div.b-code div.format div.line pre { + color: #ff8e9775 !important; + } + + form input[type="text"], + textarea { + background-color: #ddd; + border: 1px dotted white; + } + + form input[type="submit"] { + background-color: #cccaca; + border: 1px solid #dddada; + padding: 2 8; + } +}