blob: 1f0c2c6c3a19677866407da165b99504157cd97b (
plain)
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
|
html {
height: 100%;
}
body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow:hidden;
}
.preloading-page {
height: 100%;
width: 100%;
margin: 0px;
overflow:hidden;
background-image: linear-gradient(to bottom right, rgba(30, 36, 48, 1), rgba(59, 74, 93, 1));
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #FFFFFF;
}
.project-icon {
width: 200px;
height: 210px;
margin-top: 0%;
background-repeat: no-repeat;
}
.preloading-page-loading {
font-size: 24px;
line-height: 44px;
font-family: Arial, Helvetica, sans-serif;
color: #1EB9F3;
margin-top: 10%;
margin-left: 3%;
}
.preloading-page-loading span {
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
animation-name: blink;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
.preloading-page-loading span:nth-child(2) {
animation-delay: .5s;
}
.preloading-page-loading span:nth-child(3) {
animation-delay: 1.0s;
}
@keyframes blink {
0% {
opacity: .2;
}
20% {
opacity: 1;
}
100% {
opacity: .2;
}
}
|