blob: db803fa9e0b61fad7046c7aec1a9e493c2e89a52 (
plain)
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
|
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body, html {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
background: #eeeeee;
font-family: pfd, sans-serif;
font-size: 12px;
}
.loader {
z-index: 2;
width: 80px;
height: 80px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -40px;
margin-left: -40px;
display: none;
}
.loader:before {
content: '';
border-radius: 50%;
border-top: 3px solid #fff;
border-right: 3px solid transparent;
animation: loading .5s linear infinite;
-webkit-animation: loading .5s linear infinite;
width: 80px;
height: 80px;
display: block;
}
@keyframes loading {
to {transform: rotate(360deg)}
}
@-webkit-keyframes loading {
to {-webkit-transform: rotate(360deg)}
}
|