1/**
2 * The CSS of the content
3 */
4
5/* No float when the media query is too small */
6@media (min-width: 0px) and (max-width: 576px) {
7
8    .mediaright {
9        float: none;
10    }
11
12    .medialeft {
13        float: none;
14    }
15
16}
17
18
19
20