diff options
author | Martin Wright <martin@mysociety.org> | 2014-04-04 14:52:23 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-04-24 15:38:13 +0100 |
commit | 4a58b416616f15adb522e54dce87990de0455352 (patch) | |
tree | f2d09998c01a04c2a1cf524c7e81d42ef63688f2 | |
parent | c34ee10bbc9896d2213a01a24679ebe9cd36ff3d (diff) |
sensible default styling for definition lists
-rw-r--r-- | app/assets/stylesheets/responsive/_global_style.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/stylesheets/responsive/_global_style.scss b/app/assets/stylesheets/responsive/_global_style.scss index de617892d..4eac0bba3 100644 --- a/app/assets/stylesheets/responsive/_global_style.scss +++ b/app/assets/stylesheets/responsive/_global_style.scss @@ -67,6 +67,22 @@ img { height: auto; } +dt { + margin-top: 1em; +} + +dd { + margin-left: 2em; +} + +dt + dd { + margin-top: 0.5em; + > p { + margin-top: 0; + } +} + + /* Links in sidebars usually only underlined on hover */ .feed_link,.act_link { margin-bottom:10px; |