CVSROOT: /web/www Module name: www Changes by: Pavel Kharitonov <ineiev> 11/05/24 14:37:33
Modified files: . : layout.css Log message: fix spacing in definition lists RT #694275 CVSWeb URLs: http://web.cvs.savannah.gnu.org/viewcvs/www/layout.css?cvsroot=www&r1=1.127&r2=1.128 Patches: Index: layout.css =================================================================== RCS file: /web/www/www/layout.css,v retrieving revision 1.127 retrieving revision 1.128 diff -u -b -r1.127 -r1.128 --- layout.css 1 Apr 2011 14:28:47 -0000 1.127 +++ layout.css 24 May 2011 14:37:22 -0000 1.128 @@ -214,9 +214,14 @@ #content li, #fsf-campaigns li, #content dd, #content p, #content pre, #content dt, #content code, #content address{ line-height: 1.3em; } -#content dt{ font-weight: bold; } - - +/* separate the "term" from subsequent "description" */ +dt { margin-bottom: 1em; } +/* separate the "description" from subsequent list item + when the final <dd> child is an anonymous box */ +dd { margin-bottom: 1em; } +/* separate anonymous box (used to be the first element in <dd>) + from subsequent <p> */ +dd p { margin-top: 1em; } #bottom-links{ background-color: #fff; font-size: 0.8em;}