-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader4.css
More file actions
32 lines (30 loc) · 892 Bytes
/
loader4.css
File metadata and controls
32 lines (30 loc) · 892 Bytes
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
/*----------------------------- Loader 4 -----------------------------*/
.loader4{
background-color: black;
height: 100%;
width: 100%;
opacity: 0.8;
top: 0;
left: 0;
position: fixed;
display: none;
justify-content: center;
align-items: center;
}
.loader4Inside{
height: 70px; /* Increase/decrese the size of the spinner */
width: 70px;
border-style: dashed;
border-color: white;
border-radius: 100%;
border-width: 10px; /* Increase/decrese the width of the spinner */
animation-name: loaderFour;
animation-duration: 0.5s; /* Increase/decrese the speed of the spinner */
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes loaderFour {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
/*--------------------------------- Loader 4 Ends --------------------------*/