Skip to content

Commit

Permalink
flatten requirement lists
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgarrish committed Nov 14, 2017
1 parent 7a96333 commit f447f71
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions common/css/common.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@

ul.ack > li {
ul.ack > li,
ul.flat > li {
display: inline;
}

ul.ack > li:after {
ul.ack > li:after,
ul.flat > li:after {
content: ', '
}

ul.ack > li:last-child:after {
ul.ack > li:last-child:after,
ul.flat > li:last-child:after {
content: ''
}

ul.flat {
display: inline;
padding-left: 0;
}

dt, dd {
padding-top: 0.5em;
}

dfn {
font-weight: bold !important;
}

0 comments on commit f447f71

Please sign in to comment.