You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
Z
.container{
max-width: 1200px;
margin: 0 auto;
}
.row{
display: flex;
flex-wrap: wrap;
}
.col-1{
width: calc(100% / 12 * 1);
padding: 16px;
}
.col-2{
width: calc(100% / 12 * 2);
padding: 16px;
}
.col-3{
width: calc(100% / 12 * 3);
padding: 16px;
}
.col-4{...