You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

  1. html {
  2. box-sizing: border-box;
  3. height: 100%;
  4. }
  5. *, *:before, *:after {
  6. box-sizing: inherit;
  7. }
  8. [v-cloak], .is-hidden {
  9. display: none;
  10. }
  11. #root {
  12. position: relative;
  13. min-height: 100%;
  14. &.is-fullscreen {
  15. height: 100vh;
  16. }
  17. }
  18. @for $i from 0 through 25 {
  19. .radius-#{$i} {
  20. border-radius: #{$i}px;
  21. }
  22. }
  23. @for $i from 1 through 5 {
  24. .grey.darken-2-d#{$i} {
  25. background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  26. border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  27. }
  28. .grey.darken-2-l#{$i} {
  29. background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  30. border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  31. }
  32. .grey.darken-3-d#{$i} {
  33. background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  34. border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  35. }
  36. .grey.darken-3-l#{$i} {
  37. background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  38. border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  39. }
  40. .grey.darken-4-d#{$i} {
  41. background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  42. border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  43. }
  44. .grey.darken-4-l#{$i} {
  45. background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  46. border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  47. }
  48. }