custom.scss 626 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. #hs-app {
  6. position: relative;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. .hsl {
  11. .cursor-pointer {
  12. cursor: pointer;
  13. }
  14. .loader-splash {
  15. font-family: Arial, Helvetica, sans-serif; /* temporary workaround*/
  16. height: 100%;
  17. width: 100%;
  18. position: absolute;
  19. z-index: 1010;
  20. top: 0;
  21. left: 0;
  22. background-color: rgba(65,65,65,.66);
  23. }
  24. .loader-splash > div {
  25. position: relative;
  26. margin-top: 20%;
  27. }
  28. .loader-splash h1 {
  29. color: #77bbff;
  30. }
  31. .loader-splash .spinner {
  32. width: 10vh;
  33. height: 10vh;
  34. color: #77bbff;
  35. }
  36. .center-block {
  37. text-align: center;
  38. margin-bottom: 1em;
  39. }
  40. }