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

80 lines
1.1 KiB
SCSS
Raw Normal View History

2021-09-30 18:30:36 +01:00
2021-09-30 19:33:47 +01:00
.films {
2021-10-10 16:06:43 +01:00
margin: 8px;
2021-10-11 13:26:51 +01:00
box-sizing: border-box;
2021-10-11 10:43:07 +01:00
a {
color: #ee0;
text-decoration: none;
}
2021-09-30 19:33:47 +01:00
.film {
2021-10-10 16:06:43 +01:00
margin-bottom: 16px;
2021-09-30 19:33:47 +01:00
h1 {
font-weight: bold;
font-size: 20px;
}
}
@media screen and (max-width: 799px) {
.film {
margin-bottom: 16px;
h2 {
margin-bottom: 8px;
}
}
}
}
2021-10-10 16:06:43 +01:00
2021-10-11 10:43:07 +01:00
main > .film {
max-width: 1080px;
margin: auto;
2021-10-10 16:06:43 +01:00
.info {
margin: 8px;
2021-10-11 10:43:07 +01:00
margin-bottom: 32px;
2021-10-11 19:03:23 +01:00
text-overflow: ellipsis;
overflow: hidden;
2021-10-11 10:43:07 +01:00
h1 {
font-size: 24px;
margin: 24px 0;
}
2021-10-11 19:03:23 +01:00
h2 {
margin: 24px 0;
}
2021-10-11 19:20:13 +01:00
.details {
margin-top: 16px;
}
.bio {
margin-top: 16px;
div {
margin-top: 8px;
}
}
2021-10-11 10:43:07 +01:00
}
video {
width: 100%;
2021-10-10 16:06:43 +01:00
}
.play {
text-align: center;
margin: 8px;
margin-top: 16px;
margin-bottom: 16px;
2021-10-11 19:03:23 +01:00
.texts {
padding-top: 16px;
.text {
padding-bottom: 16px;
}
}
}
@media screen and (max-width: 799px) {
h1 {
span {
display: block;
margin-bottom: 8px;
}
}
2021-10-10 16:06:43 +01:00
}
}