mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
479 B
32 lines
479 B
.block {
|
|
width: 50%;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
float: left;
|
|
clear: left;
|
|
}
|
|
|
|
.block:nth-of-type(even) {
|
|
float: right;
|
|
clear: right;
|
|
}
|
|
|
|
.block:nth-of-type(even):not(li) {
|
|
padding-left: 2rem;
|
|
}
|
|
|
|
.block.large {
|
|
width: 100%;
|
|
clear: both;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
.block {
|
|
width: 100%;
|
|
padding-right: 2rem;
|
|
}
|
|
|
|
.block:nth-of-type(even):not(li) {
|
|
padding-left: 0;
|
|
}
|
|
}
|