diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-08-18 09:16:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-08-18 09:16:01 +0000 |
commit | 9349ecb7e09b4765bdc532b9f91cff348dc1525b (patch) | |
tree | bdbde476c85da0d7c1c688d0c57598149ebe324c /style.css | |
parent | 38ad67c3a787994738cf6778016cb7174ed79e4e (diff) | |
download | mandoc-9349ecb7e09b4765bdc532b9f91cff348dc1525b.tar.gz |
Align `-offset indent' and `D1' by forcing BLOCKQUOTE to have a 5ex
margin. This is dubious: the HTML4 spec specifically says that
BLOCKQUOTE shouldn't be abused for indentation, which is exactly what we
do. However, `D1' needs indentation and it's the only way to force text
browsers to do so. Alternatives?
Also remove the unused HALFINDENT defines while here.
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ h2 { margin-bottom: 1ex; font-size: 105%; margin-left: -2ex; } /* Sub-section h table { width: 100%; margin-top: 0ex; margin-bottom: 0ex; } /* All tables. */ td { vertical-align: top; } /* All table cells. */ p { } /* Paragraph: Pp, Lp. */ -blockquote { margin-top: 0ex; margin-bottom: 0ex; } /* D1. */ +blockquote { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1. */ div.section { margin-bottom: 2ex; margin-left: 5ex; } /* Sections (Sh, SH). */ div.subsection { } /* Sub-sections (Ss, SS). */ table.synopsis { } /* SYNOPSIS section table. */ |