result-content.css
840 Bytes
.result-content-page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.result-item {
max-width: 315px;
width: 100%;
height: 550px;
margin-top: 20px;
-webkit-transition: -webkit-box-shadow 0.2s ease;
transition: -webkit-box-shadow 0.2s ease;
-o-transition: box-shadow 0.2s ease;
transition: box-shadow 0.2s ease;
transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.result-item:not(:nth-child(4n)) {
margin-right: 6px;
}
.result-item:hover {
-webkit-box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15);
box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15);
border-radius: 10px;
}
.result-viewed {
padding-bottom: 121px;
padding-top: 70px;
}