a1ec899670
I'm about to add more and I *suspect* this will be easier to maintain in the long term, rather than duplicating the conditional many times.
12 lines
202 B
CSS
12 lines
202 B
CSS
/* "Big screen" means, approximately, bigger than a phone */
|
|
|
|
.column:nth-child(odd) {
|
|
clear: both;
|
|
float: left;
|
|
width: 49%;
|
|
}
|
|
|
|
.column:nth-child(even) {
|
|
float: right;
|
|
width: 49%;
|
|
}
|