aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/times.scss
blob: 240d3528caa68a7dc894cc55afb9c4690a5bf541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// --------------------------------------------------------------
// Time
// --------------------------------------------------------------

.plyr__time {
    font-size: $plyr-font-size-time;
}

// Media duration hidden on small screens
.plyr__time + .plyr__time {
    // Add a slash in before
    &::before {
        content: '\2044';
        margin-right: $plyr-control-spacing;
    }

    @media (max-width: $plyr-bp-sm-max) {
        display: none;
    }
}

.plyr--video .plyr__time {
    text-shadow: 0 1px 1px rgba(#000, 0.15);
}