-
Notifications
You must be signed in to change notification settings - Fork 12
/
videojs.endcard.less
55 lines (55 loc) · 1.29 KB
/
videojs.endcard.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.vjs-control-bar {
z-index: 1;
}
.video-js {
#player-endcard {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: #000;
z-index: 0;
#related-content {
position: absolute;
top: 0;
bottom: 3.5em;
right: 0;
left: 25%;
div {
height: 50%;
border: 1px solid gray;
p {
margin: 0;
color: white;
font-size: 20px;
font-family: Helvetica;
height: 100%;
}
}
}
#next-video {
position: absolute;
top: 0;
bottom: 3.5em;
right: 75%;
left: 0%;
div {
height: 90%;
p {
margin: 0;
color: white;
font-size: 20px;
font-family: Helvetica;
height: 100%;
}
}
div#countdown {
height: 10%;
font-family: Helvetica;
font-size: 12px;
color: red;
}
}
}
}