148 lines
2.1 KiB
CSS
148 lines
2.1 KiB
CSS
.s-g-container {
|
|
width: 98%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.s-g-row {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.s-g-row [class^="s-g-col"] {
|
|
float: left;
|
|
margin: 0.5rem 2%;
|
|
min-height: 0.125rem;
|
|
}
|
|
.s-g-col-1,
|
|
.s-g-col-2,
|
|
.s-g-col-3,
|
|
.s-g-col-4,
|
|
.s-g-col-5,
|
|
.s-g-col-6,
|
|
.s-g-col-7,
|
|
.s-g-col-8,
|
|
.s-g-col-9,
|
|
.s-g-col-10,
|
|
.s-g-col-11,
|
|
.s-g-col-12 {
|
|
width: 96%;
|
|
}
|
|
.s-g-col-1-sm {
|
|
width: 4.33%;
|
|
}
|
|
.s-g-col-2-sm {
|
|
width: 12.66%;
|
|
}
|
|
.s-g-col-3-sm {
|
|
width: 21%;
|
|
}
|
|
.s-g-col-4-sm {
|
|
width: 29.33%;
|
|
}
|
|
.s-g-col-5-sm {
|
|
width: 37.66%;
|
|
}
|
|
.s-g-col-6-sm {
|
|
width: 46%;
|
|
}
|
|
.s-g-col-7-sm {
|
|
width: 54.33%;
|
|
}
|
|
.s-g-col-8-sm {
|
|
width: 62.66%;
|
|
}
|
|
.s-g-col-9-sm {
|
|
width: 71%;
|
|
}
|
|
.s-g-col-10-sm {
|
|
width: 79.33%;
|
|
}
|
|
.s-g-col-11-sm {
|
|
width: 87.66%;
|
|
}
|
|
.s-g-col-12-sm {
|
|
width: 96%;
|
|
}
|
|
.s-g-row::after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
.hidden-sm {
|
|
display: none;
|
|
}
|
|
@media only screen and (min-width: 33.75em) {
|
|
/* 540px */
|
|
.s-g-container {
|
|
width: 98%;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 60em) {
|
|
/* was 45em */
|
|
/* 720px */
|
|
.s-g-col-1,
|
|
.s-g-col-2,
|
|
.s-g-col-3,
|
|
.s-g-col-4,
|
|
.s-g-col-5,
|
|
.s-g-col-6 {
|
|
width: 46%;
|
|
}
|
|
.s-g-col-7,
|
|
.s-g-col-8,
|
|
.s-g-col-9,
|
|
.s-g-col-10,
|
|
.s-g-col-11,
|
|
.s-g-col-12 {
|
|
width: 96%;
|
|
}
|
|
.hidden-sm {
|
|
display: block;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 66em) {
|
|
/* was 60em */
|
|
/* 960px */
|
|
.s-g-container {
|
|
width: 98%;
|
|
}
|
|
.s-g-col-1 {
|
|
width: 4.33%;
|
|
}
|
|
.s-g-col-2 {
|
|
width: 12.66%;
|
|
}
|
|
.s-g-col-3 {
|
|
width: 21%;
|
|
}
|
|
.s-g-col-4 {
|
|
width: 29.33%;
|
|
}
|
|
.s-g-col-5 {
|
|
width: 37.66%;
|
|
}
|
|
.s-g-col-6 {
|
|
width: 46%;
|
|
}
|
|
.s-g-col-7 {
|
|
width: 54.33%;
|
|
}
|
|
.s-g-col-8 {
|
|
width: 62.66%;
|
|
}
|
|
.s-g-col-9 {
|
|
width: 71%;
|
|
}
|
|
.s-g-col-10 {
|
|
width: 79.33%;
|
|
}
|
|
.s-g-col-11 {
|
|
width: 87.66%;
|
|
}
|
|
.s-g-col-12 {
|
|
width: 96%;
|
|
}
|
|
.hidden-sm {
|
|
display: block;
|
|
}
|
|
}
|