diff options
author | sanine <sanine.not@pm.me> | 2023-09-17 04:43:44 +0000 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-09-17 04:43:44 +0000 |
commit | bfcc2e759807a692d8e0353e3bbecd109175032b (patch) | |
tree | 67949de6992714c703b390ef5f99ac5c06bfb28a /style.css | |
parent | 4f124ec785486c8505c6303e0d0aa3e7090612c7 (diff) |
add yarrow-ui.cgi and theming
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..90f985a --- /dev/null +++ b/style.css @@ -0,0 +1,86 @@ +:root { + --light: #eee; + --dark: #1c1c1c; + /*--highlight: #ff3a21*/ + --highlight: #f5ae2e; +} + +body { + color: var(--light); + background: var(--dark); + font: 1.3em monospace; + text-size-adjust: auto; +} + +h1 { + font: 1.0em monospace; + font-weight: bold; + text-align: left; + text-size-adjust: auto; + margin-bottom: 0; +} + +h2 { + font: 1.0em monospace; + font-weight: bold; + text-align: left; + text-size-adjust: auto; + margin-bottom: 0; + margin-top: 3em; +} + +a { + color: var(--highlight); +} + +a:hover { + color: var(--dark); + background: var(--highlight); + text-decoration: none; +} + +ul { + list-style: none; +} + +li:before { + content: '* '; +} + +pre { + border-width: 0 0 0 2px; + border-style: solid; + border-color: var(--highlight); + background: black; + padding: 6px; + border-radius: 2px; +} + +code { + background: black; + padding: 0 6px; + border-radius: 4px; +} + +pre code { + padding: 0; +} + +#content { + max-width: 40em; + margin: auto; +} + +#navigation { + text-align: center; +} + +#navigation pre { + border: none; + background: var(--dark); +} + +.centered { + text-align: center; +} + |