-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcss
78 lines (74 loc) · 1.21 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');
*{
padding:0;margin:0;
}
.load{
width:100%;
height:100%;
position:absolute;
display: flex;
background-color: #0c0c0c;
}
.pre-loader{
font-family: 'Lato', sans-serif;
background: #0c0c0c;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* .container{
display:flex;
flex-direction:row;
} */
.part1{
font-weight:600;
font-size:4rem;
color: #0e76a8;
}
.loader{
position: absolute;
left:50%;
margin-top:2rem;
transform: translate(-50%, -50%);
height:5px;
width:15rem;
background-color:rgb(15, 15, 15);
}
.loading{
background-color: #d85012;
width:5rem;
height:5px;
animation: animation 1.8s infinite;
}
.part1{
animation: loading 1.8s infinite;
}
@keyframes animation {
0% {
transform: translateX(0rem);
}
50% {
transform: translateX(10rem);
}
100% {
transform: translateX(0rem);
}
}
@keyframes loading {
0% {
transform: scale(1);
}
12% {
transform: scale(1.2);
}
24% {
transform: scale(1);
}
36% {
transform: scale(1.2);
}
48% {
transform: scale(1);
}
}