UNPKG

1.04 kBCSSView Raw
1@value color-darkest-grey, color-light-grey, color-labs-red from '../colours.module.css';
2
3.playerControls {
4 margin: 1em;
5 display: flex;
6}
7
8.playerControls > * {
9 display: inline-block;
10}
11
12.playerControls > *:not(:last-child) {
13 margin-right: 0.5em;
14 background: color-darkest-grey;
15}
16
17.playerButton {
18 width: 48px;
19 height: 48px;
20 padding: 0.5em;
21 border: 0;
22 color: white;
23 font-size: 1em;
24 cursor: pointer;
25}
26
27.playBackRate{
28 border: 0;
29 color: white;
30 font-size: 1em;
31 cursor: pointer;
32 position: relative;
33 padding-left: 0.8em;
34}
35
36.playBackRate::before{
37 content: '×';
38 position: absolute;
39 bottom: 11px;
40 left: 12px;
41}
42
43.playBackRate > select {
44 padding-top: 0.5em;
45 padding-bottom: 0.5em;
46 height: 100%;
47 outline: none;
48 width: auto;
49 width: 100%;
50}
51
52.timeBox {
53 display: inline-block;
54 text-align: center;
55 line-height: 48px;
56 padding: 0 1em;
57}
58
59.currentTime {
60 color: color-labs-red;
61 cursor: pointer;
62}
63
64.separator {
65 color: color-light-grey;
66 margin: 0 1em;
67}
68
69.duration {
70 color: white;
71}