2016-04-12 04:08:27 +00:00
|
|
|
/* For dynamically determined columnar formatting.
|
|
|
|
Currently supports equal-width, 1-4 column layouts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column {
|
|
|
|
float: left;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-1 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.col-2 {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.col-3 {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
.col-4 {
|
|
|
|
width: 25%;
|
|
|
|
}
|
2016-05-04 19:23:37 +00:00
|
|
|
|
2016-05-23 14:55:49 +00:00
|
|
|
.category-description {
|
|
|
|
margin-bottom: $spacing-unit * 1.5;
|
|
|
|
}
|
2016-05-04 19:23:37 +00:00
|
|
|
|
|
|
|
.category-menu {
|
|
|
|
margin-bottom: $spacing-unit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.category-link {
|
|
|
|
font-size: $large-font-size;
|
|
|
|
padding: 0px 10px;
|
|
|
|
}
|