-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathload.css
More file actions
66 lines (55 loc) · 1.26 KB
/
load.css
File metadata and controls
66 lines (55 loc) · 1.26 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
58
59
60
61
62
63
64
65
66
/*
//==============================================================================
//loadingscreen//
//==============================================================================
*/
div.m-app-loading {
position: fixed;
}
div.m-app-loading div.animated-container {
background-color: #424242;
bottom: 0px;
left: 0px;
opacity: 1.0;
position: fixed;
right: 0px;
top: 0px;
z-index: 999999;
}
/* Used to initialize the ng-leave animation state. */
div.m-app-loading div.animated-container.ng-leave {
opacity: 1.0;
transition: all linear 200ms;
-webkit-transition: all linear 200ms;
}
/* Used to set the end properties of the ng-leave animation state. */
div.m-app-loading div.animated-container.ng-leave-active {
opacity: 0;
}
div.m-app-loading div.messaging {
font-family: sans-serif;
color: #FFFFFF;
left: 0px;
margin-top: -37px;
position: absolute;
right: 0px;
text-align: center;
top: 50%;
}
div.m-app-loading h1 {
font-size: 26px;
line-height: 35px;
margin: 2em 0px 20px 0px;
}
div.m-app-loading p {
font-size: 18px;
line-height: 14px;
margin: 0px 0px 0px 0px;
}
div.m-app-loading img {
position: absolute;
width: 10em;
margin-left: 50%;
left: -5em;
top: 30%;
}