diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-15 20:17:00 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-15 20:17:00 +0100 |
commit | 61b01444afb7167e7cf0dd8a4f622b3009b96f42 (patch) | |
tree | 9c9f697b0d450148367f5f12e9bb0b631b086d53 /css | |
parent | 75d719b67f15e4457162c3ef3bd1db2ef62e55e3 (diff) |
Reduce font size for code and pre elements
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq.css | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/css/codeq.css b/css/codeq.css index c4dd259..b35419c 100644 --- a/css/codeq.css +++ b/css/codeq.css @@ -10,26 +10,25 @@ html { font-size: medium; } - -body, -code, -pre, -.btn { +body { font-size: 1em; } /* code text style */ +code, pre { + font-size: 0.95em; +} code { background-color: #f4f2f9; color: #1525c6; padding: 0.1em 0.2em; } - pre { padding: 0.5em 1em; } .btn { + font-size: 1em; height: 2em; line-height: 1em; } |