diff options
Diffstat (limited to 'public/css/dirlist.css')
-rw-r--r-- | public/css/dirlist.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/public/css/dirlist.css b/public/css/dirlist.css new file mode 100644 index 0000000..cd9c1d6 --- /dev/null +++ b/public/css/dirlist.css @@ -0,0 +1,38 @@ +:root { + --background: #1c1b22; + --foreground: #dddddd; +} + +html { + color-scheme: dark; +} + +body { + background-color: var(--background); + color: var(--foreground); +} + +a { + color: #99f; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +h1#indextitle { + font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + margin-bottom: 0; +} + +tr, th, td { + font-family: monospace; + font-size: 12pt; + padding: 0 5px; +} + +address { + font-family: sans-serif; + font-size: 12pt +} |