From 040b5123c7405df3e2b55d94092c45355b735c64 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Mon, 16 Dec 2013 00:21:08 +0100 Subject: [PATCH] =?utf8?q?Schriftgr=C3=B6=C3=9Fe=20f=C3=BCr=20-Tag?= =?utf8?q?=20korrigiert?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Die meisten Browser wählen für -Blöcke eine kleinere Schrift, obwohl die Schriftgröße im Reset-CSS auf 100% gesetzt wurde. --- src/main/webapp/less/base/typo.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/webapp/less/base/typo.less b/src/main/webapp/less/base/typo.less index fa90a6cb..98cc8ab9 100644 --- a/src/main/webapp/less/base/typo.less +++ b/src/main/webapp/less/base/typo.less @@ -100,6 +100,11 @@ pre { line-height: 1.2em; } +code +{ + font-size: 120%; /** Otherwise, the font-size will be 75%, though not specified so anywhere!! */ + line-height: 1.2em; +} hr { border: none; -- 2.20.1