UNPKG

748 BCSSView Raw
1@value color-light-grey from '../colours.module.css';
2
3.topSection {
4 background: black;
5}
6
7.playerSection {
8 display: inline-flex;
9 align-items: flex-start;
10 width: 100%;
11}
12
13video {
14 width: 30%;
15 max-height: 160px;
16 cursor: pointer;
17}
18
19.controlsSection {
20 width: 64%;
21 display: flex;
22 flex-direction: column;
23}
24
25.titleBox {
26 border-bottom: 0.02em solid color-light-grey;
27 margin-bottom: 1em;
28}
29
30.title {
31 margin: 1em;
32 color: white;
33 height: 1.3em;
34 font-size: 16px;
35 overflow: hidden;
36 white-space: nowrap;
37 text-overflow: ellipsis;
38}
39
40.helpText {
41 margin-top: 0px;
42 margin-bottom: 0.1em;
43}
44
45/* Mobile devices */
46@media (max-width: 768px) {
47 .hideInMobile {
48 display: none;
49 }
50
51 video {
52 /* min-width: 50%; */
53 }
54}