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.

86 lines
2.3 KiB

5 years ago
  1. html {
  2. box-sizing: border-box;
  3. height: 100%;
  4. overflow-y: auto !important;
  5. }
  6. *, *:before, *:after {
  7. box-sizing: inherit;
  8. }
  9. [v-cloak], .is-hidden {
  10. display: none;
  11. }
  12. #root {
  13. position: relative;
  14. min-height: 100%;
  15. &.is-fullscreen {
  16. height: 100vh;
  17. }
  18. }
  19. .v-application--wrap {
  20. transition: all 1.2s ease;
  21. transform-origin: 50% 50%;
  22. // background-color: #FFF;
  23. @at-root .theme--dark & {
  24. background-color: mc('grey', '900');
  25. }
  26. }
  27. #root .v-application {
  28. .overline {
  29. line-height: 1rem;
  30. font-size: .625rem!important;
  31. font-weight: 400;
  32. letter-spacing: .1666666667em!important;
  33. }
  34. @for $i from 0 through 25 {
  35. .radius-#{$i} {
  36. border-radius: #{$i}px;
  37. }
  38. }
  39. @for $i from 1 through 5 {
  40. .grey.darken-2-d#{$i} {
  41. background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  42. border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  43. }
  44. .grey.darken-2-l#{$i} {
  45. background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  46. border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  47. }
  48. .grey.darken-3-d#{$i} {
  49. background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  50. border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  51. }
  52. .grey.darken-3-l#{$i} {
  53. background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  54. border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  55. }
  56. .grey.darken-4-d#{$i} {
  57. background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  58. border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  59. }
  60. .grey.darken-4-l#{$i} {
  61. background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  62. border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  63. }
  64. }
  65. .grey.darken-5 {
  66. background-color: #0C0C0C !important;
  67. border-color: #0C0C0C !important;
  68. }
  69. .blue.darken-5 {
  70. background-color: darken(mc('blue', '900'), 20%) !important;
  71. border-color: darken(mc('blue', '900'), 20%) !important;
  72. }
  73. .indigo.darken-5 {
  74. background-color: darken(mc('indigo', '900'), 10%) !important;
  75. border-color: darken(mc('indigo', '900'), 10%) !important;
  76. }
  77. }