diff options
Diffstat (limited to 'static/main.css')
-rw-r--r-- | static/main.css | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/static/main.css b/static/main.css index 4db48f9..3e60bff 100644 --- a/static/main.css +++ b/static/main.css @@ -7,7 +7,6 @@ h3,h4 { text-align: justify; margin: 0.25em auto; } -/* class to optionally center h3 when we want it */ h3.center { text-align: center; } @@ -52,8 +51,7 @@ body { max-width: 35%; display: block; } -/* Use for long text which doesnt wrap nicely */ -.long { +.longboi { word-wrap: break-word; } p { @@ -70,6 +68,7 @@ code { white-space: pre-wrap; word-wrap: break-all; } + table { border-spacing: 0 10px; } @@ -81,20 +80,23 @@ img { height: auto; width: auto; } -/*mobile*/ +img.icon { + filter: invert(50%); +} +/* some Stallman trickery for making mobile text bigger */ @media screen and (max-device-width: 480px) { - body { + body { max-width: 100%; font-size: 90%; - } - .license { + } + .license { font-size: 0; - } - p { + } + p { margin-top: 5%; margin-bottom: 5%; - } - code.long { + } + code.longboi { font-size: 65%; } } |