diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-09-06 21:01:46 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-09-09 14:15:24 -0400 |
commit | 9d312bd9b62b8dc1b13ba427aafee99440df6a4b (patch) | |
tree | 4142ed21a694a5dcb4a76e91e9e6d6fc3a57b070 | |
parent | 93f58fd482c58f669e37df1e415cfde06324b548 (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.css | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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; } |