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.

107 lines
1.3 KiB

  1. html {
  2. box-sizing: border-box;
  3. font-family: $core-font-standard;
  4. }
  5. *, *:before, *:after {
  6. box-sizing: inherit;
  7. }
  8. [v-cloak], .is-hidden {
  9. display: none;
  10. }
  11. body {
  12. background-color: mc('blue-grey','100');
  13. }
  14. main {
  15. background-color: #FFF;
  16. }
  17. a {
  18. color: mc('indigo', '600');
  19. text-decoration: none;
  20. &:hover {
  21. color: mc('indigo', '700');
  22. text-decoration: underline;
  23. }
  24. }
  25. // Container
  26. .has-stickynav {
  27. padding-top: 50px;
  28. }
  29. .container {
  30. position: relative;
  31. @include desktop {
  32. margin: 0 auto;
  33. max-width: 960px;
  34. // Modifiers
  35. &.is-fluid {
  36. margin: 0;
  37. max-width: none;
  38. }
  39. }
  40. @include widescreen {
  41. max-width: 1200px;
  42. }
  43. }
  44. .content {
  45. padding: 20px;
  46. }
  47. // Visibility
  48. .is-hidden {
  49. display: none !important;
  50. }
  51. .is-hidden-mobile {
  52. @include mobile {
  53. display: none !important;
  54. }
  55. }
  56. .is-hidden-tablet {
  57. @include tablet {
  58. display: none !important;
  59. }
  60. }
  61. .is-hidden-tablet-only {
  62. @include tablet-only {
  63. display: none !important;
  64. }
  65. }
  66. .is-hidden-touch {
  67. @include touch {
  68. display: none !important;
  69. }
  70. }
  71. .is-hidden-desktop {
  72. @include desktop {
  73. display: none !important;
  74. }
  75. }
  76. .is-hidden-desktop-only {
  77. @include desktop-only {
  78. display: none !important;
  79. }
  80. }
  81. .is-hidden-widescreen {
  82. @include widescreen {
  83. display: none !important;
  84. }
  85. }