aboutsummaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-08-14 22:51:16 +0100
committerFrankie B <git@diskfloppy.me>2023-08-14 22:51:16 +0100
commite7d58f3185b798df4e020f0c2b7ab36d1d1656dc (patch)
treeeb68451f9f5d6336e3b64389d5cff29424270404 /public/css
parent24b5a194ca6557bf0487499011ae249a17225d67 (diff)
Actually v6v6.0.0
Diffstat (limited to 'public/css')
-rw-r--r--public/css/master.css57
1 files changed, 24 insertions, 33 deletions
diff --git a/public/css/master.css b/public/css/master.css
index c5fc565..b77328e 100644
--- a/public/css/master.css
+++ b/public/css/master.css
@@ -1,8 +1,13 @@
+root {
+ --background: #181818;
+ --foreground: #dddddd;
+}
+
body {
font-family: sans-serif;
margin: 0;
- color: #ddd;
- background-color: #333;
+ color: var(--foreground);
+ background-color: var(--background);
}
html {
@@ -13,28 +18,6 @@ ul {
list-style-type: square;
}
-table.banner {
- margin-left: auto;
- margin-right: auto;
- border: 2px solid #e04a38;
- background-color: #e6897e;
- width: 95%;
- /* Passes both WCAG AD and WCAG AAA contrast tests */
- color: #0f0f0f;
-}
-
-table.banner td {
- padding: 5px;
-}
-
-table.banner td a {
- color: #0f0f0f;
-}
-
-table.banner td a:hover {
- text-decoration: underline;
-}
-
div.page {
min-width: 780px;
max-width: 800px;
@@ -54,7 +37,6 @@ h2,
h3 {
margin-top: 1em;
clear: left;
- color: #fff;
}
img {
@@ -109,23 +91,28 @@ div.project pre.small {
overflow: hidden;
}
-div.codeblock pre {
- background-color: #222;
- border: 2px solid #FFF;
+div.codeblock {
+ background-color: var(--background);
+ border: 2px solid #dddddd;
padding: 10px;
- color: #ccc;
display: inline-block;
text-align: left;
max-width: 90%;
min-width: 400px;
+ margin: 10px;
}
-div.codeblock pre h1,
-div.codeblock pre hr {
- margin: 0
+div.codeblock hr {
+ margin-top: 5px;
+ margin-bottom: 5px;
}
-div.codeblock pre h1 small {
+div.codeblock h1 {
+ margin: 0;
+ font-family: monospace;
+}
+
+div.codeblock h1 small {
color: #919191;
font-size: 12px;
}
@@ -445,3 +432,7 @@ table.infotable tr td small {
table.infotable tr td small {
margin-bottom: 5px;
}
+
+.hljs {
+ background: none !important;
+}