File size: 2,034 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
@import "../../mixins.scss";
.movieCard {
width: calc(50% - 5px);
margin-bottom: 25px;
cursor: pointer;
flex-shrink: 0;
@include md {
width: calc(25% - 15px);
}
@include lg {
width: calc(20% - 16px);
}
.posterBlock {
position: relative;
width: 100%;
aspect-ratio: 1 / 1.5;
background-size: cover;
background-position: center;
margin-bottom: 30px;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 10px;
transition: all ease 0.5s;
.lazy-load-image-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 12px;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
}
.circleRating {
width: 40px;
height: 40px;
position: relative;
top: 30px;
background-color: white;
flex-shrink: 0;
@include md {
width: 50px;
height: 50px;
}
}
.genres {
display: none;
position: relative;
@include md {
display: flex;
flex-flow: wrap;
justify-content: flex-end;
}
}
}
.textBlock {
color: white;
display: flex;
flex-direction: column;
.title {
font-size: 16px;
margin-bottom: 10px;
line-height: 24px;
@include ellipsis(1);
@include md {
font-size: 20px;
}
}
.date {
font-size: 14px;
opacity: 0.5;
}
}
&:hover {
.posterBlock {
opacity: 0.5;
}
}
}
|