-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvc.css
86 lines (73 loc) · 2.32 KB
/
vc.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
/* hide user by ID */
[data-userid="0"] { display: none; }
body {
--color: #79d979;
--text-color-highlight: #222222;
--align: flex-start;
--width: 120px;
--height: 86px;
--nameHeight: 26px;
--fontSize: calc((var(--width) / 100) * 15);
width: 100%;
overflow: hidden;
}
ul {
margin-block-start: 0;
margin-block-end: 0;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class*="Voice_avatarSpeaking"] {
opacity: 1 !important;
filter: grayscale(0%) !important;
outline: none;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] {
display: flex;
width: 100%;
align-items: center;
justify-content: var(--align);
padding: 0;
gap: 0;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] {
width: var(--width);
height: var(--height);
margin-bottom: 0px;
background-color: black;
position: relative;
text-align: center;
overflow: hidden;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class*="Voice_avatar"] {
height: var(--width);
width: 100%;
border-radius: 0;
border-width: 0;
opacity: 0.3;
filter: grayscale(100%);
transform: translateY(-22%);
transition: filter 0.1s ease-out, opacity 0.1s ease-out;
border: 0;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class^="Voice_user"] {
background-color: #111111;
position: absolute;
bottom: 0px;
padding: 0px;
height: var(--nameHeight);
width: 100%;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class*="Voice_avatarSpeaking"] + [class^="Voice_user"] {
background-color: var(--color) !important;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class*="Voice_avatarSpeaking"] + [class^="Voice_user"] [class^="Voice_name"] {
color: var(--text-color-highlight) !important;
}
[class^="Voice_voiceContainer"] [class^="Voice_voiceStates"] [class^="Voice_voiceState"] [class^="Voice_user"] [class^="Voice_name"] {
font-size: 13px !important;
padding: 0px;
margin: 0px;
height: 0;
transform: translateY(2.5px);
position: relative;
display: inline-block;
}