-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (52 loc) · 760 Bytes
/
styles.css
File metadata and controls
63 lines (52 loc) · 760 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
overflow: hidden;
background-color: #040015;
color: #ffffff;
font-family: "Raleway";
position: relative;
}
.star {
position: absolute;
color: #fff;
font-size: 16px;
animation: pulsate 2s infinite alternate;
}
.bounce {
animation: 6s ease-in-out infinite reverse both running bounceAnim;
}
.appear {
animation: appearAnim 3s ease-in forwards;
}
@keyframes pulsate {
from {
}
to {
opacity: 0.8;
}
}
@keyframes appearAnim {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes bounceAnim {
0% {
transform: translateY(0%);
}
50% {
transform: translateY(-3%);
}
100% {
transform: translateY(0%);
}
}