-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (46 loc) · 898 Bytes
/
style.css
File metadata and controls
47 lines (46 loc) · 898 Bytes
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
body{
height: 98vh;
width: 98vw;
display: flex;
justify-content: center;
align-items: center;
background-color: #121212;
}
h1{
font-family: 'Raleway', sans-serif;
animation: colorchange 9s linear infinite alternate both;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
@keyframes colorchange{
0% {
background-color: #f79533;
}
15% {
background-color: #f37055;
}
25% {
background-color: #ef4e7b;
}
35% {
background-color: #a166ab;
}
45% {
background-color: #5073b8;
}
55% {
background-color: #1098ad;
}
65% {
background-color: #07b39b;
}
75% {
background-color:#6fba82;
}
85% {
background-color:#35b64a;
}
100% {
background-color:#ff8725;
}
}