-
Notifications
You must be signed in to change notification settings - Fork 13
/
custom.css
68 lines (54 loc) · 1.3 KB
/
custom.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
.blur {
filter: blur(7px);
}
.underline-yellow-7 {
text-decoration-color: hsl(36, 77%, 49%)
}
.underline-blue-5 {
text-decoration-color: hsl(205, 65%, 55%)
}
/* ====== ====== ANIMATIONS ====== ====== */
.fade-in {
animation: fade-in 500ms linear 200ms both;
}
.rotate {
animation: rotate-center 1s linear infinite both;
}
/* ----------------------------------------------
* Generated by Animista on 2019-9-6 16:20:47
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation fade-in
* ----------------------------------------
*/
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* ----------------------------------------------
* Generated by Animista on 2019-9-6 17:48:36
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation rotate-center
* ----------------------------------------
*/
@keyframes rotate-center {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}