jxdnsong
2020-10-23 28ac4020a0baf5d369f472fa4fb309e78283bc0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#main-loading{
  background-color: #508dca;
  position: relative;
}
 
#main-loading #app-loading{
  position: absolute;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 
#main-loading #loading-gif{
  position: absolute;
  background-image: url('images/predefined_loading_1.gif');
  background-repeat: no-repeat;
  width: 58px;
  height: 29px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}