-
Notifications
You must be signed in to change notification settings - Fork 0
/
par.css
64 lines (57 loc) · 1.29 KB
/
par.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
.particlesparallax {
font-family: "Popins";
background: #94daf0;
overflow: hidden;
height: 100%;
width: 100%;
-webkit-font-smoothing: antialiased;
/* -webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none; */
user-select: none;
}
#particles-js,
#parallax,
.layer,
.some-space,
.some-more-space {
height: 100%;
position: absolute;
width: 100%;
}
#particles-js {
opacity: 0.8;
}
h1 {
color: #5032f8;
font-size: 6em;
font-weight: 100;
letter-spacing: 0.1em;
position: absolute;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
}
.some-space {
animation: rotate 18s 0.5s infinite linear reverse;
}
.some-more-space {
-webkit-animation: rotate 15s 0.1s infinite linear;
animation: rotate 15s 0.1s infinite linear;
}
@-webkit-keyframes rotate {
0% {
transform: rotateZ(0deg) translate3d(0, 1.5%, 0) rotateZ(0deg);
}
100% {
transform: rotateZ(360deg) translate3d(0, 1.5%, 0) rotateZ(-360deg);
}
}
@keyframes rotate {
0% {
transform: rotateZ(0deg) translate3d(0, 1.5%, 0) rotateZ(0deg);
}
100% {
transform: rotateZ(360deg) translate3d(0, 1.5%, 0) rotateZ(-360deg);
}
}