-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 1.72 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
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
<!DOCTYPE html>
<html>
<head>
<title>LED Loading Effect In HTML/CSS</title>
<meta charset="utf-8">
<meta name=viewport content="width=device-width,initial-scale=1">
<style type="text/css">
body{
margin: 0;
padding: 0;
overflow-x: hidden;
}
section{
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
margin-top: 50px;
}
div{
width: 60px;
height: 60px;
border-radius: 50%;
border:20px solid;
animation: 1.5s loder infinite;
margin: 20px;
}
.success{
border-color:#00ff87 #bdc3c7;
}
.danger{
border-color:#c23616 #bdc3c7;
}
.primary{
border-color:#0097e6 #bdc3c7;
}
.secondnry{
border-color:#dcdde1 #bdc3c7;
}
.warning{
border-color:#00ff87 #bdc3c7;
}
.dark{
border-color:#2f3640 #bdc3c7;
}
.warm{
border-color:#ff3f34 #bdc3c7;
}
.indigo{
border-color:#3c40c6 #bdc3c7;
}
.permium{
border-color:#ffa801 #bdc3c7;
}
.gold{
border-color:#f1c40f #bdc3c7;
}
@keyframes loder{
to{
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<section>
<div class="success"></div>
<div class="danger"></div>
<div class="primary"></div>
<div class="secondnry"></div>
<div class="warning"></div>
<div class="dark"></div>
<div class="warm"></div>
<div class="indigo"></div>
<div class="permium"></div>
<div class="gold"></div>
</section>
</body>
</html>