phantasma/app/static/css/partials/_film.scss

37 lines
527 B
SCSS
Raw Normal View History

2021-09-30 17:30:36 +00:00
2021-09-30 18:33:47 +00:00
.films {
width: 100vw;
.film {
width: 100vw;
display: flex;
flex-direction: row;
.left, .right {
width: 50%;
img {
max-width: 100%;
}
}
h1 {
font-weight: bold;
font-size: 20px;
}
}
@media screen and (max-width: 799px) {
.film {
margin-bottom: 16px;
flex-direction: column;
.left, .right {
width: 100%;
img {
max-width: 100%;
}
}
h2 {
margin-bottom: 8px;
}
}
}
}