phantasma/app/static/css/partials/_film.scss
2021-10-11 10:43:07 +01:00

65 lines
926 B
SCSS

.films {
width: 100vw;
margin: 8px;
a {
color: #ee0;
text-decoration: none;
}
.film {
width: 100vw;
margin-bottom: 16px;
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;
}
}
}
}
main > .film {
max-width: 1080px;
margin: auto;
.info {
margin: 8px;
margin-bottom: 32px;
h1 {
font-size: 24px;
margin: 24px 0;
}
}
video {
width: 100%;
}
.play {
text-align: center;
margin: 8px;
margin-top: 16px;
margin-bottom: 16px;
}
}