fix merge conflicts with About page
This commit is contained in:
commit
323a86a5e9
14 changed files with 326 additions and 266 deletions
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
.films {
|
||||
margin: var(--spacing-2);
|
||||
box-sizing: border-box;
|
||||
|
|
@ -33,24 +31,25 @@
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
main > .film {
|
||||
max-width: var(--container-width);
|
||||
margin: auto;
|
||||
.info {
|
||||
margin: var(--spacing) var(--spacing-2);
|
||||
margin-bottom: 32px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
margin: 24px 0;
|
||||
font-size: 20px;
|
||||
margin: 0 0 24px 0;
|
||||
}
|
||||
h2 {
|
||||
font-size: 18px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
.details {
|
||||
font-size: 18px;
|
||||
margin-top: var(--spacing-2);
|
||||
}
|
||||
.bio {
|
||||
|
|
@ -60,14 +59,12 @@ main > .film {
|
|||
}
|
||||
}
|
||||
}
|
||||
video {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.play {
|
||||
text-align: center;
|
||||
margin: var(--spacing);
|
||||
margin-top: var(--spacing-2);
|
||||
margin-bottom: var(--spacing-2);
|
||||
max-width: 250px;
|
||||
|
||||
.texts {
|
||||
padding-top: var(--spacing-2);
|
||||
|
|
@ -85,3 +82,88 @@ main > .film {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.info-meta {
|
||||
display: inline-block;
|
||||
margin: 0 auto;
|
||||
position: absolute;
|
||||
max-width: 600px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
animation: fade_in 1s linear 0.4s forwards;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.info-meta, .bio-block, .play, .summary-block {
|
||||
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: var(--color-link);
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.summary-block {
|
||||
max-width: 1080px;
|
||||
margin-top: 350px;
|
||||
}
|
||||
|
||||
.bio-block {
|
||||
max-width: 1080px;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.video-block {
|
||||
height: 100vh;
|
||||
padding-bottom: 50px;
|
||||
padding-top: 50px;
|
||||
|
||||
video {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: -9999;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
object-fit: fill;
|
||||
//height: 100vh;
|
||||
//width: auto;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-play {
|
||||
color: #fff;
|
||||
border: 3px solid var(--color-link);
|
||||
border-radius: 50%;
|
||||
font-size: 32px;
|
||||
text-decoration: none;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.film-play-block {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.film-play-spacer {
|
||||
padding: var(--spacing);
|
||||
margin-top: 4px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue