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.

67 lines
1.7 KiB

  1. html {
  2. box-sizing: border-box;
  3. height: 100%;
  4. perspective: 50vw;
  5. background-color: mc('grey', '900');
  6. }
  7. *, *:before, *:after {
  8. box-sizing: inherit;
  9. }
  10. [v-cloak], .is-hidden {
  11. display: none;
  12. }
  13. #root {
  14. position: relative;
  15. min-height: 100%;
  16. &.is-fullscreen {
  17. height: 100vh;
  18. }
  19. }
  20. .application--wrap {
  21. transition: all 1.2s ease;
  22. transform-style: preserve-3d;
  23. transform-origin: 50% 50%;
  24. background-color: #FFF;
  25. @at-root .theme--dark & {
  26. background-color: mc('grey', '900');
  27. }
  28. }
  29. @for $i from 0 through 25 {
  30. .radius-#{$i} {
  31. border-radius: #{$i}px;
  32. }
  33. }
  34. @for $i from 1 through 5 {
  35. .grey.darken-2-d#{$i} {
  36. background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  37. border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  38. }
  39. .grey.darken-2-l#{$i} {
  40. background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  41. border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  42. }
  43. .grey.darken-3-d#{$i} {
  44. background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  45. border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  46. }
  47. .grey.darken-3-l#{$i} {
  48. background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  49. border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  50. }
  51. .grey.darken-4-d#{$i} {
  52. background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  53. border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  54. }
  55. .grey.darken-4-l#{$i} {
  56. background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  57. border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  58. }
  59. }