-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.html
More file actions
57 lines (54 loc) · 1.3 KB
/
loader.html
File metadata and controls
57 lines (54 loc) · 1.3 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
<html>
<head>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
div
/>
<style>
body {
margin: 0px;
padding: 0px;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.loader {
box-shadow: 0px 0px 100px rgb(0, 56, 238);
position: absolute;
animation: rotation 4s linear infinite;
}
@keyframes rotation {
100% {
transform: rotate(360deg);
}
}
.material-icons {
color: #7582f8;
text-shadow: 0px 5px 10px #021caf;
background-image: linear-gradient(157deg, #0026ff, #647afa);
border: solid #445ef3 1px;
font-size: 12em;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="loader rounded-circle">
<span class="material-icons rounded-circle p-4">
menu_book
</span>
</div>
</div>
</body>
</html>