@appdirect/sfb-theme-plaza 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +3 -0
  3. package/assets/css/platform-global/global-index.scss +1 -0
  4. package/assets/css/theme/components/_sticky-button-page-scroll.scss +15 -0
  5. package/assets/css/theme/definitions/_accessibility.scss +42 -0
  6. package/assets/css/theme/definitions/_colors.scss +58 -0
  7. package/assets/css/theme/definitions/_functions.scss +11 -0
  8. package/assets/css/theme/definitions/_mixins.scss +111 -0
  9. package/assets/css/theme/definitions/_typography.scss +48 -0
  10. package/assets/css/theme/definitions/_variables.scss +7 -0
  11. package/assets/css/theme/generic/_default.scss +126 -0
  12. package/assets/css/theme/generic/_normalize.scss +351 -0
  13. package/assets/css/theme/grid/_bootstrap-grid.scss +32 -0
  14. package/assets/css/theme/grid/_functions.scss +49 -0
  15. package/assets/css/theme/grid/_grid.scss +52 -0
  16. package/assets/css/theme/grid/_mock-grid.scss +36 -0
  17. package/assets/css/theme/grid/_variables.scss +42 -0
  18. package/assets/css/theme/layout/_reset.scss +5 -0
  19. package/assets/css/theme/mixins/_breakpoints.scss +123 -0
  20. package/assets/css/theme/mixins/_grid-framework.scss +67 -0
  21. package/assets/css/theme/mixins/_grid.scss +52 -0
  22. package/assets/css/theme/mixins/_scroll-button.scss +17 -0
  23. package/assets/css/theme/pages/_bundle.scss +10 -0
  24. package/assets/css/theme/pages/_listing.scss +3 -0
  25. package/assets/css/theme/pages/_product.scss +3 -0
  26. package/assets/css/theme/pages/_profile.scss +89 -0
  27. package/assets/css/theme/theme-index.scss +9 -0
  28. package/assets/css/theme/utilities/_display.scss +38 -0
  29. package/assets/css/theme/utilities/_flex.scss +51 -0
  30. package/assets/fonts/AppDirectIcons.woff +0 -0
  31. package/assets/fonts/slick/slick.eot +0 -0
  32. package/assets/fonts/slick/slick.svg +14 -0
  33. package/assets/fonts/slick/slick.ttf +0 -0
  34. package/assets/fonts/slick/slick.woff +0 -0
  35. package/assets/images/logo_white_2x.png +0 -0
  36. package/assets/js/listing.js +26 -0
  37. package/assets/js/polyfills/ie11CustomProperties.js +2 -0
  38. package/content/layout/base.html +80 -0
  39. package/content/layout/bundle.html +12 -0
  40. package/content/layout/profile.html +22 -0
  41. package/content/macros/profile/profile-navigation.html +38 -0
  42. package/content/macros/sfb-components-bundles.html +26 -0
  43. package/content/macros/sfb-custom-components-bundles.html +6 -0
  44. package/content/pages/bundle/bundle.html +9 -0
  45. package/content/pages/compare/compare.html +14 -0
  46. package/content/pages/error/error.html +49 -0
  47. package/content/pages/help/help.html +15 -0
  48. package/content/pages/home/home.html +14 -0
  49. package/content/pages/listing/listing-items.html +1 -0
  50. package/content/pages/listing/listing.html +25 -0
  51. package/content/pages/orderConfirmation/orderConfirmation.html +7 -0
  52. package/content/pages/profile/profile-add-lead.html +13 -0
  53. package/content/pages/profile/profile-add-question.html +13 -0
  54. package/content/pages/profile/profile-add-review.html +13 -0
  55. package/content/pages/profile/profile-configure.html +15 -0
  56. package/content/pages/profile/profile-cross-sell-management.html +12 -0
  57. package/content/pages/profile/profile-editions.html +17 -0
  58. package/content/pages/profile/profile-features.html +14 -0
  59. package/content/pages/profile/profile-questions.html +14 -0
  60. package/content/pages/profile/profile-resources.html +14 -0
  61. package/content/pages/profile/profile-reviews.html +14 -0
  62. package/content/pages/profile/profile-standaloneDomains.html +22 -0
  63. package/content/pages/profile/profile-support.html +15 -0
  64. package/content/pages/profile/profile-variants.html +15 -0
  65. package/content/pages/profile/profile.html +24 -0
  66. package/design-properties.json +18 -0
  67. package/editor-properties.json +231 -0
  68. package/env-data.json +2 -0
  69. package/header-footer/checkout.html +14 -0
  70. package/header-footer/css/footer/_INDEX.scss +264 -0
  71. package/header-footer/css/header-components/_INDEX.scss +11 -0
  72. package/header-footer/css/header-components/_MPLogo.scss +47 -0
  73. package/header-footer/css/header-components/_cart.scss +514 -0
  74. package/header-footer/css/header-components/_dropdown.scss +110 -0
  75. package/header-footer/css/header-components/_header.scss +85 -0
  76. package/header-footer/css/header-components/_icons.scss +123 -0
  77. package/header-footer/css/header-components/_mobile-menu.scss +46 -0
  78. package/header-footer/css/header-components/_myapps-dropdown.scss +111 -0
  79. package/header-footer/css/header-components/_notifications.scss +50 -0
  80. package/header-footer/css/header-components/_responsive.scss +78 -0
  81. package/header-footer/css/header-components/_search-bar.scss +17 -0
  82. package/header-footer/css/header-components/_tooltips.scss +60 -0
  83. package/header-footer/css/header-index.scss +4 -0
  84. package/header-footer/css/settings/_INDEX.scss +3 -0
  85. package/header-footer/css/settings/_custom-variables.scss +70 -0
  86. package/header-footer/css/settings/_font-icons.scss +53 -0
  87. package/header-footer/css/settings/_static-variables.scss +24 -0
  88. package/header-footer/footer.html +53 -0
  89. package/header-footer/logged-in.html +37 -0
  90. package/header-footer/logged-out.html +25 -0
  91. package/header-footer/sso.html +14 -0
  92. package/package.json +15 -0
  93. package/settings-schema.json +4 -0
  94. package/settings.json +1873 -0
  95. package/translations/cs-cz.yml +136 -0
  96. package/translations/cs.yml +136 -0
  97. package/translations/da-dk.yml +136 -0
  98. package/translations/da.yml +136 -0
  99. package/translations/de-de.yml +136 -0
  100. package/translations/de.yml +136 -0
  101. package/translations/el-gr.yml +136 -0
  102. package/translations/en-us.yml +177 -0
  103. package/translations/es-es.yml +136 -0
  104. package/translations/es-la.yml +136 -0
  105. package/translations/es.yml +136 -0
  106. package/translations/fi-fi.yml +136 -0
  107. package/translations/fi.yml +136 -0
  108. package/translations/fr-ca.yml +136 -0
  109. package/translations/fr-fr.yml +136 -0
  110. package/translations/fr.yml +136 -0
  111. package/translations/hr-hr.yml +136 -0
  112. package/translations/hr.yml +136 -0
  113. package/translations/hu-hu.yml +136 -0
  114. package/translations/hu.yml +136 -0
  115. package/translations/id-id.yml +136 -0
  116. package/translations/it-it.yml +136 -0
  117. package/translations/it.yml +136 -0
  118. package/translations/ja-jp.yml +136 -0
  119. package/translations/ja.yml +136 -0
  120. package/translations/ko-kr.yml +136 -0
  121. package/translations/ko.yml +136 -0
  122. package/translations/lt-lt.yml +136 -0
  123. package/translations/lt.yml +136 -0
  124. package/translations/nl-nl.yml +136 -0
  125. package/translations/nl.yml +136 -0
  126. package/translations/no-no.yml +136 -0
  127. package/translations/no.yml +136 -0
  128. package/translations/pt-br.yml +136 -0
  129. package/translations/pt.yml +136 -0
  130. package/translations/ru-ru.yml +136 -0
  131. package/translations/ru.yml +136 -0
  132. package/translations/sq-al.yml +136 -0
  133. package/translations/sq.yml +136 -0
  134. package/translations/sv-se.yml +136 -0
  135. package/translations/sv.yml +136 -0
  136. package/translations/th-th.yml +136 -0
  137. package/translations/th.yml +136 -0
  138. package/translations/tr-tr.yml +136 -0
  139. package/translations/tr.yml +136 -0
  140. package/translations/zh-cn.yml +136 -0
  141. package/translations/zh-tw.yml +136 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # CHANGELOG
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.0.44] - (2021-07-30)
8
+
9
+ #### Added
10
+ - Added menus support [126](https://github.com/AppDirect/sfb-theme-mp2/pull/126)
11
+
12
+ #### Added
13
+ - Added cross-selling page under profile, for cross-selling domains with products [124](https://github.com/AppDirect/sfb-theme-mp2/pull/124)
14
+
15
+
16
+ #### Fixed
17
+ - Fixed issue with cart label overlapping wit the cart icon [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
18
+ - Cart icon will show below 1280px, instead of cart label [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
19
+ - Fixed issue with the search bar not having enough space/width to be usable for smaller screens [122](https://github.com/AppDirect/sfb-theme-mp2/pull/122)
20
+
21
+ #### Added
22
+ - Added noIndex meta tag to prevent getting indexed by search engine [123](https://github.com/AppDirect/sfb-theme-mp2/pull/123)
23
+
24
+ #### Added
25
+ - Added scroll to top button to Home and Product profile page [121](https://github.com/AppDirect/sfb-theme-mp2/pull/121)
26
+
27
+ ## [0.0.43] - (2021-04-12)
28
+ #### Fixed
29
+ - Added missing localized strings for light and dark logos [120](https://github.com/AppDirect/sfb-theme-mp2/pull/120)
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Plaza theme
2
+
3
+ A modern theme built with react components that can be customized with Storefront Builder.
@@ -0,0 +1 @@
1
+ .test {display:block;}
@@ -0,0 +1,15 @@
1
+ @import '../../theme/mixins/scroll-button';
2
+
3
+ .stickyButtonPageScroll {
4
+ &_wrapper {
5
+ // Have higher z-index than cms toolbar on the right side
6
+ z-index: 100000;
7
+
8
+
9
+ .buttonPageScroll {
10
+ &_button {
11
+ @include scroll-button-offset-position;
12
+ }
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,42 @@
1
+ // Only display content to screen readers
2
+ //
3
+ // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
4
+ // See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
5
+
6
+ @mixin sr-only() {
7
+ position: absolute;
8
+ width: 1px;
9
+ height: 1px;
10
+ padding: 0;
11
+ margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686
12
+ overflow: hidden;
13
+ clip: rect(0, 0, 0, 0);
14
+ white-space: nowrap;
15
+ border: 0;
16
+ }
17
+
18
+ // Use in conjunction with .sr-only to only display content when it's focused.
19
+ //
20
+ // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
21
+ //
22
+ // Credit: HTML5 Boilerplate
23
+
24
+ @mixin sr-only-focusable() {
25
+ &:active,
26
+ &:focus {
27
+ position: static;
28
+ width: auto;
29
+ height: auto;
30
+ overflow: visible;
31
+ clip: auto;
32
+ white-space: normal;
33
+ }
34
+ }
35
+
36
+ .sr-only {
37
+ @include sr-only();
38
+ }
39
+
40
+ .sr-only-focusable {
41
+ @include sr-only-focusable();
42
+ }
@@ -0,0 +1,58 @@
1
+ @import 'functions';
2
+
3
+ // general colors
4
+
5
+ $deep-gray: #474747;
6
+ $dark-gray: #707070;
7
+ $gray: #CACACA;
8
+ $mid-gray: #EAEAEA;
9
+ $light-gray: #F4F4F4;
10
+ $faint-gray: #F8F8F8;
11
+ $faint-light-gray: #F9F9F9;
12
+
13
+ $white: #ffffff;
14
+
15
+ // button colors
16
+
17
+ $btn-primary-color: #FFFFFF;
18
+ $btn-primary-bg: #009DDB;
19
+ $btn-primary-border: #0084BC;
20
+
21
+ $btn-secondary-color: #474747;
22
+ $btn-secondary-bg: #F1F1F1;
23
+ $btn-secondary-border: #CDCDCD;
24
+
25
+ $btn-emphasis-color: #FFFFFF;
26
+ $btn-emphasis-bg: #35A800;
27
+ $btn-emphasis-border: #278F00;
28
+
29
+ $btn-emphasisAlt-color: #FFFFFF;
30
+ $btn-emphasisAlt-bg: #FB641B;
31
+ $btn-emphasisAlt-border: #D75500;
32
+
33
+ $btn-box-shadow: 0 2px 2px 0 rgba(112,112,112,0.3);
34
+
35
+ /*
36
+ __mixins
37
+ */
38
+ @mixin button-colors-active($bg, $border) {
39
+ background-color: shade($bg, $shader-step);
40
+ border-color: shade($border, $shader-step);
41
+ }
42
+ @mixin button-colors-hover($bg, $border) {
43
+ background-color: tint($bg, $shader-step);
44
+ border-color: tint($border, $shader-step);
45
+ box-shadow: $btn-box-shadow;
46
+ }
47
+ @mixin button-colors($bg, $border) {
48
+ background-color: $bg;
49
+ border: 1px solid $border;
50
+
51
+ &:active {
52
+ @include button-colors-active($bg, $border);
53
+ }
54
+ &:hover {
55
+ @include button-colors-hover($bg, $border);
56
+ }
57
+ }
58
+
@@ -0,0 +1,11 @@
1
+ $shader-step: 15%;
2
+
3
+ /// Add percentage of black to a color
4
+ @function shade($color, $percent) {
5
+ @return mix(#000000, $color, $percent);
6
+ }
7
+
8
+ /// Add percentage of white to a color
9
+ @function tint($color, $percent) {
10
+ @return mix(#ffffff, $color, $percent);
11
+ }
@@ -0,0 +1,111 @@
1
+ @import 'colors';
2
+ @import 'typography';
3
+ @import 'variables';
4
+ @import 'accessibility';
5
+
6
+ @mixin html {
7
+ @include default($genericFontSize);
8
+ color: var(--bodyText, $deep-gray);
9
+ background-color: var(--pageBackground, $white);
10
+ scroll-behavior: smooth;
11
+ }
12
+
13
+ @mixin title-xxLarge { @include title($headingFontSizeXXLarge); }
14
+ @mixin title-xLarge { @include title($headingFontSizeXLarge); }
15
+ @mixin title-large { @include title($headingFontSizeLarge); }
16
+ @mixin title-1 { @include title($headingFontSize1); }
17
+ @mixin title-2 { @include title($headingFontSize2); }
18
+ @mixin title-3 { @include title($headingFontSize3); }
19
+ @mixin title-4 { @include title($headingFontSize4); }
20
+ @mixin title-5 { @include title($headingFontSize5); }
21
+ @mixin title-6 { @include title($headingFontSize6); }
22
+
23
+ @mixin text-1 { @include text($bodyFontSize1); }
24
+ @mixin text-2 { @include text($bodyFontSize2); }
25
+ @mixin text-3 { @include text($bodyFontSize3); }
26
+ @mixin text-4 { @include text($bodyFontSize4); }
27
+ @mixin text-5 { @include text($bodyFontSize5); }
28
+ @mixin text-6 { @include text($bodyFontSize6); }
29
+ @mixin text-lower {
30
+ text-transform: lowercase;
31
+ }
32
+
33
+ @mixin paragraph {
34
+ @include text($bodyFontSize4);
35
+ margin: 1em 0;
36
+ &:first-child {
37
+ margin-top: 0;
38
+ }
39
+ &:last-child {
40
+ margin-bottom: 0;
41
+ }
42
+ }
43
+
44
+ @mixin blockquote {
45
+ @include paragraph;
46
+ padding-left: 20px;
47
+ border-left: 4px solid $gray;
48
+ }
49
+
50
+ @mixin color-deepGray { color: $deep-gray; }
51
+ @mixin color-darkGray { color: $dark-gray; }
52
+ @mixin color-gray { color: $gray; }
53
+ @mixin color-midGray { color: $mid-gray; }
54
+ @mixin color-lightGray { color: $light-gray; }
55
+ @mixin color-faintGray { color: $faint-gray; }
56
+ @mixin color-white { color: $white; }
57
+
58
+ @mixin background-deepGray { background-color: $deep-gray; }
59
+ @mixin background-darkGray { background-color: $dark-gray; }
60
+ @mixin background-gray { background-color: $gray; }
61
+ @mixin background-midGray { background-color: $mid-gray; }
62
+ @mixin background-lightGray { background-color: $light-gray; }
63
+ @mixin background-faintGray { background-color: $faint-gray; }
64
+ @mixin background-faintLightGray { background-color: $faint-light-gray; }
65
+ @mixin background-white { background-color: $white; }
66
+
67
+ @mixin border-deepGray { border: 1px solid $deep-gray; }
68
+ @mixin border-darkGray { border: 1px solid $dark-gray; }
69
+ @mixin border-gray { border: 1px solid $gray; }
70
+ @mixin border-midGray { border: 1px solid $mid-gray; }
71
+ @mixin border-lightGray { border: 1px solid $light-gray; }
72
+ @mixin border-faintGray { border: 1px solid $faint-gray; }
73
+ @mixin border-white { border: 1px solid $white; }
74
+
75
+ @mixin radius-2 { border-radius: 2px; }
76
+ @mixin radius-3 { border-radius: 3px; }
77
+
78
+ @mixin button-primary {
79
+ @include button-colors($btn-primary-bg, $btn-primary-border);
80
+ color: $btn-primary-color;
81
+ }
82
+ @mixin button-primary-active {
83
+ @include button-colors-active($btn-primary-bg, $btn-primary-border);
84
+ }
85
+ @mixin button-secondary {
86
+ @include button-colors($btn-secondary-bg, $btn-secondary-border);
87
+ color: $btn-secondary-color;
88
+ }
89
+ @mixin button-secondary-active {
90
+ @include button-colors-active($btn-secondary-bg, $btn-secondary-border);
91
+ }
92
+ @mixin button-emphasis {
93
+ @include button-colors($btn-emphasis-bg, $btn-emphasis-border);
94
+ color: $btn-emphasis-color;
95
+ }
96
+ @mixin button-emphasis-active {
97
+ @include button-colors-active($btn-emphasis-bg, $btn-emphasis-border);
98
+ }
99
+ @mixin button-emphasisAlt {
100
+ @include button-colors($btn-emphasisAlt-bg, $btn-emphasisAlt-border);
101
+ color: $btn-emphasisAlt-color;
102
+ }
103
+ @mixin button-emphasisAlt-active {
104
+ @include button-colors-active($btn-emphasisAlt-bg, $btn-emphasisAlt-border);
105
+ }
106
+
107
+ @mixin button-disabled {
108
+ opacity: 0.5;
109
+ pointer-events: none;
110
+ cursor: default;
111
+ }
@@ -0,0 +1,48 @@
1
+ /*
2
+ __variable definitions
3
+ */
4
+
5
+ $generic-fontFace: "Helvetica Neue", Helvetica, Arial, sans-serif;
6
+
7
+ $genericFontSize: 16px;
8
+
9
+ $body-fontFace: var(--bodyFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
10
+ $header-fontFace: var(--headingFont, "Helvetica Neue", Helvetica, Arial, sans-serif);
11
+
12
+ $headingFontSizeXXLarge: calc(var(--headingBaseSize, 16px) + 26px);
13
+ $headingFontSizeXLarge: calc(var(--headingBaseSize, 16px) + 20px);
14
+ $headingFontSizeLarge: calc(var(--headingBaseSize, 16px) + 14px);
15
+ $headingFontSize1: calc(var(--headingBaseSize, 16px) + 8px);
16
+ $headingFontSize2: calc(var(--headingBaseSize, 16px) + 4px);
17
+ $headingFontSize3: calc(var(--headingBaseSize, 16px) + 2px);
18
+ $headingFontSize4: var(--headingBaseSize, 16px);
19
+ $headingFontSize5: calc(var(--headingBaseSize, 16px) + -2px);
20
+ $headingFontSize6: calc(var(--headingBaseSize, 16px) + -4px);
21
+
22
+ $bodyFontSize1: calc(var(--bodyBaseSize, 16px) + 8px);
23
+ $bodyFontSize2: calc(var(--bodyBaseSize, 16px) + 4px);
24
+ $bodyFontSize3: calc(var(--bodyBaseSize, 16px) + 2px);
25
+ $bodyFontSize4: var(--bodyBaseSize, 16px);
26
+ $bodyFontSize5: calc(var(--bodyBaseSize, 16px) + -2px);
27
+ $bodyFontSize6: calc(var(--bodyBaseSize, 16px) + -4px);
28
+ $bodyFontSize7: calc(var(--headingBaseSize, 16px) + -5px);
29
+
30
+ /*
31
+ __mixin definitions
32
+ */
33
+
34
+ @mixin default($size) {
35
+ font: #{$size}/1.4em $generic-fontFace;
36
+ }
37
+
38
+ @mixin text($size) {
39
+ font: #{$size}/1.4em $generic-fontFace;
40
+ font-family: $body-fontFace;
41
+ }
42
+
43
+ @mixin title($size) {
44
+ @include text($size);
45
+ font-family: $header-fontFace;
46
+ font-weight: bold;
47
+ margin-bottom: 0.375em;
48
+ }
@@ -0,0 +1,7 @@
1
+ //Global
2
+ $page-spacing-top: 25px;
3
+ $page-spacing-top-mobile: 15px;
4
+
5
+ // Components
6
+ $product-tabs-spacing-top: 48px;
7
+ $product-tabs-spacing-bottom: 40px;
@@ -0,0 +1,126 @@
1
+ @import '../definitions/mixins';
2
+
3
+ html {
4
+ @include html;
5
+ }
6
+
7
+ .ad-uniheader {
8
+ height: 52px;
9
+ background: #2d2a27;
10
+ }
11
+
12
+ p {
13
+ @include paragraph;
14
+ }
15
+
16
+ body {
17
+ position: relative;
18
+ min-height: 100vh;
19
+ @include text-4;
20
+ }
21
+
22
+ .page-wrapper {
23
+ display: flex;
24
+ flex-direction: column;
25
+ min-height: 100vh;
26
+
27
+ .main-footer {
28
+ margin-top: auto;
29
+ }
30
+ }
31
+
32
+ blockquote {
33
+ @include blockquote;
34
+ }
35
+ .title {
36
+ &--xxLarge { @include title-xxLarge; }
37
+ &--xLarge { @include title-xLarge; }
38
+ &--large { @include title-large; }
39
+ &--1 { @include title-1; }
40
+ &--2 { @include title-2; }
41
+ &--3 { @include title-3; }
42
+ &--4 { @include title-4; }
43
+ &--5 { @include title-5; }
44
+ &--6 { @include title-6; }
45
+ }
46
+ .text {
47
+ &--1 { @include text-1; }
48
+ &--2 { @include text-2; }
49
+ &--3 { @include text-3; }
50
+ &--4 { @include text-4; }
51
+ &--5 { @include text-5; }
52
+ &--6 { @include text-6; }
53
+ &--lower { @include text-lower; }
54
+ }
55
+ .paragraph { @include paragraph; }
56
+ .blockquote { @include blockquote; }
57
+
58
+ .color {
59
+ &--deepGray { @include color-deepGray }
60
+ &--darkGray { @include color-darkGray }
61
+ &--gray { @include color-gray }
62
+ &--midGray { @include color-midGray }
63
+ &--lightGray { @include color-lightGray }
64
+ &--faintGray { @include color-faintGray }
65
+ }
66
+ .background {
67
+ &--deepGray { @include background-deepGray }
68
+ &--darkGray { @include background-darkGray }
69
+ &--gray { @include background-gray }
70
+ &--midGray { @include background-midGray }
71
+ &--lightGray { @include background-lightGray }
72
+ &--faintGray { @include background-faintGray }
73
+ &--white { @include background-white }
74
+ &--faintLightGray { @include background-faintLightGray }
75
+ }
76
+ .border {
77
+ &--deepGray { @include border-deepGray }
78
+ &--darkGray { @include border-darkGray }
79
+ &--gray { @include border-gray }
80
+ &--midGray { @include border-midGray }
81
+ &--lightGray { @include border-lightGray }
82
+ &--faintGray { @include border-faintGray }
83
+ }
84
+ .radius {
85
+ &--2 { @include radius-2; }
86
+ &--3 { @include radius-3; }
87
+ }
88
+
89
+ .global-background-section {
90
+ background: $light-gray;
91
+ }
92
+
93
+ .global-component-spacer {
94
+ padding: 30px 0;
95
+ }
96
+ .global-component-spacer-top {
97
+ padding-top: 30px;
98
+ }
99
+ .global-component-spacer-bottom {
100
+ padding-bottom: 30px;
101
+ }
102
+
103
+ .global-component-nospacer {
104
+ margin-top: -30px;
105
+ }
106
+
107
+ .hidden {
108
+ display: none !important;
109
+ }
110
+
111
+ .skip-to-content {
112
+ position: absolute;
113
+ left: 0;
114
+ top: 0;
115
+
116
+ .skip-link {
117
+ &:focus {
118
+ position: relative;
119
+ padding: 5px 10px;
120
+ background-color: #fff;
121
+ color: #000;
122
+ border: 1px solid #000;
123
+ z-index: 9999;
124
+ }
125
+ }
126
+ }