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.

115 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. #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-mobile {
  59. @include mobile {
  60. display: none !important;
  61. }
  62. }
  63. .is-hidden-tablet {
  64. @include tablet {
  65. display: none !important;
  66. }
  67. }
  68. .is-hidden-tablet-only {
  69. @include tablet-only {
  70. display: none !important;
  71. }
  72. }
  73. .is-hidden-touch {
  74. @include touch {
  75. display: none !important;
  76. }
  77. }
  78. .is-hidden-desktop {
  79. @include desktop {
  80. display: none !important;
  81. }
  82. }
  83. .is-hidden-desktop-only {
  84. @include desktop-only {
  85. display: none !important;
  86. }
  87. }
  88. .is-hidden-widescreen {
  89. @include widescreen {
  90. display: none !important;
  91. }
  92. }