https://thered.stream/how-trump-may-esc ... estinians/
Scroll a bit down, and you will see this incorrectly sized thumbnail:
Right at the top, you will see this incorrectly sized thumbnail:
Moderator: trava90
Code: Select all
@-moz-document domain("thered.stream") {
.media-container iframe {
height: 720px
}
}
Code: Select all
@-moz-document domain("thered.stream") {
.container iframe {
height: calc(var(--content-width) * 9 / 16)
}
.single56__content iframe {
height: calc(var(--narrow-width) * 9 / 16)
}
}
Can't say for sure, but this seems like a very similar issue. If it's not, I'll open another topic. (scroll just a bit down, first YouTube video embed)
Code: Select all
@-moz-document domain("www.pcsteps.gr") {
@media (min-width:576px) {
.container iframe {
height: calc((540px * 2 / 3 - 30px) * 9 / 16) !important;
}
}
@media (min-width:768px) {
.container iframe {
height: calc((720px * 2 / 3 - 30px) * 9 / 16) !important;
}
}
@media (min-width:992px) {
.container iframe {
height: calc((960px * 2 / 3 - 30px) * 9 / 16) !important;
}
}
@media (min-width:1200px) {
.container iframe {
height: calc((1140px * 2 / 3 - 30px) * 9 / 16) !important;
}
}
}