summaryrefslogtreecommitdiff
path: root/wwwroot/styles
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-08-20 22:59:09 +1000
committerJake Mannens <jake@asger.xyz>2023-08-20 22:59:09 +1000
commitc29bdd4a9ec782411f57e3c798e1bb01ca7d417d (patch)
treefdb2046af3454a96a9733e156b9c86f538eea21c /wwwroot/styles
parentdfff79815acc86c02dd94716098d409d3fe46ab7 (diff)
NSFW tagging and tag editing
Diffstat (limited to 'wwwroot/styles')
-rw-r--r--wwwroot/styles/global.css10
1 files changed, 8 insertions, 2 deletions
diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css
index d79b27c..2757d09 100644
--- a/wwwroot/styles/global.css
+++ b/wwwroot/styles/global.css
@@ -18,6 +18,9 @@
--col-button-warning-hl: #ff9999;
--col-scrollbar: #666666;
--col-scrollbar-hover: #aaaaaa;
+ --col-switch-bg: var(--col-bg);
+ --col-switch-fg: #fff;
+ --col-switch-bg-hl: var(--col-accent-pri);
}
body {
@@ -96,16 +99,19 @@ button:active, input[type=submit]:active {
color: var(--col-button-pri);
}
-input {
+input, textarea {
background: rgba(0, 0, 0, 0);
border-radius: 5px;
border: 1px solid #aaa;
box-sizing: border-box;
color: white;
- height: 25px !important;
margin-bottom: 10px;
}
+input {
+ height: 25px !important;
+}
+
/* necessary for use inside flex containers */
hr {
width: 100%;