-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogEpisodeDisplay.css
More file actions
96 lines (81 loc) · 1.56 KB
/
progEpisodeDisplay.css
File metadata and controls
96 lines (81 loc) · 1.56 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
html, body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
background-color: black;
color: white;
}
.header {
position: fixed;
top: 0;
left: 0;
width: calc(100vw - 20px);
height: calc(10vh - 20px);
padding: 10px;
background-color: black;
color: white;
}
.header span {
display: inline-block;
width: calc(25vw - 10px);
font-size: 6vh;
text-align: center;
vertical-align: middle;
}
.header span img {
width: 100%;
height: calc(10vh - 20px);
object-fit: contain;
}
.teleprompterScript {
font-size: 50px;
}
.teleprompterScript .sectionTitle {
background-color: var(--uiColour);
color: var(--uiTextColour);
padding: 15px;
padding-left: 10vw;
padding-right: 10vw;
}
.teleprompterScript section {
background-color: black;
color: white;
}
.teleprompterScript section.directive {
background-color: white;
color: black;
}
.teleprompterScript {
margin-top: 50vh;
margin-bottom: 50vh;
}
.teleprompterArrow {
position: fixed;
top: 50vh;
left: 10px;
font-size: 60px;
mix-blend-mode: difference;
}
@media (max-width: 150vh) {
.currentTime {
width: calc(37.5vw - 20px)!important;
}
.elapsedTime {
display: none!important;
}
.remainingTime {
width: calc(37.5vw - 20px)!important;
}
}
@media (max-width: 120vh) {
.currentTime {
display: none!important;
}
.remainingTime {
width: calc(75vw - 20px)!important;
}
}
::-webkit-scrollbar {
display: none;
}