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
| .loader-background
| {
| display:block;
| position:absolute;
| width: 100%;
| height:100%;
| top:0px;
| left: 0px;
| margin: 0px;
| padding: 0px;
| background-color: #111111;
| /*filter:alpha(opacity=30);
| -moz-opacity:0.3;
| -khtml-opacity: 0.3;
| opacity: 0.3;*/
| z-index: 10005;
| }
| .loader-content
| {
| display:block;
| width: 200px;
| height:55px;
| border: 3px solid #006666;
| color:#1794CC;
| background-color: #FFffff;
| z-index: 10006;
| position: absolute;
| background-image: url("../../assets/images/loadingAnimation.gif");
| background-position: center 7px;
| background-repeat: no-repeat;
| font-family: '���ź�';
| }
| .loader-text
| {
| position: absolute;
| display: inline-block;
| bottom: 10px;
| width: 100%;
| text-align:center;
| }
|
|