diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-05 14:09:15 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-05 14:09:15 +0100 |
commit | e3468ac10e93423583e3a297915f1f6faec10e0e (patch) | |
tree | 0e55f4ae27a1446618f50f3cf80bbe9ca6939832 /css | |
parent | 140f7aa21b8dc9b43ecc54396ea3a4ec07c7f949 (diff) |
Use relative font sizes everywhere
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/css/codeq.css b/css/codeq.css index 1775c84..e9e55a0 100644 --- a/css/codeq.css +++ b/css/codeq.css @@ -6,10 +6,27 @@ */ +html { + font-size: medium; +} + body { + font-size: 1em; padding-top: 50px; } +.btn { + font-size: 1em; +} + +code { + font-size: 1em; +} + +pre { + font-size: 1em; +} + .title { /*color: whitesmoke;*/ /*margin-left: 5px;*/ @@ -125,7 +142,6 @@ div.vertical-line{ /* console */ .block > .console { background: #222; - font-size: 14px; padding: 0.5em; min-height: 8em; } |