nnnjjj123
2020-11-13 73104e1337213ce908faa3b94c86b23dcc4836ed
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%);
}