diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2020-02-23 11:04:26 -0500 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2020-02-23 11:04:26 -0500 |
| commit | c4a957450318c9637087d55e7b771450fc4fc0eb (patch) | |
| tree | 3f96d2c4bc2263fb8ca8b19a5c3f3d71b215ae9b /public/static/index.css | |
| parent | d57ec369726aa68f43336915a44e10d7659306bb (diff) | |
| download | ao-coverage-c4a957450318c9637087d55e7b771450fc4fc0eb.tar.gz ao-coverage-c4a957450318c9637087d55e7b771450fc4fc0eb.tar.bz2 ao-coverage-c4a957450318c9637087d55e7b771450fc4fc0eb.zip | |
Fix styling for mobile/smaller displays
Diffstat (limited to 'public/static/index.css')
| -rw-r--r-- | public/static/index.css | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/public/static/index.css b/public/static/index.css index df05342..fbf3b63 100644 --- a/public/static/index.css +++ b/public/static/index.css @@ -12,7 +12,7 @@ div#bottom-half { div#container { margin: 0 auto; - width: 600px; + max-width: 600px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } @@ -39,18 +39,22 @@ div#content p { padding: 0 10px; } -.code-container { - text-align: center; - margin: 24px 0; +.code-container-container { + margin: 24px; } -.code { +.code-container { + text-align: left; + margin: 0 auto; + display: table; background-color: #e8ebf4; color: #000; - font-family: 'Courier New', Courier, monospace; - font-size: inherit; padding: 6px 14px; border: 0px solid #e8ebf4; border-radius: 4px; +} +.code { + font-family: 'Courier New', Courier, monospace; + font-size: inherit; left: auto; right: auto; } |
