include timelines

This commit is contained in:
j 2021-09-30 19:33:47 +01:00
commit a3bac4c3dd
4 changed files with 55 additions and 5 deletions

View file

@ -1,2 +1,36 @@
.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;
}
}
}
}