summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2011-09-06 21:01:46 -0400
committerGaetan Nadon <memsize@videotron.ca>2011-09-09 14:15:24 -0400
commit9d312bd9b62b8dc1b13ba427aafee99440df6a4b (patch)
tree4142ed21a694a5dcb4a76e91e9e6d6fc3a57b070
parent93f58fd482c58f669e37df1e415cfde06324b548 (diff)
CSS: authors and affiliation spacing
The objective is to have more spacing between each author so their affiliation is visually grouped with its author. The previous method was not reliable as it was making an assumption about the preceeding element. The new method of reducing the bottom margin for the author should be more reliable. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--xorg.css6
1 files changed, 2 insertions, 4 deletions
diff --git a/xorg.css b/xorg.css
index 08e3fb7..0b7fcda 100644
--- a/xorg.css
+++ b/xorg.css
@@ -104,6 +104,7 @@ div.article>div.section>div.titlepage h2.title {
* These authors are not always contained inside an authorgroup.
* They can be contained inside a lot of different parent types where they might
* not be centered.
+ * Reducing the margin at the bottom makes a visual separation between authors
* We specify here the ones on the title page, others may be added based on merit.
*/
div.titlepage .authorgroup,
@@ -114,17 +115,14 @@ div.titlepage .corpcredit,
div.titlepage .editor,
div.titlepage .othercredit {
text-align: center;
+ margin-bottom: 0.25em;
}
/*
* Selection: the affiliation of various types of authors and collaborators,
* individuals or corporate.
- *
- * The affiliation should be closer to the author such that it visually
- * groups the affiliation with the author.
*/
div.titlepage .affiliation {
- margin-top: -0.8em;
text-align: center;
}