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.

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