diff options
author | dzwdz | 2024-04-01 16:56:13 +0200 |
---|---|---|
committer | dzwdz | 2024-04-01 16:56:13 +0200 |
commit | 97cbfd2765436480aa1a0f9e3399a1810cf451e1 (patch) | |
tree | 3a6b94aa5f61bd4afa400d1582c32a68de6763e3 /index.css | |
parent | b66860109ee59d3efcd6323c0c48a074122d1e93 (diff) |
2024-04-01
Diffstat (limited to 'index.css')
-rw-r--r-- | index.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/index.css b/index.css index 15415cb..32322b5 100644 --- a/index.css +++ b/index.css @@ -14,8 +14,10 @@ body { } main { - max-width: 80ch; + width: 80ch; + max-width: 100%; order: 0; + position: relative; } #users { @@ -41,8 +43,8 @@ main { #heatmap { position: absolute; - max-width: 80ch; - z-index: -100; + width: 100%; + z-index: -1; } #heatmap a { @@ -65,6 +67,13 @@ main > *:not(#heatmap) { margin: 1em; } +main.dotted > *:not(#heatmap) { + display: none; +} +main.dotted #heatmap { + z-index: 1; +} + pre, p { margin: 0; } @@ -89,3 +98,4 @@ a { float: right; opacity: 0.7; } + |