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.

79 lines
2.1 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. .v-application {
  28. @for $i from 0 through 25 {
  29. .radius-#{$i} {
  30. border-radius: #{$i}px;
  31. }
  32. }
  33. @for $i from 1 through 5 {
  34. .grey.darken-2-d#{$i} {
  35. background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  36. border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
  37. }
  38. .grey.darken-2-l#{$i} {
  39. background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  40. border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
  41. }
  42. .grey.darken-3-d#{$i} {
  43. background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  44. border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
  45. }
  46. .grey.darken-3-l#{$i} {
  47. background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  48. border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
  49. }
  50. .grey.darken-4-d#{$i} {
  51. background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  52. border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
  53. }
  54. .grey.darken-4-l#{$i} {
  55. background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  56. border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
  57. }
  58. }
  59. .grey.darken-5 {
  60. background-color: #0C0C0C !important;
  61. border-color: #0C0C0C !important;
  62. }
  63. .blue.darken-5 {
  64. background-color: darken(mc('blue', '900'), 20%) !important;
  65. border-color: darken(mc('blue', '900'), 20%) !important;
  66. }
  67. .indigo.darken-5 {
  68. background-color: darken(mc('indigo', '900'), 10%) !important;
  69. border-color: darken(mc('indigo', '900'), 10%) !important;
  70. }
  71. }