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.

92 lines
2.4 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. @media only screen and (min-width:960px) {
  28. .v-application .v-footer {
  29. padding-left: 272px
  30. }
  31. }
  32. #root .v-application {
  33. .overline {
  34. line-height: 1rem;
  35. font-size: .625rem!important;
  36. font-weight: 400;
  37. letter-spacing: .1666666667em!important;
  38. }
  39. @for $i from 0 through 25 {
  40. .radius-#{$i} {
  41. border-radius: #{$i}px;
  42. }
  43. }
  44. @for $i from 1 through 5 {
  45. .grey.darken-2-d#{$i} {
  46. background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  47. border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  48. }
  49. .grey.darken-2-l#{$i} {
  50. background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  51. border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  52. }
  53. .grey.darken-3-d#{$i} {
  54. background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  55. border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  56. }
  57. .grey.darken-3-l#{$i} {
  58. background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  59. border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  60. }
  61. .grey.darken-4-d#{$i} {
  62. background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  63. border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  64. }
  65. .grey.darken-4-l#{$i} {
  66. background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  67. border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  68. }
  69. }
  70. .grey.darken-5 {
  71. background-color: #0C0C0C !important;
  72. border-color: #0C0C0C !important;
  73. }
  74. .blue.darken-5 {
  75. background-color: darken(mc('blue', '900'), 20%) !important;
  76. border-color: darken(mc('blue', '900'), 20%) !important;
  77. }
  78. .indigo.darken-5 {
  79. background-color: darken(mc('indigo', '900'), 10%) !important;
  80. border-color: darken(mc('indigo', '900'), 10%) !important;
  81. }
  82. }