diff options
author | David Runge <dave@sleepmap.de> | 2015-08-08 04:25:00 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-08-08 04:25:00 +0200 |
commit | 5d0f6d7b5e62f1c8f2187d18c8c6721b5675abc0 (patch) | |
tree | 3cd6552381eaa6e96db98c23cfb404cfffc5f92a /sleepmap-theme/static | |
parent | 50b33c5ccc402f1056219ca16b00e8b90ac76059 (diff) | |
download | sleepmap-5d0f6d7b5e62f1c8f2187d18c8c6721b5675abc0.tar.gz sleepmap-5d0f6d7b5e62f1c8f2187d18c8c6721b5675abc0.tar.bz2 sleepmap-5d0f6d7b5e62f1c8f2187d18c8c6721b5675abc0.tar.xz sleepmap-5d0f6d7b5e62f1c8f2187d18c8c6721b5675abc0.zip |
sleepmap-theme/static/css/main.css: Adding proper figure legend display (disabling left/right margin for tables). Making all abbr elements italic.
Diffstat (limited to 'sleepmap-theme/static')
-rw-r--r-- | sleepmap-theme/static/css/main.css | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/sleepmap-theme/static/css/main.css b/sleepmap-theme/static/css/main.css index b7aedd5..157b262 100644 --- a/sleepmap-theme/static/css/main.css +++ b/sleepmap-theme/static/css/main.css @@ -337,10 +337,6 @@ li:last-child .hentry, #content > .hentry { margin: 0; } -.hentry img{ - display: none; -} - .entry-title{ font-size: 3em; margin-bottom: 10px; @@ -427,3 +423,14 @@ table.highlighttable tbody tr td div pre{ td.linenos{ width: 30px } + +/* figure */ +/* legend */ +div.legend table{ + margin: 0.5em 0 1.5em 0; +} + +/* abbr */ +abbr{ + font-style: italic; +} |