diff options
| author | murilo ijanc | 2026-03-24 21:41:06 -0300 |
|---|---|---|
| committer | murilo ijanc | 2026-03-24 21:41:06 -0300 |
| commit | f186b71ca51e83837db60de13322394bb5e6d348 (patch) | |
| tree | cd7940eaa16b83d2cde7b18123411bfb161f7ebb /styles.css | |
| download | website-f186b71ca51e83837db60de13322394bb5e6d348.tar.gz | |
Initial commit
Import existing tesseras.net website content.
Diffstat (limited to 'styles.css')
| -rw-r--r-- | styles.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..47e2e8e --- /dev/null +++ b/styles.css @@ -0,0 +1,46 @@ +html { + -webkit-text-size-adjust:100%; + padding-bottom:4em; +} +body { + font-family:sans-serif; + max-width:40em; + margin:0 auto; + padding:0 2%; + line-height:1.5em; + color:#111; + background:#fff; +} +a { + color:#1a0dab; +} +a:visited { + color:#681da8; +} +pre { + text-align:center; + line-height:1; + letter-spacing:-0.015em; + overflow-x:auto; + white-space:pre; +} +.banner { + text-shadow:0.04em 0 0 currentColor; +} +@media (max-width:600px) { + .banner { + font-size:0.45em; + } +} +@media (prefers-color-scheme:dark) { + body { + color:#e0e0e0; + background:#121212; + } + a { + color:#8ab4f8; + } + a:visited { + color:#c58af9; + } +} |