diff options
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; } + |