-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
53 lines (45 loc) · 1.06 KB
/
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
* {
image-rendering: pixelated;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
table {
border-collapse: separate;
background-color: transparent;
}
rainbow {
color: rgba(0, 0, 0, 0.459);
background: linear-gradient(to right,
red, orange, yellow, green, blue, indigo, violet, indigo, blue, green, yellow, orange, red);
background-size: 500%;
animation: rainbow-flow infinite linear 36s;
-webkit-background-clip: text;
background-clip: text;
}
blink {
animation: blink_keys 1s step-start infinite;
}
@keyframes blink_keys {
50% { opacity: 0; }
}
img.emoji {
display: inline-block;
vertical-align: middle;
margin: 0 2px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
max-width: 16px;
max-height: 16px;
}
#default-emoji {
image-rendering: crisp-edges;
image-rendering: -webkit-optimize-contrast;
}
@keyframes rainbow-flow {
0% {
background-position: 50% 0%;
}
100% {
background-position: -200%;
}
}