diff options
author | Malfurious <m@lfurio.us> | 2023-11-09 21:11:41 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-11-15 23:11:08 -0500 |
commit | 53607a71cf8a366402e43808e906f7055f64f2b4 (patch) | |
tree | 91d1d8b094bb63beaa473f1dc237dd1c85fa14ee | |
parent | 29ebd30ecc38bc700a89fc5af58b60637ad3ab3a (diff) | |
download | cychedelic-53607a71cf8a366402e43808e906f7055f64f2b4.tar.gz cychedelic-53607a71cf8a366402e43808e906f7055f64f2b4.zip |
dmt: Add stylesheet
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | dmt/style.css | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/dmt/style.css b/dmt/style.css new file mode 100644 index 0000000..5d783b6 --- /dev/null +++ b/dmt/style.css @@ -0,0 +1,103 @@ +body { + font-family: Arial, sans-serif; + font-size: 11pt; + color: #ffffff; + background-color: #191919; + max-width: 100ch; + margin: 0 auto; +} + +pre { + white-space: pre-wrap; + margin: 0; +} + +a { + color: #c8c8c8; + text-decoration: none; +} + +a:hover { + color: #ffffff; +} + +.button { + background-color: #888888ab; + border-radius: 5px; + padding: 3px 7px; +} + +.button:hover { + background-color: #abababab; +} + +.right { + position: relative; + float: right; +} + +.links { + padding-top: 10px; + font-size: 12pt; +} + +.hidden { + display: none; +} + +.box { + background-color: #323232; + border-color: #000000; + border-style: solid; + border-width: 1px; + border-radius: 10px; + margin-bottom: 30px; +} + +.box-title { + background-color: #000000; + border-top-left-radius: 9px; + border-top-right-radius: 9px; + font-weight: bold; + padding: 10px; +} + +.compact .box-title { + border-radius: 9px; +} + +.box-text { + padding: 15px 10px; +} + +.active { + border-color: #005a1e; +} + +.active .box-title { + background-color: #005a1e; +} + +.pass { + border-color: #003566; +} + +.pass .box-title { + background-color: #003566; +} + +.fail { + border-color: #c80000; +} + +.fail .box-title { + background-color: #c80000; +} + +.remove { + border-color: #4c0080; +} + +.remove .box-title { + background-color: #4c0080; +} |