File size: 1,467 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 |
.grid-item {
width: 100%;
position: relative;
&:last-child {
.grid-item__movie-text {
bottom: 40%;
@media screen and (max-width: 800px) {
bottom: 17%;
}
}
}
&__img {
width: 100vw;
height: auto;
@media screen and (max-width: 800px) {
display: none;
}
}
&__mobile-img {
@media screen and (min-width: 800px) {
display: none;
}
@media screen and (max-width: 800px) {
display: block;
height: auto;
}
}
&__movie-text {
position: absolute;
bottom: 32%;
left: 5%;
cursor: pointer;
right: 5%;
color: #fff;
font-size: 18px;
text-shadow: 3px 3px 4px black;
line-height: 25px;
@media screen and (max-width: 800px) {
font-size: 15px;
line-height: 21px;
bottom: 10%;
right: 10%;
left: 12%;
}
}
&__tv-text {
position: absolute;
bottom: 41%;
left: 5%;
cursor: pointer;
right: 5%;
color: #fff;
font-size: 18px;
text-shadow: 3px 3px 4px black;
line-height: 25px;
@media screen and (max-width: 800px) {
font-size: 15px;
line-height: 22px;
bottom: 32%;
right: 10%;
left: 12%;
}
}
&__title {
@media screen and (max-width: 600px) {
font-size: 16px;
}
}
&__overview {
color: white;
}
} |