-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
108 lines (84 loc) · 1.55 KB
/
content.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.dv-player-fullscreen.clink-show {
width: calc(100% - 300px) !important;
}
.dv-player-fullscreen {
transition: width 0.5s ease;
}
#clink-container {
position: fixed;
top: 0;
right: 0;
height: 100%;
width: 0;
z-index: 9999;
visibility: hidden;
transition: visibility 0.5s, width 0.5s ease;
background: #222222;
color: #c8a6b5 !important;
font-size: small;
}
#clink-container ::-webkit-scrollbar {
width: 4px;
}
#clink-container ::-webkit-scrollbar-track {
background: transparent;
}
#clink-container ::-webkit-scrollbar-thumb {
background: #ff6978de;
}
#clink-container ::-webkit-scrollbar-thumb:hover {
background: #ff6978;
}
#clink-container ul {
color: #c8a6b5 !important;
overflow-y: scroll;
overflow-x: hidden;
}
#clink-container.clink-show {
width: 300px;
visibility: visible;
}
.clink-header .avatar-img {
opacity: 0.8;
cursor: pointer;
}
.clink-header .avatar-img:hover {
opacity: 1;
}
.clink-header .share-link-btn {
opacity: 0.87;
color: #c8a6b5;
cursor: pointer;
font-size: large;
}
.clink-header .share-link-btn:hover {
opacity: 1;
}
.clink-chat {
background: #121212;
border-radius: 8px;
height: 100%;
}
.text-accent {
color: #ff6978 !important;
}
.text-accent-bright {
color: #c8a6b5 !important;
}
.avatar-img {
border-radius: 100%;
width: 40px;
height: 40px;
}
.avatar-selection input[type="radio"] {
display: none;
}
.avatar-selection label {
opacity: 0.6;
}
.avatar-selection label:hover {
opacity: 0.8;
}
.avatar-selection :checked + label {
opacity: 1;
}