_loading.scss 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #loading {
  2. display: none;
  3. position: fixed;
  4. width: 100%;
  5. height: 3px;
  6. background-size: 100px 3px;
  7. background-repeat: repeat-x;
  8. border-bottom: 1px solid black(.3);
  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. }