-
Notifications
You must be signed in to change notification settings - Fork 0
/
PerfiLoader.less
51 lines (44 loc) · 1.27 KB
/
PerfiLoader.less
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
@imgPath: 'images';
.perfi-loader-preloader{
display: block;
position: absolute;
z-index: 999;
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.8);
.perfi-loader-preloader-image{
display: block;
width: 32px;
height: 32px;
margin: auto;
background: url("@{imgPath}/preloader32.gif") no-repeat;
}
&.preloader16 {
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.97);
.perfi-loader-preloader-image {
background: url("@{imgPath}/preloader16.gif") no-repeat;
width: 16px;
height: 16px;
}
}
&.preloader32 {
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
.perfi-loader-preloader-image {
background: url("@{imgPath}/preloader32.gif") no-repeat;
width: 32px;
height: 32px;
}
}
&.preloader64 {
.perfi-loader-preloader-image {
background: url("@{imgPath}/preloader64.gif") no-repeat;
width: 64px;
height: 64px;
}
}
&.preloader128 {
.perfi-loader-preloader-image {
background: url("@{imgPath}/preloader128.gif") no-repeat;
width: 128px;
height: 128px;
}
}
}