loading.css 492 Bytes
Newer Older
藤川諒 committed
1 2 3 4 5 6 7 8 9 10
@charset "UTF-8";

/**************************** loading *************************/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
Kim Peace committed
11
  background: rgb(255, 255, 255, 0.5);
藤川諒 committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
  z-index: 2;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 999;
}
Kim Peace committed
27
.fa.fa-circle-o-notch {
藤川諒 committed
28 29
  color: #707070;
}