-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
65 lines (59 loc) · 1.5 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
h1 {
filter: drop-shadow(0px 2px 2px #ffffff44);
-webkit-background-clip: text;
background-clip: text;
-webkit-animation: colorRotate 8s ease-in-out 0s infinite;
padding-bottom: 8px;
-webkit-text-stroke: 0.5px black;
}
span {
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: span 6s ease-in-out infinite;
text-shadow: 0px 0px 1px #ffffff;
-webkit-animation: colorRotate 8s ease-in-out 0s infinite;
-webkit-text-stroke: 0.2px rgb(180, 180, 180);
}
svg {
filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.668));
}
code {
filter: drop-shadow(0px 0px 1px #00000080);
-webkit-background-clip: text;
background-clip: text;
-webkit-animation: colorRotate 8s ease-in-out 0s infinite;
text-shadow: 1px 1px 1px #fff5fa;
}
header {
filter: drop-shadow(0px 2px 2px #f87dff);
-webkit-background-clip: text;
background-clip: text;
-webkit-animation: colorRotate 8s ease-in-out 0s infinite;
-webkit-text-stroke: 1px black;
}
@keyframes colorRotate {
from {
color: #6666ff;
text-shadow: 0px 0px 1px #6666ff;
}
10% {
color: #0099ff;
text-shadow: 0px 0px 1px #0099ff;
}
50% {
color: #00ff00;
text-shadow: 0px 0px 1px #00ff00;
}
75% {
color: #ff3399;
text-shadow: 0px 0px 1px #ff3399;
}
100% {
color: #6666ff;
text-shadow: 0px 0px 1px #6666ff;
}
}
form {
-webkit-animation: colorRotate 8s ease-in-out 0s infinite;
}