bobjoll 1.634.3

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 (96) hide show
  1. package/README.md +35 -0
  2. package/package.json +26 -0
  3. package/scripts/script.js +199 -0
  4. package/scss/layout/_footer.scss +10 -0
  5. package/scss/layout/_header.scss +10 -0
  6. package/scss/modules/_fonts.scss +26 -0
  7. package/scss/modules/_reset.scss +219 -0
  8. package/scss/modules/bourbon/addons/_clearfix.scss +25 -0
  9. package/scss/modules/bourbon/addons/_ellipsis.scss +30 -0
  10. package/scss/modules/bourbon/addons/_position.scss +48 -0
  11. package/scss/modules/bourbon/addons/_prefixer.scss +66 -0
  12. package/scss/modules/bourbon/addons/_size.scss +51 -0
  13. package/scss/modules/bourbon/addons/_timing-functions.scss +34 -0
  14. package/scss/modules/bourbon/addons/_triangle.scss +63 -0
  15. package/scss/modules/bourbon/css3/_calc.scss +4 -0
  16. package/scss/modules/bourbon/css3/_flex-box.scss +287 -0
  17. package/scss/modules/bourbon/css3/_keyframes.scss +36 -0
  18. package/scss/modules/bourbon/css3/_linear-gradient.scss +38 -0
  19. package/scss/modules/bourbon/css3/_placeholder.scss +8 -0
  20. package/scss/modules/bourbon/css3/_selection.scss +42 -0
  21. package/scss/modules/bourbon/css3/_transition.scss +71 -0
  22. package/scss/modules/mixins/_component.scss +9 -0
  23. package/scss/modules/mixins/_grid.scss +75 -0
  24. package/scss/modules/mixins/_helpers.scss +224 -0
  25. package/scss/modules/variables/_colors.scss +447 -0
  26. package/scss/modules/variables/_general.scss +235 -0
  27. package/scss/partials/_accordion-v1-0.scss +165 -0
  28. package/scss/partials/_autocomplete-v1-0.scss +55 -0
  29. package/scss/partials/_general-v1-0.scss +51 -0
  30. package/scss/partials/_grid-v1-0.scss +109 -0
  31. package/scss/partials/_helper-v1-0.scss +299 -0
  32. package/scss/partials/_icon-v2-0.scss +323 -0
  33. package/scss/partials/_list-v1-0.scss +100 -0
  34. package/scss/partials/_modal-v1-0.scss +159 -0
  35. package/scss/partials/_notification-v1-1.scss +297 -0
  36. package/scss/partials/_progress-bar-v1.0.scss +25 -0
  37. package/scss/partials/_range-v1.0.scss +75 -0
  38. package/scss/partials/_tooltipFixed-v1.0.scss +128 -0
  39. package/scss/partials/_typography-v1-0.scss +201 -0
  40. package/scss/partials/animations/_fade.scss +23 -0
  41. package/scss/partials/animations/_rotate.scss +11 -0
  42. package/scss/partials/animations/_scale.scss +23 -0
  43. package/scss/partials/animations/_slide.scss +31 -0
  44. package/scss/partials/button-v4-0/_component.scss +304 -0
  45. package/scss/partials/form/_checkbox-and-radio-v1-0.scss +187 -0
  46. package/scss/partials/form/_dropdowns-v1-0.scss +323 -0
  47. package/scss/partials/form/_general-v1-0.scss +166 -0
  48. package/scss/partials/form/_group-v1-0.scss +157 -0
  49. package/scss/partials/form/_password-v1-0.scss +28 -0
  50. package/scss/partials/form/_switch-v1-0.scss +128 -0
  51. package/scss/partials/form/_upload-v1-0.scss +91 -0
  52. package/ts/library/common.ts +30 -0
  53. package/ts/library/cookie.ts +47 -0
  54. package/ts/library/delegate.ts +122 -0
  55. package/ts/library/dom.ts +124 -0
  56. package/ts/library/event.ts +138 -0
  57. package/ts/library/extend.js +32 -0
  58. package/ts/library/gr/dom.q.ts +12 -0
  59. package/ts/library/gr/social/dependency/twitter_pu.js +66 -0
  60. package/ts/library/gr/social/facebook.ts +154 -0
  61. package/ts/library/gr/social/google.ts +127 -0
  62. package/ts/library/gr/social/index.ts +35 -0
  63. package/ts/library/gr/social/twitter.ts +65 -0
  64. package/ts/library/helpers.ts +9 -0
  65. package/ts/library/number-abbreviate.js +57 -0
  66. package/ts/library/settings.ts +7 -0
  67. package/ts/library/storage.ts +131 -0
  68. package/ts/library/svg4everybody.legacy.js +122 -0
  69. package/ts/partials/accordion-v1.0.ts +104 -0
  70. package/ts/partials/accordionTabs-v1.0.ts +27 -0
  71. package/ts/partials/alert-v1.0.ts +51 -0
  72. package/ts/partials/copy-v1.0.ts +17 -0
  73. package/ts/partials/countdown-v1.0.ts +119 -0
  74. package/ts/partials/dropdown-v1.0.ts +247 -0
  75. package/ts/partials/hbs-v1.0.ts +9 -0
  76. package/ts/partials/modal-v1.0.ts +213 -0
  77. package/ts/partials/notifications-v1.1.ts +376 -0
  78. package/ts/partials/notify-v1.0.ts +746 -0
  79. package/ts/partials/password-v1.0.ts +19 -0
  80. package/ts/partials/popover-v1.0.ts +125 -0
  81. package/ts/partials/progress-bar-v1.0.ts +29 -0
  82. package/ts/partials/scroll-v1.0.ts +169 -0
  83. package/ts/partials/scrollable-v1.0.ts +90 -0
  84. package/ts/partials/tabs-v1.0.ts +79 -0
  85. package/ts/partials/tags-v1.0.ts +21 -0
  86. package/ts/partials/trigger-v2.0.ts +155 -0
  87. package/ts/partials/upload-v1.0.ts +17 -0
  88. package/ts/views/hbs/alert-v1.0/element.html.hbs +35 -0
  89. package/ts/views/hbs/countdown-v1.0/countdown-inner.hbs +39 -0
  90. package/ts/views/hbs/countdown-v1.0/countdown.hbs +4 -0
  91. package/ts/views/hbs/dropdown-v1.0/element.html.hbs +70 -0
  92. package/ts/views/hbs/helpers.js +58 -0
  93. package/ts/views/hbs/modal-v1.0/element.html.hbs +17 -0
  94. package/ts/views/hbs/notification-v1.1/element-disable.html.hbs +26 -0
  95. package/ts/views/hbs/notification-v1.1/element.html.hbs +43 -0
  96. package/ts/views/hbs/notification-v1.1/wrapper.html.hbs +4 -0
@@ -0,0 +1,297 @@
1
+ @if $notification-v1-1 {
2
+ .notifications {
3
+ @include position(fixed, 0 null null 0);
4
+
5
+ width: 100%;
6
+ height: 100%;
7
+
8
+ pointer-events: none;
9
+
10
+ z-index: 1000;
11
+
12
+ %notification-position {
13
+ @include position(absolute, null null null null);
14
+ }
15
+
16
+ &__content {
17
+ padding-right: ($base-button-height - $base-spacing) + $extra-small-spacing;
18
+ }
19
+
20
+ @include element('top-left') {
21
+ @extend %notification-position;
22
+
23
+ top: 0;
24
+ left: 0;
25
+ }
26
+
27
+ @include element('top-right') {
28
+ @extend %notification-position;
29
+
30
+ top: 0;
31
+ right: 20px;
32
+ }
33
+
34
+ @include element('top-center') {
35
+ @extend %notification-position;
36
+
37
+ @include transform(translateX(-50%));
38
+
39
+ top: 0;
40
+ left: 50%;
41
+ }
42
+
43
+ @include element('bottom-left') {
44
+ @extend %notification-position;
45
+
46
+ bottom: 0;
47
+ left: 0;
48
+ }
49
+
50
+ @include element('bottom-right') {
51
+ @extend %notification-position;
52
+
53
+ bottom: 0;
54
+ right: 20px;
55
+ }
56
+
57
+ @include element('bottom-center') {
58
+ @extend %notification-position;
59
+
60
+ @include transform(translateX(-50%));
61
+
62
+ bottom: 0;
63
+ left: 50%;
64
+ }
65
+
66
+ @include element('center') {
67
+ @extend %notification-position;
68
+
69
+ @include transform(translate(-50%, -50%));
70
+
71
+ top: 50%;
72
+ left: 50%;
73
+ }
74
+ }
75
+
76
+ .notification {
77
+ position: relative;
78
+
79
+ opacity: 0;
80
+
81
+ width: 90vw;
82
+ max-width: 680px;
83
+ min-height: $base-element-height;
84
+
85
+ margin: $base-spacing;
86
+ padding: $base-spacing;
87
+
88
+ border-radius: $base-border-radius;
89
+
90
+ background-color: color('notification', 'background');
91
+
92
+ box-shadow: $base-box-shadow;
93
+
94
+ pointer-events: all;
95
+
96
+ @include element('message') {
97
+ @include flex(1);
98
+
99
+ padding: $small-spacing $base-element-height $small-spacing $base-spacing;
100
+
101
+ font-size: $small-font-size;
102
+
103
+ font-weight: $semi-font-weight;
104
+ }
105
+
106
+ @include element('state') {
107
+ @extend .col--stretch;
108
+
109
+ overflow: hidden;
110
+
111
+ position: relative;
112
+
113
+ top: $extra-small-spacing;
114
+ left: $extra-small-spacing;
115
+
116
+ width: $small-element-height;
117
+ height: $small-element-height;
118
+
119
+ border-radius: $base-border-radius;
120
+
121
+ background-color: rgba(#fff, .2);
122
+
123
+ .icon {
124
+ @include position(absolute, 50% null null 50%);
125
+ @include transform(translate(-50%, -50%))
126
+ }
127
+ }
128
+
129
+ @include element('close') {
130
+ &:not(.nostyle) {
131
+ @include position(absolute, 0 0 null null);
132
+ margin: $extra-small-spacing;
133
+ // @include transform(translate(50%, -50%));
134
+ }
135
+ }
136
+
137
+ @include element('triangle') {
138
+ @include position(absolute, null null null null);
139
+
140
+ &::before {
141
+ @include triangle($base-triangle-size, color('light', 'background'), down);
142
+
143
+ display: block;
144
+
145
+ content: '';
146
+ }
147
+ }
148
+
149
+ @include modifier('no-shadow') {
150
+ box-shadow: none;
151
+ }
152
+
153
+ @include modifier('static') {
154
+ width: 100%;
155
+ max-width: inherit;
156
+
157
+ margin: 0 0 $base-spacing;
158
+ }
159
+
160
+ @include modifier('absolute') {
161
+ @include position(absolute, null null null null);
162
+
163
+ margin: 0;
164
+
165
+ z-index: 99;
166
+ }
167
+
168
+ @include modifier('alert') {
169
+ padding: 0;
170
+
171
+ .notification__content {
172
+ @extend %row-flexbox;
173
+ @extend .row--vertical-center;
174
+ }
175
+
176
+ .notification__close {
177
+ margin: ($base-element-height - $small-element-height) / 2;
178
+ }
179
+ }
180
+
181
+ @include modifier('error') {
182
+ background-color: color('red', 'state');
183
+
184
+ color: color('red', 'state-text');
185
+
186
+ a {
187
+ color: color('red', 'state-text', 0.75);
188
+ font-weight: bold;
189
+
190
+ &:hover {
191
+ color: color('red', 'state-text');
192
+ }
193
+ }
194
+
195
+ .notification__state {
196
+ @if $icon-v2-0 {
197
+ .icon:not(.nostyle) {
198
+ @extend .icon--exclamation;
199
+ }
200
+ }
201
+ }
202
+
203
+ .icon {
204
+ color: color('red', 'state-text');
205
+ }
206
+ }
207
+
208
+ @include modifier('warning') {
209
+ background-color: $yellow-shade-5;
210
+
211
+ color: color('yellow', 'state-text');
212
+
213
+ a {
214
+ color: color('yellow', 'state-text', 0.75);
215
+ font-weight: bold;
216
+
217
+ &:hover {
218
+ color: color('yellow', 'state-text');
219
+ }
220
+ }
221
+
222
+ .notification__state {
223
+ @if $icon-v2-0 {
224
+ .icon:not(.nostyle) {
225
+ @extend .icon--exclamation;
226
+ }
227
+ }
228
+ }
229
+
230
+ .icon {
231
+ color: color('yellow', 'state-text');
232
+ }
233
+ }
234
+
235
+ @include modifier('success') {
236
+ background-color: $green-shade-5;
237
+
238
+ color: color('green', 'state-text');
239
+
240
+ a {
241
+ color: color('green', 'state-text', 0.75);
242
+ font-weight: bold;
243
+
244
+ &:hover {
245
+ color: color('green', 'state-text');
246
+ }
247
+ }
248
+
249
+ .notification__state {
250
+ @if $icon-v2-0 {
251
+ .icon:not(.nostyle) {
252
+ @extend .icon--check;
253
+ }
254
+ }
255
+ }
256
+
257
+ .icon {
258
+ color: color('green', 'state-text');
259
+ }
260
+ }
261
+
262
+ @include modifier('neutral') {
263
+ background-color: color('blue', 'state');
264
+
265
+ color: color('blue', 'state-text');
266
+
267
+ a {
268
+ color: color('blue', 'state-text', 0.75);
269
+ font-weight: bold;
270
+
271
+ &:hover {
272
+ color: color('blue', 'state-text');
273
+ }
274
+ }
275
+
276
+ .icon {
277
+ color: color('blue', 'state-text');
278
+ }
279
+ }
280
+
281
+ @include modifier('hide-disable') {
282
+ .notification__disable {
283
+ display: none;
284
+ }
285
+ }
286
+
287
+ @include modifier('hide-close') {
288
+ .notification__close {
289
+ display: none;
290
+ }
291
+ }
292
+
293
+ &--show {
294
+ opacity: 1;
295
+ }
296
+ }
297
+ }
@@ -0,0 +1,25 @@
1
+ .progress-bar {
2
+ &__title {
3
+ font-size: $extra-small-font-size;
4
+ line-height: $extra-small-element-height;
5
+ color: color('hoki', 'gray');
6
+ margin-bottom: $extra-small-spacing;
7
+
8
+ &-complete {
9
+ color: color('jungle', 'green');
10
+ }
11
+ }
12
+
13
+ &__wrapper {
14
+ background: color('mystic', 'gray');
15
+ border-radius: 3px;
16
+ margin-bottom: $large-spacing;
17
+ }
18
+
19
+ &__value {
20
+ background: color('freepik', 'blue');
21
+ border-radius: 3px;
22
+ height: 5px;
23
+ width: 0;
24
+ }
25
+ }
@@ -0,0 +1,75 @@
1
+ @mixin range-track {
2
+ border-radius: 3px;
3
+ -webkit-appearance: none;
4
+ appearance: none;
5
+ cursor: pointer;
6
+ }
7
+
8
+ @mixin range-thumb {
9
+ width: 22px;
10
+ height: 22px;
11
+ background: #ffffff;
12
+ border: 1px solid color('gaysir', 'gray');
13
+ border-radius: 15px;
14
+ cursor: pointer;
15
+ }
16
+
17
+ @mixin range-thumb-focus {
18
+ transition: .3s box-shadow ease;
19
+ box-shadow: inset 0 0 0 6px color('gaysir', 'gray');
20
+ }
21
+
22
+ .range {
23
+ -webkit-appearance: none;
24
+ width: 100%;
25
+ background-color: color('mystic', 'gray');
26
+ height: 2px;
27
+
28
+ &::-webkit-slider-runnable-track {
29
+ @include range-track;
30
+ }
31
+
32
+ &::-webkit-slider-thumb {
33
+ -webkit-appearance: none;
34
+ @include range-thumb;
35
+ }
36
+
37
+ &::-moz-range-thumb {
38
+ @include range-thumb;
39
+ }
40
+
41
+ &:focus::-webkit-slider-thumb {
42
+ @include range-thumb-focus;
43
+ }
44
+
45
+ &:focus::-moz-range-thumb {
46
+ @include range-thumb-focus;
47
+ }
48
+
49
+ &--title {
50
+ font-size: $small-font-size;
51
+ line-height: 21px;
52
+ min-height: 21px;
53
+ color: color('bayoux', 'gray');
54
+ text-align: center;
55
+ margin: 0;
56
+ }
57
+
58
+ &--marks {
59
+ display: flex;
60
+ justify-content: space-between;
61
+ padding: 0 10px;
62
+ color: color('gaysir', 'gray');
63
+ font-size: 10px;
64
+
65
+ .mark {
66
+ &::after {
67
+ content: '|';
68
+ }
69
+
70
+ &.active {
71
+ color: color('bali', 'gray');
72
+ }
73
+ }
74
+ }
75
+ }
@@ -0,0 +1,128 @@
1
+ $minmax: 'min', 'max';
2
+
3
+ @mixin triangle-tooltip($position) {
4
+ .tooltip__content::before {
5
+ @include triangle($base-spacing, color('campu', 'blue'), $position);
6
+ }
7
+ }
8
+
9
+ @mixin style-tooltip {
10
+ &:not(.tooltip--permanent).tooltip__container:hover {
11
+ display: block !important;
12
+ opacity: 1;
13
+ visibility: initial;
14
+ }
15
+
16
+ .notification__close {
17
+ box-shadow: none !important;
18
+ color: $gray-oxford;
19
+ background: $gray-aqua;
20
+
21
+ .icon {
22
+ color: color('icon-inverted', 'general');
23
+ }
24
+
25
+ &:hover {
26
+ background: $gray-aqua;
27
+ }
28
+ }
29
+
30
+ .button--tooltip {
31
+ background-color: #ffffff;
32
+
33
+ &:hover {
34
+ color: color('oxford', 'gray');
35
+ }
36
+ }
37
+
38
+ &.tooltip__container--blue {
39
+ &.tooltip__container--right {
40
+ @include triangle-tooltip(left);
41
+ }
42
+
43
+ &.tooltip__container--left {
44
+ @include triangle-tooltip(right);
45
+ }
46
+
47
+ &.tooltip__container--top {
48
+ @include triangle-tooltip(down);
49
+ }
50
+
51
+ &.tooltip__container--bottom {
52
+ @include triangle-tooltip(up);
53
+ }
54
+
55
+ .tooltip__content {
56
+ max-width: 300px;
57
+ padding: $large-spacing $large-spacing $base-spacing;
58
+ border-radius: $base-border-radius;
59
+ font-size: $small-font-size;
60
+ text-align: left;
61
+ background-color: color('campu', 'blue');
62
+ color: color('text-inverted', 'general');
63
+
64
+ .notification__close {
65
+ color: #ffffff;
66
+ background: color('campu', 'blue');
67
+
68
+ &:hover {
69
+ background: color('freepik', 'blue');
70
+ }
71
+ }
72
+
73
+ .button--link {
74
+ color: #ffffff;
75
+
76
+ &:hover {
77
+ background: rgba(255, 255, 255, 0.2);
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+
84
+ @mixin show-tooltip {
85
+ display: block;
86
+ opacity: 0;
87
+ animation: tooltipFixed__active 250ms 1100ms cubic-bezier(.25, .1, .25, 1) forwards;
88
+ }
89
+
90
+ @keyframes tooltipFixed__active {
91
+ from {
92
+ opacity: 0;
93
+ }
94
+
95
+ to {
96
+ opacity: 1;
97
+ }
98
+ }
99
+
100
+ @if $tooltipFixed-v1-0 {
101
+ .tooltipFixed > .tooltip__container:not(.tooltipFixed__active) {
102
+ display: none;
103
+ }
104
+
105
+ .tooltipFixed__active {
106
+ @include style-tooltip;
107
+
108
+ &.tooltipFixed__breakpoint {
109
+ @each $media in $sizes {
110
+ &-#{$media} {
111
+ @each $from in $minmax {
112
+ &--#{$from} {
113
+ @include breakpoint($media, $from) {
114
+ @include show-tooltip;
115
+ }
116
+ }
117
+ }
118
+ }
119
+ }
120
+ }
121
+
122
+ &:not(.tooltipFixed__breakpoint) {
123
+ @include breakpoint('sm', 'min') {
124
+ @include show-tooltip;
125
+ }
126
+ }
127
+ }
128
+ }
@@ -0,0 +1,201 @@
1
+ @if $typography-v1-0 {
2
+ .copyright {
3
+ margin: 0;
4
+
5
+ font-size: $small-font-size;
6
+ }
7
+
8
+ .type {
9
+ display: inline-block;
10
+
11
+ margin: 0 0 $small-spacing;
12
+ padding: ($small-spacing / 10) 0;
13
+
14
+ border-bottom: $base-border;
15
+
16
+ font-size: $small-font-size;
17
+ font-weight: bold;
18
+ text-transform: uppercase;
19
+ }
20
+
21
+ .date {
22
+ margin: 0;
23
+
24
+ color: rgba(color('text', 'general'), .5);
25
+ }
26
+
27
+ .author {
28
+ font-size: $small-font-size;
29
+ }
30
+
31
+ .read-more {
32
+ position: relative;
33
+
34
+ padding: 0 ($small-spacing / 2) 0 0;
35
+
36
+ color: color('link', 'general');
37
+ font-size: $small-font-size;
38
+ font-weight: bold;
39
+ text-transform: uppercase;
40
+ }
41
+
42
+ hr {
43
+ width: 3em;
44
+ height: $base-border-width;
45
+
46
+ margin: 0 0 $base-spacing;
47
+
48
+ border: none;
49
+
50
+ background-color: color('border', 'general');
51
+ }
52
+
53
+ #{$all-headings} {
54
+ margin: $base-spacing 0;
55
+ padding: 0;
56
+
57
+ color: color('heading', 'general');
58
+ font-family: $title-font-family;
59
+ line-height: $title-line-height;
60
+
61
+ &.first {
62
+ margin-top: 0;
63
+ }
64
+ }
65
+
66
+ #{$big-headings} {
67
+ line-height: $extra-small-line-height;
68
+ }
69
+
70
+ #{$all-headings} {
71
+ &.category {
72
+ padding-bottom: $extra-small-spacing;
73
+
74
+ border-bottom: $base-border;
75
+ border-color: color('text', 'general', .15);
76
+
77
+ text-align: center;
78
+ }
79
+ }
80
+
81
+ .heading-inverted {
82
+ color: color('heading-inverted', 'general');
83
+ }
84
+
85
+ h1 { @include font-size($h1-font-size); }
86
+ h2 { @include font-size($h2-font-size); }
87
+ h3 { @include font-size($h3-font-size); }
88
+ h4 { @include font-size($h4-font-size); }
89
+ h5 { @include font-size($h5-font-size); }
90
+ h6 { @include font-size($h6-font-size); }
91
+
92
+ %link-inverted {
93
+ color: color('link-inverted', 'general', 1);
94
+
95
+ &:hover {
96
+ color: color('link-inverted', 'general', 1);
97
+
98
+ svg {
99
+ opacity: .8;
100
+ }
101
+ }
102
+
103
+ &.active {
104
+ color: color('link-inverted', 'general', 1);
105
+ font-weight: bold;
106
+
107
+ svg {
108
+ opacity: 1;
109
+ }
110
+ }
111
+
112
+ svg {
113
+ opacity: .4;
114
+ }
115
+
116
+ &--hover-underline {
117
+ &:hover,
118
+ &.active {
119
+ text-decoration: underline;
120
+ }
121
+ }
122
+ }
123
+
124
+ %link-hover {
125
+ &:hover {
126
+ color: color('link', 'general', 1, 4);
127
+
128
+ .icon {
129
+ color: color('link', 'general', 1, 4);
130
+ }
131
+ }
132
+
133
+ &.active {
134
+ color: color('link', 'general', 1, 4);
135
+ font-weight: $semi-font-weight;
136
+
137
+ .icon {
138
+ color: color('link', 'general', 1, 4);
139
+ }
140
+ }
141
+ }
142
+
143
+ .link {
144
+ @extend %link-hover;
145
+
146
+ color: color('link', 'general');
147
+
148
+ cursor: pointer;
149
+ font-weight: $semi-font-weight;
150
+ text-decoration: none;
151
+
152
+ .icon {
153
+ color: color('link', 'general');
154
+ }
155
+
156
+ &--text {
157
+ @extend %link-hover;
158
+
159
+ color: color('text', 'general', 1, 4);
160
+
161
+ .icon {
162
+ color: color('text', 'general', 1, 4);
163
+ }
164
+ }
165
+
166
+ &--inverted {
167
+ @extend %link-inverted;
168
+ }
169
+ }
170
+
171
+ .link-inverted {
172
+ @extend %link-inverted;
173
+ }
174
+
175
+ .text, p {
176
+ margin: 0 0 $base-spacing;
177
+ }
178
+
179
+ .text--inverted {
180
+ color: color('text-inverted', 'general');
181
+ }
182
+
183
+ blockquote {
184
+ margin: 0;
185
+ padding-left: $base-spacing;
186
+ border-left: 4px solid color('border', 'general');
187
+ }
188
+
189
+ figcaption {
190
+ color: color('text', 'general', 1, -20);
191
+ font-size: $small-font-size;
192
+ }
193
+
194
+ svg {
195
+ pointer-events: none;
196
+ }
197
+
198
+ a {
199
+ @extend .link;
200
+ }
201
+ } // End if