bobjoll 0.0.4

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/LICENSE +21 -0
  2. package/README.md +35 -0
  3. package/package.json +25 -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,299 @@
1
+ @if $helper-v1-0 {
2
+ html {
3
+ // Colors
4
+ @include color-classes();
5
+
6
+ // Floating
7
+ .floatl { float: left; }
8
+ .floatr { float: right; }
9
+ .clear { clear: both; }
10
+ .clearfix { @include clearfix; }
11
+
12
+ // Typography
13
+ .roman { font-style: normal }
14
+ .italic { font-style: italic; }
15
+ .light { font-weight: 300; }
16
+ .regular { font-weight: 400; }
17
+ .medium { font-weight: 500; }
18
+ .semibold { font-weight: 600; }
19
+ .bold { font-weight: 700; }
20
+ .ff--base { font-family: $base-font-family; }
21
+ .ff--title { font-family: $title-font-family; }
22
+
23
+ .alignl { text-align: left; }
24
+ .alignr { text-align: right; }
25
+ .alignc { text-align: center; }
26
+
27
+ .font-xs { font-size: $extra-small-font-size; }
28
+ .font-sm { font-size: $small-font-size; }
29
+ .font-md { font-size: $base-font-size; }
30
+ .font-lg { font-size: $large-font-size; }
31
+ .font-xl { font-size: $extra-large-font-size; }
32
+
33
+ .font-h1 { @include font-size($h1-font-size); }
34
+ .font-h2 { @include font-size($h2-font-size); }
35
+ .font-h3 { @include font-size($h3-font-size); }
36
+ .font-h4 { @include font-size($h4-font-size); }
37
+ .font-h5 { @include font-size($h5-font-size); }
38
+ .font-h6 { @include font-size($h6-font-size); }
39
+
40
+ .font-lh-xs { line-height: $extra-small-font-size; }
41
+ .font-lh-sm { line-height: $small-font-size; }
42
+ .font-lh-md { line-height: $base-font-size; }
43
+ .font-lh-lg { line-height: $large-font-size; }
44
+ .font-lh-xl { line-height: $extra-large-font-size; }
45
+
46
+ .resetcase { text-transform: initial; }
47
+ .lowercase { text-transform: lowercase; }
48
+ .uppercase { text-transform: uppercase; }
49
+ .capitalize { text-transform: capitalize; }
50
+
51
+ .strike { text-decoration: line-through; }
52
+ .underline { text-decoration: underline; }
53
+
54
+ .text-inverted { color: color('text-inverted', 'general'); }
55
+
56
+ // Line-height
57
+ .line-height-xs { line-height: $extra-small-element-height; }
58
+ .line-height-sm { line-height: $small-element-height; }
59
+ .line-height-md { line-height: $base-element-height; }
60
+ .line-height-lg { line-height: $large-element-height; }
61
+ .line-height-xl { line-height: $extra-large-element-height; }
62
+ .line-height-reset { line-height: normal; }
63
+
64
+ // Display and visibility
65
+ body.noscript .noscript { display: none !important; }
66
+
67
+ .full-width-fix { margin: 0 ($grid-columns-spacing * -1); }
68
+ .full-width-fix-i { margin: 0 ($grid-columns-spacing * -1) !important; }
69
+ .full-width { width: 100% !important; }
70
+ .full-height { height: 100% !important; }
71
+ .invisible { visibility: hidden; }
72
+ .hide { display: none !important; }
73
+ .inline { display: inline; }
74
+ .inline-i { display: inline !important; }
75
+ .block { display: block; }
76
+ .block-i { display: block !important; }
77
+ .inline-block { display: inline-block; }
78
+ .inline-block-i { display: inline-block !important; }
79
+ .overflow-hidden { overflow: hidden; }
80
+ .overflow-auto { overflow: auto; }
81
+ .overflow-scroll { overflow: scroll !important; }
82
+ .overflow-ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
83
+ .overflow-visible { overflow: visible; }
84
+ .scrollable {
85
+ overflow-x: hidden;
86
+ overflow-y: auto;
87
+ -webkit-overflow-scrolling: touch;
88
+
89
+ @include breakpoint('md') {
90
+ overflow-y: scroll;
91
+
92
+ &>.container,
93
+ &>.container-fluid {
94
+ min-height: calc(100% + 10px)
95
+ }
96
+ }
97
+
98
+ height: 100%;
99
+
100
+ @include modifier('absolute') {
101
+ @include position(absolute, 0 null null 0);
102
+
103
+ max-height: 100%;
104
+ }
105
+ }
106
+ .v-alignc { vertical-align: middle; }
107
+ .v-alignc-transform { @include transform(translateY(-25%)); }
108
+ .paragraph-readable { max-width: map-get($breakpoints, 'sm'); }
109
+ .paragraph-readable--xs { max-width: map-get($breakpoints, 'xs'); }
110
+
111
+ // Sizes
112
+ .size {
113
+ @each $size in $sizes {
114
+ @include modifier($size) {
115
+ height: map-get($button-sizes, $size);
116
+
117
+ font-size: map-get($font-sizes, $size);
118
+ line-height: map-get($button-sizes, $size);
119
+ }
120
+ }
121
+ }
122
+
123
+ // Margin & Paddings
124
+ $spacing: (
125
+ 1: $extra-small-spacing,
126
+ 2: $small-spacing,
127
+ 3: $base-spacing,
128
+ 4: $large-spacing,
129
+ 5: $extra-large-spacing
130
+ );
131
+
132
+ .mg-none-i { margin: 0 !important; }
133
+ .mg-x-none-i { margin-left: 0 !important; margin-right: 0 !important; }
134
+ .mg-y-none-i { margin-top: 0 !important; margin-bottom: 0 !important; }
135
+
136
+ @each $name, $space in $spacing {
137
+ .mg-lv#{$name} { margin: $space; }
138
+ .mg-lv#{$name}-i { margin: $space !important; }
139
+ .mg-top-lv#{$name} { margin-top: $space; }
140
+ .mg-top-lv#{$name}-i { margin-top: $space !important; }
141
+ .mg-right-lv#{$name} { margin-right: $space; }
142
+ .mg-right-lv#{$name}-i { margin-right: $space !important; }
143
+ .mg-bottom-lv#{$name} { margin-bottom: $space; }
144
+ .mg-bottom-lv#{$name}-i { margin-bottom: $space !important; }
145
+ .mg-left-lv#{$name} { margin-left: $space; }
146
+ .mg-left-lv#{$name}-i { margin-left: $space !important; }
147
+ }
148
+
149
+ .mg-none { margin: 0; }
150
+ .mg-x-none { margin-left: 0; margin-right: 0; }
151
+ .mg-y-none { margin-top: 0; margin-bottom: 0; }
152
+
153
+ .pd-none-i { padding: 0 !important; }
154
+ .pd-x-none-i { padding-left: 0 !important; padding-right: 0 !important; }
155
+ .pd-y-none-i { padding-top: 0 !important; padding-bottom: 0 !important; }
156
+
157
+ @each $name, $space in $spacing {
158
+ .pd-lv#{$name} { padding: $space; }
159
+ .pd-lv#{$name}-i { padding: $space !important; }
160
+ .pd-top-lv#{$name} { padding-top: $space; }
161
+ .pd-top-lv#{$name}-i { padding-top: $space !important; }
162
+ .pd-right-lv#{$name} { padding-right: $space; }
163
+ .pd-right-lv#{$name}-i { padding-right: $space !important; }
164
+ .pd-bottom-lv#{$name} { padding-bottom: $space; }
165
+ .pd-bottom-lv#{$name}-i { padding-bottom: $space !important; }
166
+ .pd-left-lv#{$name} { padding-left: $space; }
167
+ .pd-left-lv#{$name}-i { padding-left: $space !important; }
168
+ }
169
+
170
+ .pd-none { padding: 0; }
171
+ .pd-x-none { padding-left: 0; padding-right: 0; }
172
+ .pd-y-none { padding-top: 0; padding-bottom: 0; }
173
+
174
+ .push-left { margin-right: auto; }
175
+ .push-left-i { margin-right: auto !important; }
176
+ .push-right { margin-left: auto; }
177
+ .push-right-i { margin-left: auto !important; }
178
+ .push-center {
179
+ margin-left: auto;
180
+ margin-right: auto;
181
+ }
182
+ .push-center-i {
183
+ margin-left: auto !important;
184
+ margin-right: auto !important;
185
+ }
186
+
187
+ .show-phone,
188
+ .show-phone-i,
189
+ .show-mobile,
190
+ .show-mobile-i,
191
+ .show-tablet,
192
+ .show-tablet-i,
193
+ .hide-desktop {
194
+ display: none !important;
195
+ }
196
+
197
+ @include breakpoint('sm', 'max') {
198
+ .full-width-phone { width: 100%; }
199
+ .left-on-phone { text-align: left; }
200
+ .nofloat-phone { float: none; }
201
+ .show-phone { display: inherit !important; }
202
+ .show-phone-i { display: inherit !important; }
203
+ }
204
+
205
+ @include breakpoint('md', 'max') {
206
+ .full-width-mobile { width: 100%; }
207
+ .show-mobile { display: inherit !important; }
208
+ .show-mobile-i { display: inherit !important; }
209
+ }
210
+
211
+ @include breakpoint('sm', 'max') {
212
+ .hide-phone { display: none !important; }
213
+ }
214
+
215
+ @include breakpoint('md', 'max') {
216
+ .hide-mobile { display: none !important; }
217
+ }
218
+
219
+ @include breakpoint('lg', 'max') {
220
+ .hide-tablet { display: none !important; }
221
+ .show-tablet { display: inherit !important; }
222
+ .show-tablet-i { display: inherit !important; }
223
+ }
224
+
225
+ @include breakpoint('lg', 'min') {
226
+ .hide-desktop { display: inherit !important; }
227
+ }
228
+
229
+ // Video
230
+ .video-wrapper {
231
+ position: relative;
232
+
233
+ overflow: hidden;
234
+
235
+ &::before {
236
+ display: block;
237
+
238
+ padding-bottom: 56.25%; // (1080 / 1920) * 100 (16:9 Aspect ratio)
239
+
240
+ content: '';
241
+ }
242
+
243
+ .video, iframe {
244
+ @include position(absolute, 0 null null 0);
245
+
246
+ width: 100%;
247
+ height: 100%;
248
+ }
249
+ }
250
+
251
+ // Aspect ratio (name: width, height)
252
+ .aspect-ratio {
253
+ &::before {
254
+ display: block;
255
+
256
+ width: 100%;
257
+
258
+ content: '';
259
+ }
260
+
261
+ @each $name, $map in $aspect-ratios {
262
+ @if (unitless(nth($map, 1)) and unitless(nth($map, 2))) {
263
+ $width: nth($map, 1);
264
+ $height: nth($map, 2);
265
+ $ratio: ($height / $width) * 100;
266
+
267
+ @include modifier($name) {
268
+ &::before {
269
+ padding: 0 0 $ratio + 0%;
270
+ }
271
+ }
272
+ }
273
+ }
274
+ }
275
+
276
+ // Other
277
+ .notransition {
278
+ @include transition(none !important);
279
+ }
280
+
281
+ .disabled {
282
+ opacity: .4;
283
+
284
+ pointer-events: none !important;
285
+
286
+ * {
287
+ pointer-events: none !important;
288
+ }
289
+ }
290
+
291
+ @for $i from 1 through 10 {
292
+ $percentage: ($i * 10) / 100;
293
+
294
+ .opacity-#{$i} {
295
+ opacity: $percentage;
296
+ }
297
+ }
298
+ }
299
+ } // End if
@@ -0,0 +1,323 @@
1
+ @if $icon-v2-0 {
2
+ $webfont: "bobjoll" !global;
3
+
4
+ @font-face {
5
+ font-family: $webfont;
6
+ src: url("~bobjoll/fonts/bobjoll.woff2?5d2e1028a913daedf2dd81459e3fad31") format("woff2"),
7
+ url("~bobjoll/fonts/bobjoll.woff?5d2e1028a913daedf2dd81459e3fad31") format("woff");
8
+ }
9
+
10
+ %icon {
11
+ display: block;
12
+
13
+ text-transform: none;
14
+
15
+ -webkit-font-smoothing: antialiased;
16
+ -moz-osx-font-smoothing: grayscale;
17
+
18
+ speak: none;
19
+
20
+ &::before {
21
+ font-family: $webfont;
22
+ font-style: normal;
23
+ font-weight: normal;
24
+ font-variant: normal;
25
+ }
26
+ }
27
+
28
+ .icon {
29
+ @extend %icon;
30
+
31
+ width: $base-icon-width;
32
+ height: $base-icon-height;
33
+
34
+ font-size: $base-icon-width;
35
+ line-height: $base-icon-height;
36
+
37
+ color: color('icon', 'general');
38
+ fill: color('icon', 'general');
39
+ }
40
+
41
+ .icon--inverted {
42
+ color: color('icon-inverted', 'general') !important;
43
+ fill: color('icon-inverted', 'general') !important;
44
+ }
45
+
46
+ $map: map-get($colors, 'social');
47
+
48
+ @each $color, $hex in $map {
49
+ .icon--#{$color} {
50
+ color: $hex;
51
+ fill: $hex;
52
+ }
53
+ }
54
+
55
+ @each $size1 in $sizes {
56
+ $map: map-get($icon-sizes, $size1);
57
+
58
+ .icon--#{$size1} {
59
+ width: map-get($map, 'width');
60
+ height: map-get($map, 'height');
61
+
62
+ font-size: map-get($map, 'width');
63
+ line-height: map-get($map, 'height');
64
+
65
+ @each $size2 in $sizes {
66
+ $icon-spacing: ((map-get($base-sizes, $size2) - map-get($map, 'height')) / 2);
67
+
68
+ &.icon--mg-#{$size2} { padding: $icon-spacing; box-sizing: content-box; }
69
+ } // End spacing
70
+ }
71
+ }
72
+
73
+ .icon--3d { &::before { content: "\f101"; } }
74
+ .icon--add-to-folder { &::before { content: "\f102"; } }
75
+ .icon--addcollection { &::before { content: "\f103"; } }
76
+ .icon--advanced { &::before { content: "\f104"; } }
77
+ .icon--aligncenter { &::before { content: "\f105"; } }
78
+ .icon--alignleft { &::before { content: "\f106"; } }
79
+ .icon--alignright { &::before { content: "\f107"; } }
80
+ .icon--amex { &::before { content: "\f108"; } }
81
+ .icon--api { &::before { content: "\f109"; } }
82
+ .icon--archive { &::before { content: "\f10a"; } }
83
+ .icon--background { &::before { content: "\f10b"; } }
84
+ .icon--backwards { &::before { content: "\f10c"; } }
85
+ .icon--beacon-lineal { &::before { content: "\f10d"; } }
86
+ .icon--beacon { &::before { content: "\f10e"; } }
87
+ .icon--beginner { &::before { content: "\f10f"; } }
88
+ .icon--behance { &::before { content: "\f110"; } }
89
+ .icon--bold { &::before { content: "\f111"; } }
90
+ .icon--book { &::before { content: "\f112"; } }
91
+ .icon--bookmark-filled { &::before { content: "\f113"; } }
92
+ .icon--bookmark { &::before { content: "\f114"; } }
93
+ .icon--briefcase { &::before { content: "\f115"; } }
94
+ .icon--broken-image { &::before { content: "\f116"; } }
95
+ .icon--brush { &::before { content: "\f117"; } }
96
+ .icon--bug { &::before { content: "\f118"; } }
97
+ .icon--bullet { &::before { content: "\f119"; } }
98
+ .icon--business-card { &::before { content: "\f11a"; } }
99
+ .icon--calendar { &::before { content: "\f11b"; } }
100
+ .icon--camera { &::before { content: "\f11c"; } }
101
+ .icon--caret-down { &::before { content: "\f11d"; } }
102
+ .icon--caret-left { &::before { content: "\f11e"; } }
103
+ .icon--caret-right { &::before { content: "\f11f"; } }
104
+ .icon--caret-up { &::before { content: "\f120"; } }
105
+ .icon--check { &::before { content: "\f121"; } }
106
+ .icon--checkbox { &::before { content: "\f122"; } }
107
+ .icon--circle-filled { &::before { content: "\f123"; } }
108
+ .icon--circle-lineal-small { &::before { content: "\f124"; } }
109
+ .icon--circle-lineal { &::before { content: "\f125"; } }
110
+ .icon--circle { &::before { content: "\f126"; } }
111
+ .icon--clean { &::before { content: "\f127"; } }
112
+ .icon--clip { &::before { content: "\f128"; } }
113
+ .icon--cloud { &::before { content: "\f129"; } }
114
+ .icon--collapse { &::before { content: "\f12a"; } }
115
+ .icon--collection { &::before { content: "\f12b"; } }
116
+ .icon--comment { &::before { content: "\f12c"; } }
117
+ .icon--cookie { &::before { content: "\f12d"; } }
118
+ .icon--copy-image { &::before { content: "\f12e"; } }
119
+ .icon--copyright { &::before { content: "\f12f"; } }
120
+ .icon--coupon { &::before { content: "\f130"; } }
121
+ .icon--create-folder-filled { &::before { content: "\f131"; } }
122
+ .icon--create-folder { &::before { content: "\f132"; } }
123
+ .icon--credit-card { &::before { content: "\f133"; } }
124
+ .icon--crop { &::before { content: "\f134"; } }
125
+ .icon--cross-small { &::before { content: "\f135"; } }
126
+ .icon--cross { &::before { content: "\f136"; } }
127
+ .icon--crown { &::before { content: "\f137"; } }
128
+ .icon--dashboard { &::before { content: "\f138"; } }
129
+ .icon--desktop-wallpaper { &::before { content: "\f139"; } }
130
+ .icon--devices { &::before { content: "\f13a"; } }
131
+ .icon--disabled { &::before { content: "\f13b"; } }
132
+ .icon--display-options { &::before { content: "\f13c"; } }
133
+ .icon--dollar { &::before { content: "\f13d"; } }
134
+ .icon--down-small { &::before { content: "\f13e"; } }
135
+ .icon--down { &::before { content: "\f13f"; } }
136
+ .icon--download { &::before { content: "\f140"; } }
137
+ .icon--dribbble { &::before { content: "\f141"; } }
138
+ .icon--duplicate { &::before { content: "\f142"; } }
139
+ .icon--earnings { &::before { content: "\f143"; } }
140
+ .icon--edit { &::before { content: "\f144"; } }
141
+ .icon--education { &::before { content: "\f145"; } }
142
+ .icon--empty { &::before { content: "\f146"; } }
143
+ .icon--envelope-solid { &::before { content: "\f147"; } }
144
+ .icon--envelope { &::before { content: "\f148"; } }
145
+ .icon--exclamation { &::before { content: "\f149"; } }
146
+ .icon--external-link { &::before { content: "\f14a"; } }
147
+ .icon--eye-line-through { &::before { content: "\f14b"; } }
148
+ .icon--eye { &::before { content: "\f14c"; } }
149
+ .icon--facebook { &::before { content: "\f14d"; } }
150
+ .icon--file { &::before { content: "\f14e"; } }
151
+ .icon--filter { &::before { content: "\f14f"; } }
152
+ .icon--fiverr { &::before { content: "\f150"; } }
153
+ .icon--flag { &::before { content: "\f151"; } }
154
+ .icon--flame { &::before { content: "\f152"; } }
155
+ .icon--flaticon-symbol { &::before { content: "\f153"; } }
156
+ .icon--flaticon-text { &::before { content: "\f154"; } }
157
+ .icon--flaticon { &::before { content: "\f155"; } }
158
+ .icon--flip { &::before { content: "\f156"; } }
159
+ .icon--fold { &::before { content: "\f157"; } }
160
+ .icon--folder { &::before { content: "\f158"; } }
161
+ .icon--follow-folder { &::before { content: "\f159"; } }
162
+ .icon--followcollection { &::before { content: "\f15a"; } }
163
+ .icon--following { &::before { content: "\f15b"; } }
164
+ .icon--font { &::before { content: "\f15c"; } }
165
+ .icon--forwards { &::before { content: "\f15d"; } }
166
+ .icon--fullscreen { &::before { content: "\f15e"; } }
167
+ .icon--globe { &::before { content: "\f15f"; } }
168
+ .icon--google { &::before { content: "\f160"; } }
169
+ .icon--graphic-style { &::before { content: "\f161"; } }
170
+ .icon--grid { &::before { content: "\f162"; } }
171
+ .icon--headphones { &::before { content: "\f163"; } }
172
+ .icon--headquarters { &::before { content: "\f164"; } }
173
+ .icon--heart-filled { &::before { content: "\f165"; } }
174
+ .icon--heart { &::before { content: "\f166"; } }
175
+ .icon--history { &::before { content: "\f167"; } }
176
+ .icon--home { &::before { content: "\f168"; } }
177
+ .icon--hourglass { &::before { content: "\f169"; } }
178
+ .icon--images { &::before { content: "\f16a"; } }
179
+ .icon--inbox { &::before { content: "\f16b"; } }
180
+ .icon--info { &::before { content: "\f16c"; } }
181
+ .icon--instagram { &::before { content: "\f16d"; } }
182
+ .icon--interactive { &::before { content: "\f16e"; } }
183
+ .icon--intermediate { &::before { content: "\f16f"; } }
184
+ .icon--interogation { &::before { content: "\f170"; } }
185
+ .icon--italic { &::before { content: "\f171"; } }
186
+ .icon--justify { &::before { content: "\f172"; } }
187
+ .icon--keyboard { &::before { content: "\f173"; } }
188
+ .icon--laptop { &::before { content: "\f174"; } }
189
+ .icon--layers { &::before { content: "\f175"; } }
190
+ .icon--left-small { &::before { content: "\f176"; } }
191
+ .icon--left { &::before { content: "\f177"; } }
192
+ .icon--license { &::before { content: "\f178"; } }
193
+ .icon--light-bulb { &::before { content: "\f179"; } }
194
+ .icon--linkedin { &::before { content: "\f17a"; } }
195
+ .icon--list { &::before { content: "\f17b"; } }
196
+ .icon--lock-open-solid { &::before { content: "\f17c"; } }
197
+ .icon--lock-solid { &::before { content: "\f17d"; } }
198
+ .icon--lock { &::before { content: "\f17e"; } }
199
+ .icon--logo-symbol-old { &::before { content: "\f17f"; } }
200
+ .icon--logo-symbol { &::before { content: "\f180"; } }
201
+ .icon--logo-text-old { &::before { content: "\f181"; } }
202
+ .icon--logo-text { &::before { content: "\f182"; } }
203
+ .icon--logout { &::before { content: "\f183"; } }
204
+ .icon--marker { &::before { content: "\f184"; } }
205
+ .icon--master-card { &::before { content: "\f185"; } }
206
+ .icon--medical-1 { &::before { content: "\f186"; } }
207
+ .icon--medical-2 { &::before { content: "\f187"; } }
208
+ .icon--menuburger { &::before { content: "\f188"; } }
209
+ .icon--menudots-vertical { &::before { content: "\f189"; } }
210
+ .icon--menudots { &::before { content: "\f18a"; } }
211
+ .icon--minimize { &::before { content: "\f18b"; } }
212
+ .icon--minus-small { &::before { content: "\f18c"; } }
213
+ .icon--minus { &::before { content: "\f18d"; } }
214
+ .icon--mockup { &::before { content: "\f18e"; } }
215
+ .icon--move-to-folder-2 { &::before { content: "\f18f"; } }
216
+ .icon--move-to-folder { &::before { content: "\f190"; } }
217
+ .icon--next-small { &::before { content: "\f191"; } }
218
+ .icon--next { &::before { content: "\f192"; } }
219
+ .icon--notification-filled { &::before { content: "\f193"; } }
220
+ .icon--notification { &::before { content: "\f194"; } }
221
+ .icon--o-horizontal { &::before { content: "\f195"; } }
222
+ .icon--o-panoramic { &::before { content: "\f196"; } }
223
+ .icon--o-square { &::before { content: "\f197"; } }
224
+ .icon--o-vertical { &::before { content: "\f198"; } }
225
+ .icon--opacity { &::before { content: "\f199"; } }
226
+ .icon--palette { &::before { content: "\f19a"; } }
227
+ .icon--paper-plane { &::before { content: "\f19b"; } }
228
+ .icon--paper-plane2 { &::before { content: "\f19c"; } }
229
+ .icon--paste { &::before { content: "\f19d"; } }
230
+ .icon--pattern { &::before { content: "\f19e"; } }
231
+ .icon--pause { &::before { content: "\f19f"; } }
232
+ .icon--paypal { &::before { content: "\f1a0"; } }
233
+ .icon--pencil { &::before { content: "\f1a1"; } }
234
+ .icon--phone { &::before { content: "\f1a2"; } }
235
+ .icon--photo { &::before { content: "\f1a3"; } }
236
+ .icon--picpeople-filled { &::before { content: "\f1a4"; } }
237
+ .icon--picpeople { &::before { content: "\f1a5"; } }
238
+ .icon--pinterest { &::before { content: "\f1a6"; } }
239
+ .icon--pixabay { &::before { content: "\f1a7"; } }
240
+ .icon--play { &::before { content: "\f1a8"; } }
241
+ .icon--plus-small { &::before { content: "\f1a9"; } }
242
+ .icon--plus { &::before { content: "\f1aa"; } }
243
+ .icon--presentation { &::before { content: "\f1ab"; } }
244
+ .icon--prev-small { &::before { content: "\f1ac"; } }
245
+ .icon--prev { &::before { content: "\f1ad"; } }
246
+ .icon--projects { &::before { content: "\f1ae"; } }
247
+ .icon--psd { &::before { content: "\f1af"; } }
248
+ .icon--quote { &::before { content: "\f1b0"; } }
249
+ .icon--receipt { &::before { content: "\f1b1"; } }
250
+ .icon--redo { &::before { content: "\f1b2"; } }
251
+ .icon--reflect-horizontal { &::before { content: "\f1b3"; } }
252
+ .icon--reflect-vertical { &::before { content: "\f1b4"; } }
253
+ .icon--refresh { &::before { content: "\f1b5"; } }
254
+ .icon--remove-folder { &::before { content: "\f1b6"; } }
255
+ .icon--removecollection { &::before { content: "\f1b7"; } }
256
+ .icon--replace { &::before { content: "\f1b8"; } }
257
+ .icon--resources { &::before { content: "\f1b9"; } }
258
+ .icon--right-small { &::before { content: "\f1ba"; } }
259
+ .icon--right { &::before { content: "\f1bb"; } }
260
+ .icon--rotate-inverted { &::before { content: "\f1bc"; } }
261
+ .icon--rotate { &::before { content: "\f1bd"; } }
262
+ .icon--save { &::before { content: "\f1be"; } }
263
+ .icon--search { &::before { content: "\f1bf"; } }
264
+ .icon--security { &::before { content: "\f1c0"; } }
265
+ .icon--settings { &::before { content: "\f1c1"; } }
266
+ .icon--share { &::before { content: "\f1c2"; } }
267
+ .icon--shopping-cart { &::before { content: "\f1c3"; } }
268
+ .icon--shuffle { &::before { content: "\f1c4"; } }
269
+ .icon--slidesgo { &::before { content: "\f1c5"; } }
270
+ .icon--smiley-comment { &::before { content: "\f1c6"; } }
271
+ .icon--sortcollection { &::before { content: "\f1c7"; } }
272
+ .icon--speaker { &::before { content: "\f1c8"; } }
273
+ .icon--spinner { &::before { content: "\f1c9"; } }
274
+ .icon--square-lineal { &::before { content: "\f1ca"; } }
275
+ .icon--square { &::before { content: "\f1cb"; } }
276
+ .icon--squares { &::before { content: "\f1cc"; } }
277
+ .icon--squircle-lineal { &::before { content: "\f1cd"; } }
278
+ .icon--squircle { &::before { content: "\f1ce"; } }
279
+ .icon--star-comment { &::before { content: "\f1cf"; } }
280
+ .icon--star-filled { &::before { content: "\f1d0"; } }
281
+ .icon--star { &::before { content: "\f1d1"; } }
282
+ .icon--stats { &::before { content: "\f1d2"; } }
283
+ .icon--sticker { &::before { content: "\f1d3"; } }
284
+ .icon--stop { &::before { content: "\f1d4"; } }
285
+ .icon--stroke { &::before { content: "\f1d5"; } }
286
+ .icon--stumbleupon { &::before { content: "\f1d6"; } }
287
+ .icon--subtitles { &::before { content: "\f1d7"; } }
288
+ .icon--support { &::before { content: "\f1d8"; } }
289
+ .icon--tablet { &::before { content: "\f1d9"; } }
290
+ .icon--tag { &::before { content: "\f1da"; } }
291
+ .icon--telegram { &::before { content: "\f1db"; } }
292
+ .icon--template-alt { &::before { content: "\f1dc"; } }
293
+ .icon--template { &::before { content: "\f1dd"; } }
294
+ .icon--text-shadow { &::before { content: "\f1de"; } }
295
+ .icon--thumb-down { &::before { content: "\f1df"; } }
296
+ .icon--thumb-up { &::before { content: "\f1e0"; } }
297
+ .icon--time { &::before { content: "\f1e1"; } }
298
+ .icon--trash { &::before { content: "\f1e2"; } }
299
+ .icon--twitter { &::before { content: "\f1e3"; } }
300
+ .icon--underline { &::before { content: "\f1e4"; } }
301
+ .icon--undo { &::before { content: "\f1e5"; } }
302
+ .icon--unfold { &::before { content: "\f1e6"; } }
303
+ .icon--unlock { &::before { content: "\f1e7"; } }
304
+ .icon--up-small { &::before { content: "\f1e8"; } }
305
+ .icon--up { &::before { content: "\f1e9"; } }
306
+ .icon--upload-to-folder { &::before { content: "\f1ea"; } }
307
+ .icon--upload { &::before { content: "\f1eb"; } }
308
+ .icon--url { &::before { content: "\f1ec"; } }
309
+ .icon--user { &::before { content: "\f1ed"; } }
310
+ .icon--users { &::before { content: "\f1ee"; } }
311
+ .icon--vector { &::before { content: "\f1ef"; } }
312
+ .icon--video-linear { &::before { content: "\f1f0"; } }
313
+ .icon--video { &::before { content: "\f1f1"; } }
314
+ .icon--vimeo { &::before { content: "\f1f2"; } }
315
+ .icon--visa { &::before { content: "\f1f3"; } }
316
+ .icon--volume { &::before { content: "\f1f4"; } }
317
+ .icon--warning-filled { &::before { content: "\f1f5"; } }
318
+ .icon--whatsapp { &::before { content: "\f1f6"; } }
319
+ .icon--world { &::before { content: "\f1f7"; } }
320
+ .icon--youtube { &::before { content: "\f1f8"; } }
321
+ .icon--zoom-in { &::before { content: "\f1f9"; } }
322
+ .icon--zoom-out { &::before { content: "\f1fa"; } }
323
+ }