Skip to content

Commit

Permalink
Fix definition list css
Browse files Browse the repository at this point in the history
  • Loading branch information
ianarchbell authored and ianarchbell committed Nov 1, 2018
1 parent 136c330 commit f9a4196
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions docs/source/_static/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -663,15 +663,18 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
}

dt {
float: left;
width: 20%;
text-align: right;
padding: .25em;
clear: left;
float: left !important;
width: 20% !important;
text-align: right !important;
padding: .25em !important;
clear: left !important;
}
dd {
float: left;
width: 70%;
padding: .25em 0;
float: left !important;
width: 70% !important;
padding: .25em 0 !important;
}
dl:after {content:"" !important;
display:table !important;
clear:both !important;
}
dl:after {content:"";display:table;clear:both;}

0 comments on commit f9a4196

Please sign in to comment.