loading.css 467 B

12345678910111213141516171819202122232425262728293031
  1. html,body{
  2. width:100%;
  3. height:100%;
  4. margin:0;
  5. padding:0;
  6. }
  7. .loading
  8. {
  9. width:50%;
  10. height:20px;
  11. background-color:white;
  12. border:4px solid #21b0fc;
  13. border-radius:20px;
  14. z-index:2;
  15. position: relative;
  16. }
  17. .bar
  18. {
  19. width:1%;
  20. height:80%;
  21. position:relative;
  22. left:2px;
  23. top:2px;
  24. text-align:right;
  25. background-color:#21b0fc;
  26. border-radius:10px;
  27. color:White;
  28. }