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

189 lines
3.1 KiB
SCSS
Raw Normal View History

2021-09-30 19:33:47 +01:00
.films {
margin: var(--spacing-2);
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 {
margin-bottom: var(--spacing-2);
2021-09-30 19:33:47 +01:00
h1 {
font-weight: bold;
font-size: 20px;
}
}
@media screen and (max-width: 799px) {
.film {
margin-bottom: var(--spacing-2);
2021-09-30 19:33:47 +01:00
h2 {
margin-bottom: var(--spacing);
2021-09-30 19:33:47 +01:00
}
@media screen and (max-width: 799px) {
h1, h2 {
span {
display: block;
line-height: 1.3;
}
}
}
2021-09-30 19:33:47 +01:00
}
}
}
2021-10-11 10:43:07 +01:00
main > .film {
2021-10-22 14:42:59 +05:30
max-width: var(--container-width);
2021-10-11 10:43:07 +01:00
margin: auto;
2021-10-10 16:06:43 +01:00
.info {
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-16 14:45:46 +05:30
text-align: center;
2021-10-11 19:03:23 +01:00
2021-10-11 10:43:07 +01:00
h1 {
2021-10-16 14:45:46 +05:30
font-size: 20px;
margin: 0 0 24px 0;
2021-10-11 10:43:07 +01:00
}
2021-10-11 19:03:23 +01:00
h2 {
2021-10-16 14:45:46 +05:30
font-size: 18px;
2021-10-11 19:03:23 +01:00
margin: 24px 0;
}
2021-10-11 19:20:13 +01:00
.details {
2021-10-16 14:45:46 +05:30
font-size: 18px;
margin-top: var(--spacing-2);
2021-10-11 19:20:13 +01:00
}
.bio {
margin-top: var(--spacing-2);
2021-10-11 19:20:13 +01:00
div {
margin-top: var(--spacing);
2021-10-11 19:20:13 +01:00
}
}
2021-10-11 10:43:07 +01:00
}
2021-10-22 17:16:00 +05:30
2021-10-10 16:06:43 +01:00
.play {
text-align: center;
margin-top: var(--spacing-2);
margin-bottom: var(--spacing-2);
2021-10-22 17:16:00 +05:30
max-width: 250px;
2021-10-11 19:03:23 +01:00
2021-10-22 17:20:26 +01:00
}
.texts {
margin-top: var(--spacing-2);
margin-bottom: var(--spacing-2);
.text {
padding-bottom: var(--spacing-2);
2021-10-11 19:03:23 +01:00
}
}
2021-10-22 17:20:26 +01:00
2021-10-11 19:03:23 +01:00
@media screen and (max-width: 799px) {
h1 {
span {
display: block;
margin-bottom: var(--spacing);
2021-10-11 19:03:23 +01:00
}
}
2021-10-10 16:06:43 +01:00
}
}
2021-10-16 14:45:46 +05:30
.info-meta {
display: inline-block;
margin: 0 auto;
2021-10-22 17:16:00 +05:30
position: absolute;
2021-10-16 14:45:46 +05:30
max-width: 600px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fade_in 1s linear 0.4s forwards;
2021-10-22 17:16:00 +05:30
opacity: 0;
2021-10-16 14:45:46 +05:30
}
2021-10-23 15:09:20 +01:00
main > .film {
.info-meta, .bio-block, .play, .summary-block, .texts {
background: rgba(0, 0, 0, 0.55);
border-radius: 2px;
box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
margin-left: auto;
margin-right: auto;
padding: 20px;
font-size: 18px;
a {
color: #ee0;
text-decoration: none;
font-weight: 700;
}
2021-10-22 17:16:00 +05:30
}
2021-10-16 14:45:46 +05:30
}
2021-10-22 17:16:00 +05:30
.summary-block {
max-width: 1080px;
2021-10-23 17:53:09 +05:30
margin-top: 60vh;
2021-10-24 19:13:02 +05:30
word-break: break-word;
2021-10-16 14:45:46 +05:30
}
2021-10-22 17:16:00 +05:30
.bio-block {
max-width: 1080px;
margin-top: 30px;
margin-bottom: 30px;
}
2021-10-16 14:45:46 +05:30
.video-block {
height: 100vh;
2021-10-23 17:53:09 +05:30
//padding-bottom: 50px;
//padding-top: 50px;
2021-10-16 14:45:46 +05:30
video {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: -9999;
height: 100vh;
2021-10-22 17:16:00 +05:30
width: 100vw;
object-fit: fill;
//height: 100vh;
//width: auto;
2021-10-16 14:45:46 +05:30
margin: 0 auto;
}
2021-10-21 18:27:34 +05:30
}
.icon-play {
color: #fff;
2021-10-23 17:53:09 +05:30
border: 4px solid rgba(#fff, 0.3);
2021-10-22 17:16:00 +05:30
border-radius: 50%;
2021-10-24 19:13:02 +05:30
box-sizing: border-box;
2021-10-21 18:27:34 +05:30
text-decoration: none;
2021-10-24 19:13:02 +05:30
width: 54px;
height: 54px;
2021-10-22 17:16:00 +05:30
display: flex;
align-items: center;
justify-content: center;
margin: auto;
.text {
font-family: "icomoon";
font-size: 42px;
display: block;
}
2021-10-22 17:16:00 +05:30
}
.film-play-block {
text-align: center;
2021-10-24 19:13:02 +05:30
font-size: 18px;
}
.film-play-padma {
font-family: "wrong font";
2021-10-22 17:16:00 +05:30
}
.film-play-spacer {
padding: var(--spacing);
margin-top: 4px;
font-size: 12px;
font-weight: 700;
2021-10-22 17:20:26 +01:00
}
2021-10-25 09:29:40 +01:00
video.player.fullscreen:-webkit-full-screen {
width: 100%;
height: 100%;
2021-10-26 15:56:07 +05:30
}