diff options
author | Anika Henke <anika@selfthinker.org> | 2010-11-07 21:17:02 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2010-11-07 21:17:02 +0000 |
commit | 8cf5aee5bbf192bf6408088a6d2f497a2087105d (patch) | |
tree | e17921e51fdc9f302a4a2dda3bf60456807aa18e | |
parent | eb97dcb864e05302756dcec4320c3c41866e4217 (diff) | |
download | rpg-8cf5aee5bbf192bf6408088a6d2f497a2087105d.tar.gz rpg-8cf5aee5bbf192bf6408088a6d2f497a2087105d.tar.bz2 |
added missing styles to print.css (underline, centered images and clearer)
-rw-r--r-- | lib/tpl/default/print.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/tpl/default/print.css b/lib/tpl/default/print.css index 60c172585..15c6dad29 100644 --- a/lib/tpl/default/print.css +++ b/lib/tpl/default/print.css @@ -43,6 +43,14 @@ div.secedit { display: none; } +div.clearer { + clear: both; + line-height: 0; + height: 0; + overflow: hidden; +} + + /* --------------------- Text formating -------------------------------- */ /* external link */ @@ -114,6 +122,21 @@ img.mediaright { margin: 0 0 0 1.5em; } +img.mediacenter { + display: block; + margin-left: auto; + margin-right: auto; +} + +/* underline */ +em.u { + font-style: normal; + text-decoration: underline; +} +em em.u { + font-style: italic; +} + /* unordered lists */ ul { line-height: 1.5em; |