-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 737 Bytes
/
style.css
File metadata and controls
41 lines (35 loc) · 737 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
body {
color: white;
background-color: black;
font-family: "Arial";
overflow: hidden;
}
.ttimg {
animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 0.5s;
transform: scaleX(150%);
transform: scaleY(150%);
}
.title {
animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 1s;
}
.desc {
animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 1.5s;
}
.lnkin {
color: blue;
text-decoration: underline;
animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 2.5s;
}
.ohyeahand {
animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 2s;
}
@keyframes floatx {
0% {
transform: translateY(200px);
opacity: 0%;
}
100% {
transform: translateY(0px);
opacity: 100%;
}
}