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.

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