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.

124 lines
1.6 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. #root {
  13. padding-bottom: 67px;
  14. position: relative;
  15. min-height: 100%;
  16. }
  17. body {
  18. background-color: lighten(mc('blue-grey','50'), 5%);
  19. height: 100%;
  20. }
  21. main {
  22. background-color: lighten(mc('blue-grey','50'), 5%);
  23. }
  24. a {
  25. color: mc('indigo', '600');
  26. text-decoration: none;
  27. &:hover {
  28. color: mc('indigo', '700');
  29. text-decoration: underline;
  30. }
  31. }
  32. // Container
  33. .has-stickynav {
  34. padding-top: 50px;
  35. }
  36. .container {
  37. position: relative;
  38. @include desktop {
  39. margin: 0 auto;
  40. max-width: 960px;
  41. // Modifiers
  42. &.is-fluid {
  43. margin: 0;
  44. max-width: none;
  45. }
  46. }
  47. @include widescreen {
  48. max-width: 1200px;
  49. }
  50. }
  51. .content {
  52. padding: 20px;
  53. }
  54. // Visibility
  55. .is-hidden {
  56. display: none !important;
  57. }
  58. .is-hidden-until-scroll {
  59. max-height: 0;
  60. overflow: hidden;
  61. transition: all .6s ease;
  62. }
  63. .is-sticky .is-hidden-until-scroll {
  64. max-height: 30px;
  65. }
  66. .is-hidden-mobile {
  67. @include mobile {
  68. display: none !important;
  69. }
  70. }
  71. .is-hidden-tablet {
  72. @include tablet {
  73. display: none !important;
  74. }
  75. }
  76. .is-hidden-tablet-only {
  77. @include tablet-only {
  78. display: none !important;
  79. }
  80. }
  81. .is-hidden-touch {
  82. @include touch {
  83. display: none !important;
  84. }
  85. }
  86. .is-hidden-desktop {
  87. @include desktop {
  88. display: none !important;
  89. }
  90. }
  91. .is-hidden-desktop-only {
  92. @include desktop-only {
  93. display: none !important;
  94. }
  95. }
  96. .is-hidden-widescreen {
  97. @include widescreen {
  98. display: none !important;
  99. }
  100. }