File size: 739 Bytes
f5071ca |
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 39 40 41 42 43 44 |
.cast {
display: flex;
flex-direction: column;
width: 120px;
&:not(:last-child) {
margin-right: 30px;
}
@media screen and (max-width: 800px) {
width: 70px;
margin-top: 10px;
&:not(:last-child) {
margin-right: 15px;
}
}
&__img-box {
display: flex;
justify-content: center;
width: 120px;
@media screen and (max-width: 800px) {
width: 70px;
}
}
&__img {
width: 80px;
box-shadow: 0 0px 20px rgba(154, 160, 185, 0.05),
0 0px 8px rgba(166, 173, 201, 0.2);
padding: 3px;
@media screen and (max-width: 800px) {
width: 65px;
height: 100px;
}
}
&__name {
text-align: center;
}
}
|