-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>loading Animation</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: rgb(169, 169, 169, .1);
}
.container {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
}
.loading {
border: 6px solid #ccc;
width: 40px;
height: 40px;
border-radius: 50%;
border-left-color: #FDA7DF;
border-top-color: #FDA7DF;
animation: spin 1s infinite ease-in-out;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<h1>Lumia</h1>
<div class="container">
<div class="loading">
</div>
</div>
</body>
</html>