-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.css
More file actions
66 lines (56 loc) · 1.1 KB
/
web.css
File metadata and controls
66 lines (56 loc) · 1.1 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
.linkplay-container {
position: absolute;
pointer-events: none;
/*noinspection CssOverwrittenProperties*/
z-index: 100000;
/*noinspection CssOverwrittenProperties*/
z-index: 10000000000000000000;
margin: 0;
}
.linkplay-container, .linkplay-container * {
box-sizing: content-box;
}
.linkplay-controls {
position: absolute;
top: 30%;
left: 50px;
opacity: 0;
transition: opacity 0.5s;
}
.linkplay-container.video-hover .linkplay-controls {
opacity: 1;
}
.linkplay-container.video-hover li,
.linkplay-container.video-hover img {
pointer-events: all;
}
.linkplay-container ul,
.linkplay-container li,
.linkplay-container img {
display: inline;
vertical-align: middle;
font-family: sans-serif;
cursor: pointer;
font-size: 105%;
margin-right: 0.5em;
}
.linkplay-container ul {
list-style: none;
padding: 0;
}
.linkplay-container li {
padding: 0.4em 1em;
background: rgba(0, 0, 0, 0.3);
color: white;
border-radius: 2em;
}
.linkplay-container .joined {
background: #00B725;
}
.linkplay-container img {
width: 35px;
height: auto;
background: white;
border-radius: 100%;
padding: 0.5em;
}