forked from v3rmine/nico-chat-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
41 lines (35 loc) · 963 Bytes
/
main.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
#chat {
font-family: 'Roboto', sans-serif;
color: #000;
/*text-shadow: -0.3vmin 0 0 rgba(0, 0, 0, 0.8),
0.3vmin 0 0 rgba(0, 0, 0, 0.8),
0 -0.3vmin 0 rgba(0, 0, 0, 0.8),
0 0.3vmin 0 rgba(0, 0, 0, 0.8);*/
text-shadow: -0.3px 0 0 rgba(255, 255, 255, 0.8),
0.3px 0 0 rgba(255, 255, 255, 0.8),
0 -0.3px 0 rgba(255, 255, 255, 0.8),
0 0.3px 0 rgba(255, 255, 255, 0.8);
}
.smth {
font-family: 'Roboto', sans-serif;
}
#chat {
width: auto;
height: auto;
}
#chat .popup {
position: absolute;
top: 50vh;
right: -50px;
width: auto;
text-align: center;
will-change: transform;
opacity: 0;
animation: popup 2.5s ease-in;
animation: popup 7s 1 linear;
}
@keyframes popup {
0% { transform: translateX(0px) scale(0); opacity: 0; }
10% { transform: scale(1); opacity: 1; }
100% { transform: translateX(-2000px); opacity: 1; }
}