result-content.scss
644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@import "../../vars";
@import "../../mixins";
.result-content {
padding-top: 20px;
}
.result-content-page {
display: flex;
justify-content: center;
flex-wrap: wrap;
// &--hidden {
// display: none;
// }
}
.result-item {
max-width: 315px;
width: 100%;
height: 550px;
margin-top: 20px;
transition: box-shadow 0.2s ease;
&:not(:nth-child(4n)) {
margin-right: 6px;
}
&:hover {
box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15);
border-radius: 10px;
}
}
.result-viewed {
padding-bottom: 121px;
}