-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnetflix.css
69 lines (69 loc) · 1.4 KB
/
netflix.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
html, body {
user-select: auto !important
}
button, input, textarea {
vertical-align: middle;
box-sizing: border-box;
outline: 0;
}
.watch-video--selector-audio-subtitle {
overflow-y: auto
}
.player-info {
text-shadow:
#222222bf 0 0 2px, #222222bf 0 0 2px, #222222bf 0 0 2px,
#222222bf 0 0 2px, #222222bf 0 0 2px, #222222bf 0 0 2px;
font-family: 'Segoe UI Variable Text', Tahoma, sans-serif;
font-size: max(19px, 1.95vh);
background: 0;
pointer-events: none;
position: absolute;
overflow: hidden;
min-height: 31vh;
min-width: 60vh;
resize: none;
margin: 1vh;
border: 0;
color: #ccc;
}
.player-streams {
font-family: Tahoma, sans-serif;
text-align: center;
font-size: 2em;
border-radius: .5em;
padding: .5em;
opacity: .95;
background: #222;
color: #ccc;
box-shadow: .1em .1em .5em .1em rgba(0, 0, 0, .4);
transform: translate(-50%, -50%);
position: fixed;
z-index: 9;
left: 50%;
top: 50%;
}
.player-streams div {
margin: .5em
}
.player-streams select::-webkit-scrollbar {
display: none
}
.player-streams select {
-ms-overflow-style: none;
scrollbar-width: none;
background: #444;
border-radius: .5em;
border: 1px solid #555;
height: 15em;
width: 11em;
}
.player-streams button {
background: #444;
border-radius: .3em;
border: 1px solid #555;
padding: .25em .5em;
margin: 0 1em;
}
.player-timedtext span {
font-weight: 400 !important
}