1
0
Fork 0
simple-auction/assets/items.css

38 lines
432 B
CSS
Raw Normal View History

2016-12-01 01:19:07 +08:00
.items {
2016-12-01 11:35:25 +08:00
margin: -1rem;
2016-12-01 01:19:07 +08:00
}
.item {
2016-12-01 11:35:25 +08:00
margin: 1rem;
2016-12-01 01:19:07 +08:00
}
2016-12-01 11:35:25 +08:00
.item {
position: relative;
}
.item:after {
content: '';
display: block;
width: 100%;
padding-top: calc(10 / 16 * 100%);
}
.item a {
display: block;
position: absolute;
top: 0;
}
2016-12-01 01:19:07 +08:00
@media (min-width: 768px) {
.items {
display: flex;
flex-wrap: wrap;
}
.item {
flex: 1 0 auto;
2016-12-01 11:35:25 +08:00
width: calc(50% - 4rem);
}
.item:after {
padding-top: calc(4 / 3 * 100%);
2016-12-01 01:19:07 +08:00
}
}