-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplus.css
75 lines (65 loc) · 1.57 KB
/
plus.css
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
:root {
--ion-padding: 0px!important; /* Remove padding around outside of video */
--ion-background-color: black!important;
}
#video-container, video {
/* Make video span entire window */
max-width: 100%!important;
max-height: 100%!important;
height: 100vh;
}
/* Hide massive centre playbutton */
.shaka-play-button-container {
display: none!important;
}
.shaka-bottom-controls {
/* Move controls further down */
padding-bottom: 15px!important;
}
.shaka-skim-container {
background: linear-gradient(to top,#000 0,rgba(0,0,0,0) 70px)!important;
}
.shaka-controls-button-panel, .shaka-seek-bar-container, .shaka-skim-container {
transition: opacity linear 0.2s!important;
-webkit-transition: opacity linear 0.2s!important;
}
.shaka-settings-menu {
/* Move the settings dropdown up */
right: 45px!important;
bottom: 80px!important;
}
.shaka-volume-bar-container {
margin-right: 30px;
}
#mpp-action-popup {
display: block;
margin: auto;
width: 190px;
position: absolute;
top: 20px;
left: calc(50% - 90px);
z-index: 1;
background-color: rgba(0,0,0,0.7);
color: white;
padding: 10px;
padding-top: 5px;
text-align: center;
border-radius: 15px;
font-weight: bold;
font-size: 39px;
opacity: 0;
transition: opacity 0.05s;
}
.show-action-popup {
opacity: 1!important;
}
#mpp-action-popup .material-icons {
font-size: 50px;
width: 100%;
}
#mpp-action-popup p {
margin: 0;
position: relative;
top: -7px;
font-family: Roboto-Regular,Roboto,sans-serif;
}