-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (73 loc) · 1.48 KB
/
style.css
File metadata and controls
80 lines (73 loc) · 1.48 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
79
80
@import url('https://fonts.googleapis.com/css?family=Aref+Ruqaa');
body {
margin: 0;
background-color: #013243;
font-family: 'Aref Ruqaa', serif;
}
.moon {
position: relative;
height: 100vh;
}
.moon:after, .moon:before {
content: '';
position: absolute;
width: 300px;
height: 300px;
top: calc(50% - 150px);
border-radius: 50%;
}
.moon:after {
background-color: #fff;
right: 20%;
}
.moon:before {
background-color: #013243;
right: 25%;
z-index: 2;
-webkit-animation: moving 2.5s ease-in-out 1;
animation: moving 2.5s ease-in-out 1;
}
.moon .congrate {
text-align: center;
z-index: 3;
position: absolute;
height: 100%;
width: 100%;
bottom: 0;
right: 0;
left: 0;
top: 0;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: center;
-ms-align-items: center;
align-items: center;
color: #86E2D5;
-webkit-animation: coloring 2.5s linear infinite;
animation: coloring 2.5s linear infinite;
}
@-webkit-keyframes moving {
from { right: 20% }
to { right: 25% }
}
@keyframes moving {
from { right: 20% }
to { right: 25% }
}
@-webkit-keyframes coloring {
0.000% { color: #86E2D5 }
25.00% { color: #52B3D9 }
50.00% { color: #F2784B }
75.00% { color: #F7CA18 }
100.0% { color: #86E2D5 }
}
@keyframes coloring {
0.000% { color: #86E2D5 }
25.00% { color: #52B3D9 }
50.00% { color: #F2784B }
75.00% { color: #F7CA18 }
100.0% { color: #86E2D5 }
}
audio { display: none; }