-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (48 loc) · 982 Bytes
/
style.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
[class*="Voice_voiceStates__"] {
display: flex;
flex-wrap: wrap;
}
[class*="Voice_voiceState__"] {
height: auto;
margin-bottom: 0;
display: flex;
flex-direction: column;
}
[class*="Voice_avatar__"] {
border-radius: 8px;
filter: brightness(70%);
width: 80px;
height: 80px;
margin-bottom: 8px;
}
[class*="Voice_avatarSpeaking__"] {
position: relative;
animation: 300ms infinite alternate ease-in-out speak-jump;
filter: brightness(100%);
border-color: transparent;
animation-duration: 300ms;
}
[class*="Voice_name__"] {
max-width: 80px;
box-sizing: border-box;
text-overflow: clip;
white-space: nowrap;
overflow: hidden;
display: block;
text-align: center;
}
@keyframes speak-jump {
0% {
bottom: 0px;
}
50% {
bottom: 10px;
}
100% {
bottom: 0px;
}
}
[class*="Voice_voiceContainer__"] {
justify-content: flex-end;
display: flex;
}