41 lines
555 B
CSS
41 lines
555 B
CSS
html,body{
|
|
background:#f4f4f4;
|
|
}
|
|
|
|
section{
|
|
display: flex;
|
|
display:-webkit-flex;
|
|
flex-wrap: wrap;
|
|
align-content: space-between;
|
|
}
|
|
|
|
section .item{
|
|
padding-top:3.1rem;
|
|
/*margin:auto;*/
|
|
text-align:center;
|
|
width:49%;
|
|
height:8.33rem;
|
|
background:white;
|
|
margin-bottom:2%;
|
|
|
|
}
|
|
|
|
section .item:nth-child(2n+1){
|
|
margin-right:2%;
|
|
}
|
|
.column {
|
|
flex-basis: 100%;
|
|
display: flex;
|
|
display:-webkit-flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
img{
|
|
width: 2.83rem;
|
|
height:2.83rem;
|
|
}
|
|
.title{
|
|
font-size:1.2rem;
|
|
margin-top:0.7rem;
|
|
}
|