ammaan commited on
Commit
45e21b8
1 Parent(s): 4c81dc7

Create index.css

Browse files
Files changed (1) hide show
  1. static/index.css +27 -0
static/index.css ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .loader {
3
+ border: 16px solid #f3f3f3;
4
+ /* Light grey */
5
+ border-top: 16px solid #3498db;
6
+ /* Blue */
7
+ border-radius: 50%;
8
+ width: 120px;
9
+ height: 120px;
10
+ animation: spin 2s linear infinite;
11
+ display: none;
12
+ /* Initially hidden */
13
+ position: absolute;
14
+ top: 50%;
15
+ left: 50%;
16
+ transform: translate(-50%, -50%);
17
+ }
18
+
19
+ @keyframes spin {
20
+ 0% {
21
+ transform: rotate(0deg);
22
+ }
23
+
24
+ 100% {
25
+ transform: rotate(360deg);
26
+ }
27
+ }