Use CSS column layouts in About box

This commit is contained in:
Jakob Borg
2014-11-30 20:49:49 +01:00
parent a564510c49
commit 5c67e27a30
3 changed files with 23 additions and 10 deletions

View File

@@ -174,3 +174,20 @@ table.table-condensed td {
display: block;
width: 100%;
}
.three-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
}
.two-columns {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
ul.three-columns li, ul.two-columns li {
padding-left: 0.5em;
text-indent: -0.5em;
}