Fix list overflow for modern template

This fixes the tendency of large lists to flow past the section header
and cause the columns of the list to not be aligned correctly.
This also fixes an issue with the spacing between the end of said lists
and `<hr>`s.
This commit is contained in:
Scott Weldon 2015-03-16 19:37:11 -07:00
parent 668fe916a9
commit ca2e1db998
3 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,7 @@ body.pdf {
}
ul li {
width: 26%;
width: 33%;
float: left;
}
ul dl {

View File

@ -102,6 +102,7 @@ ul {
margin: 0;
padding: 0;
list-style: none;
display: table;
}
ul li {
margin: 0;

View File

@ -95,7 +95,7 @@
}
ul li {
width: 25%;
width: 33%;
float: left;
}
ul dl {