load.css 626 B

1234567891011121314151617181920212223242526272829303132
  1. .mask{
  2. width: 100%;
  3. height: 100%;
  4. background-color: rgba(242,242,242, 0.5);
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. text-align: center;
  9. display: -webkit-flex;
  10. display: flex;
  11. -webkit-align-items: center;
  12. align-items: center;
  13. -webkit-justify-content: center;
  14. justify-content: center;
  15. }
  16. .mask>div{
  17. border: 1px solid #D0D0D0;
  18. font-size: 12px;
  19. padding: 5px 15px;
  20. max-width: 150px;
  21. color: #494A5F;
  22. background: url(loading.gif) no-repeat 5px 5px;
  23. padding-left: 25px;
  24. background-color: #FFFFFF;
  25. word-wrap: break-word;
  26. margin: 0 auto;
  27. }
  28. /*.scroll-off{*/
  29. /* position:fixed;*/
  30. /* overflow-y:hidden*/
  31. /*}*/