_loading.scss 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #loading {
  2. position: fixed;
  3. width: 100%;
  4. height: 3px;
  5. background-size: 100px 3px;
  6. background-repeat: repeat-x;
  7. border-bottom: 1px solid black(.3);
  8. display: none;
  9. animation-name: moveBackground;
  10. animation-duration: .3s;
  11. animation-iteration-count: infinite;
  12. animation-timing-function: linear;
  13. /* Modes ------------------------------------------------*/
  14. &.loading {
  15. height: 3px;
  16. background-image: linear-gradient(to right, #153674 0%, #153674 47%, #2651AE 53%, #2651AE 100%);
  17. z-index: 2;
  18. }
  19. &.error {
  20. height: 40px;
  21. background-color: #2f0d0e;
  22. background-image: linear-gradient(to right, #451317 0%, #451317 47%, #AA3039 53%, #AA3039 100%);
  23. z-index: 1;
  24. }
  25. /* Content ------------------------------------------------*/
  26. h1 {
  27. margin: 13px 13px 0 13px;
  28. color: #ddd;
  29. font-size: 14px;
  30. font-weight: bold;
  31. text-shadow: 0 1px 0 black(1);
  32. text-transform: capitalize;
  33. span {
  34. margin-left: 10px;
  35. font-weight: normal;
  36. text-transform: none;
  37. }
  38. }
  39. }