-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (95 loc) · 1.9 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@0;1&display=swap');
body {
height: 800px;
display: flex;
flex-direction: column;
margin: 0;
background-image: radial-gradient(circle, #ffffff 5%, #83f7f5 45%, #7391e2 95%);
font-size: 16px;
}
h1{
font-size: 3em;
color:rgb(47, 43, 43) ;
text-align: center;
margin-top: 60px;
font-family: 'Josefin Sans', sans-serif;
}
span{
color: #ac34e8;
}
ul {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 30px;
margin-top: 200px;
}
li {
list-style: none;
margin: 10px 50px;
}
#twitter {
position: relative;
animation: spiral 3s ease-in-out infinite;
}
@keyframes spiral {
0% {
transform: rotate(0deg) translateY(300px);
}
100% {
transform: rotate(360deg);
}
}
#heart {
position: relative;
animation: movetop 3s ease infinite;
}
@keyframes movetop {
from {top: 400px;}
to {top: 0px;}
}
#msg {
position: relative;
animation: movedown 2.4s ease infinite;
}
@keyframes movedown {
from {top: 0px;}
to {top: 350px;}
}
#dollard {
animation: zoom-in 4s ease infinite;
}
@keyframes zoom-in {
0% {
transform: scale(0);
}
100% {
transform: scale(1.5, 1.5);
}
}
#letter {
position: relative;
animation: rigth-left 0.5s ease infinite;
}
@keyframes rigth-left {
from {right: 0px;}
to {right: -10px}
}
#twitch {
position: relative;
animation: movedown-top 2.5s ease infinite;
}
@keyframes movedown-top {
/* from {top: -200px;}
to {top: 0px} */
0% {
transform: translateY(-200px);
}
50% {
transform: translateX(80px);
}
100% {
transform: translateY(0) ;
}
}