palaceGrid.less
771 Bytes
@charset "UTF-8";
.palace-grid-box {
.box {
.img-box {
width: 100%;
display: flex;
flex-wrap: wrap;
//justify-content: space-around;
list-style: none;
.item{
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
box-sizing: border-box;
.img {
display: block;
width: 100%;
}
}
.two{
width: calc(calc(100% / 2));
margin-top: 10px;
}
.three{
width: calc(calc(100% / 3));
margin-top: 10px;
}
}
}
}