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.

105 lines
1.5 KiB

  1. html {
  2. box-sizing: border-box;
  3. font-family: $core-font-standard;
  4. height: 100%;
  5. }
  6. *, *:before, *:after {
  7. box-sizing: inherit;
  8. }
  9. [v-cloak], .is-hidden {
  10. display: none;
  11. }
  12. #app {
  13. position: relative;
  14. min-height: 100%;
  15. &.is-fullscreen {
  16. height: 100vh;
  17. }
  18. }
  19. // body {
  20. // background-color: lighten(mc('blue-grey','50'), 5%);
  21. // height: 100%;
  22. // }
  23. // main {
  24. // background-color: mc('blue','500');
  25. // background-image: linear-gradient(to bottom, mc('blue', '700') 0%, mc('blue', '500') 100%);
  26. // padding: 50px;
  27. // min-height: 100vh;
  28. // }
  29. // Container
  30. .container {
  31. position: relative;
  32. }
  33. .content {
  34. padding: 20px;
  35. }
  36. .datatable {
  37. th, td {
  38. vertical-align: middle;
  39. }
  40. }
  41. // Visibility
  42. .is-hidden {
  43. display: none !important;
  44. }
  45. .is-hidden-until-scroll {
  46. max-height: 0;
  47. overflow: hidden;
  48. transition: all .6s ease;
  49. }
  50. .is-sticky .is-hidden-until-scroll {
  51. max-height: 30px;
  52. }
  53. .is-hidden-mobile {
  54. @include mobile {
  55. display: none !important;
  56. }
  57. }
  58. .is-hidden-tablet {
  59. @include tablet {
  60. display: none !important;
  61. }
  62. }
  63. .is-hidden-tablet-only {
  64. @include tablet-only {
  65. display: none !important;
  66. }
  67. }
  68. .is-hidden-touch {
  69. @include touch {
  70. display: none !important;
  71. }
  72. }
  73. .is-hidden-desktop {
  74. @include desktop {
  75. display: none !important;
  76. }
  77. }
  78. .is-hidden-desktop-only {
  79. @include desktop-only {
  80. display: none !important;
  81. }
  82. }
  83. .is-hidden-widescreen {
  84. @include widescreen {
  85. display: none !important;
  86. }
  87. }