-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (65 loc) · 1.2 KB
/
style.css
File metadata and controls
78 lines (65 loc) · 1.2 KB
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
69
70
71
72
73
74
75
76
77
78
body{
margin: 0;
padding: 0;
font-family: Zen Dots;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 8s ease infinite;
height: 100vh;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
p{
font-size: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
animation: fly 5s infinite;
}
@keyframes fly{
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
h1{
display: flex;
align-items: center;
justify-content: center;
animation: fontbulger 1s infinite ;
}
@keyframes fontbulger {
0% {
bottom: 0;
left: 340px;
background: rgb(24, 138, 128);
}
33% {
bottom: 340px;
left: 340px;
background: #c914ab;
color: aliceblue;
}
66% {
bottom: 340px;
left: 40px;
background: #18aa13;
}
100% {
bottom: 0;
left: 40px;
background: rgb(151, 35, 35);
}
}