aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/poster.scss
blob: 92ab0fce9ad21865f83ad7701bc6db11855e061e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// --------------------------------------------------------------
// Faux poster overlay
// --------------------------------------------------------------

.plyr__poster {
    background-color: #000;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.plyr--stopped .plyr__poster {
    opacity: 1;
}