cirandas.net

ref: master

public/stylesheets/loading.scss


 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
.loading {
  cursor: progress;
  background: transparent url(../images/loading.gif) no-repeat scroll center 50px;
}
.small-loading {
  cursor: progress;
  background: transparent url(../images/loading-small.gif) no-repeat 10% center;
}
.small-loading-dark {
  cursor: progress;
  background: transparent url(../images/loading-small-dark.gif) no-repeat 10% center;
}
#overlay_loading {
  z-index: 10000;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}
#overlay_loading_modal {
  z-index: 10001;
  width: 160px;
  height: 120px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -80px;
  background-color: #555;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  cursor: progress;
}
#overlay_loading_modal p {
  color: #DDD;
}
.loading-area {
  display: inline-table;
  width: 16px;
  height: 16px;
}

.fetching {
  opacity: 0.3;
}

.fetching-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10%;
  text-align: center;
  font-size: 200%;
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 10px #FFF;
}