diff options
| author | Paul Buetow <paul@buetow.org> | 2025-01-04 23:09:23 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-01-04 23:09:23 +0200 |
| commit | ecec64cf02192b0aa78836949412a0aa7c0cffe2 (patch) | |
| tree | 6d94b1ff28a2568684813b3faecb6b11244c439e | |
| parent | 1e5e794dcf65f7087136e337056e1814009ff234 (diff) | |
use a background pattern
| -rw-r--r-- | extras/html/themes/default/style.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/extras/html/themes/default/style.css b/extras/html/themes/default/style.css index 86f4d61..9363db3 100644 --- a/extras/html/themes/default/style.css +++ b/extras/html/themes/default/style.css @@ -18,12 +18,19 @@ src: url("./handnotes.ttf") format("truetype"); } +html { + background-image: radial-gradient(#cccccc 2px, transparent 2px); + background-size: 32px 32px; + background-color: #ffffff; +} + body { font-family: text, sans-serif; + background: #ffffff; max-width: 1200px; padding: 20px; margin: 20px auto; - border: 1px solid #eeeeee; + border: 5px solid #eeeeee; border-radius: 15px; } |
