@appscode/design-system 1.1.0-beta.2 → 1.1.0-beta.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 (65) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +5 -4
  3. package/base/utilities/_colors.scss +446 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +3 -2
  6. package/base/utilities/{_default.scss → _global.scss} +159 -306
  7. package/base/utilities/_layouts.scss +157 -0
  8. package/base/utilities/_spacing.scss +96 -0
  9. package/base/utilities/_typography.scss +34 -2
  10. package/components/_ac-accordion.scss +117 -117
  11. package/components/_ac-alert-box.scss +205 -262
  12. package/components/_ac-card.scss +0 -597
  13. package/components/_ac-input.scss +0 -482
  14. package/components/_ac-modal.scss +212 -212
  15. package/components/_ac-multi-select.scss +84 -55
  16. package/components/_ac-options.scss +122 -122
  17. package/components/_ac-table.scss +503 -502
  18. package/components/_ac-tabs.scss +4 -3
  19. package/components/_ac-tags.scss +116 -116
  20. package/components/_ac-terminal.scss +275 -231
  21. package/components/_all.scss +31 -28
  22. package/components/_app-drawer.scss +0 -134
  23. package/components/_breadcumb.scss +0 -71
  24. package/components/_buttons.scss +779 -779
  25. package/components/_dashboard-header.scss +0 -115
  26. package/components/_image-upload.scss +2 -2
  27. package/components/_left-sidebar-menu.scss +346 -475
  28. package/components/_navbar.scss +786 -752
  29. package/components/_pagination.scss +9 -27
  30. package/components/_payment-card.scss +1 -1
  31. package/components/_widget-menu.scss +247 -247
  32. package/components/ac-toaster/_ac-toasted.scss +6 -11
  33. package/components/ui-builder/_ui-builder.scss +1 -1
  34. package/components/ui-builder/_vue-open-api.scss +512 -0
  35. package/main.scss +26 -10
  36. package/package.json +1 -1
  37. package/plugins/theme.js +11 -9
  38. package/plugins/vue-toaster.js +1 -1
  39. package/vue-components/v2/card/Card.vue +1 -1
  40. package/vue-components/v3/alert/Alert.vue +5 -5
  41. package/vue-components/v3/button/Button.vue +8 -0
  42. package/vue-components/v3/cards/Card.vue +1 -1
  43. package/vue-components/v3/cards/Cluster.vue +0 -4
  44. package/vue-components/v3/cards/Counter.vue +12 -0
  45. package/vue-components/v3/cards/FeatureCard.vue +31 -0
  46. package/vue-components/v3/cards/InfoCard.vue +4 -9
  47. package/vue-components/v3/cards/Monitoring.vue +1 -1
  48. package/vue-components/v3/cards/Vendor.vue +67 -5
  49. package/vue-components/v3/content/ContentTable.vue +7 -2
  50. package/vue-components/v3/editor/FilteredFileEditor.vue +195 -2
  51. package/vue-components/v3/footer/FooterItem.vue +4 -1
  52. package/vue-components/v3/form-fields/AcSingleInput.vue +1 -1
  53. package/vue-components/v3/header/Header.vue +3 -2
  54. package/vue-components/v3/loaders/InfoCardLoader.vue +65 -0
  55. package/vue-components/v3/notification/AlertBox.vue +4 -4
  56. package/vue-components/v3/searchbars/SearchBar.vue +10 -2
  57. package/vue-components/v3/sidebar/ClusterSwitcher.vue +4 -4
  58. package/vue-components/v3/sidebar/Sidebar.vue +3 -8
  59. package/vue-components/v3/sidebar/SidebarFooter.vue +3 -3
  60. package/vue-components/v3/sidebar/SidebarHeader.vue +3 -3
  61. package/vue-components/v3/sidebar/Steps.vue +148 -0
  62. package/vue-components/v3/table/Table.vue +27 -20
  63. package/base/utilities/_derived-variables.scss +0 -24
  64. package/base/utilities/_initial-variables.scss +0 -217
  65. package/components/_basic-card.scss +0 -118
@@ -0,0 +1,65 @@
1
+ .lightbox {
2
+ background-color: rgba($color: #000000, $alpha: 0.8);
3
+ position: fixed;
4
+ display: none;
5
+ z-index: 99;
6
+ bottom: 0;
7
+ right: 0;
8
+ left: 0;
9
+ top: 0;
10
+
11
+ &-container {
12
+ position: relative;
13
+ max-width: 1080px;
14
+ margin: 7% auto;
15
+ display: block;
16
+ padding: 0 3%;
17
+ height: auto;
18
+ z-index: 10;
19
+
20
+ // Increasing top margin for mobile
21
+ @media screen and (max-width: 768px) {
22
+ margin-top: 10%;
23
+ }
24
+
25
+ @media screen and (max-width: 414px) {
26
+ margin-top: 13%;
27
+ }
28
+ }
29
+
30
+ &-content {
31
+ box-shadow: 0 1px 6px fade(black, 70%);
32
+ }
33
+
34
+ &-close {
35
+ text-transform: uppercase;
36
+ background: transparent;
37
+ position: absolute;
38
+ font-weight: 300;
39
+ font-size: 32px;
40
+ display: block;
41
+ border: none;
42
+ color: white;
43
+ top: -52px;
44
+ right: 3%;
45
+ cursor: pointer;
46
+ }
47
+ }
48
+
49
+ .video-container {
50
+ padding-bottom: 56.25%;
51
+ position: relative;
52
+ padding-top: 30px;
53
+ overflow: hidden;
54
+ height: 0;
55
+ }
56
+
57
+ .video-container iframe,
58
+ .video-container object,
59
+ .video-container embed {
60
+ position: absolute;
61
+ height: 100%;
62
+ width: 100%;
63
+ left: 0;
64
+ top: 0;
65
+ }
@@ -1,8 +1,9 @@
1
- @import "initial-variables";
2
- @import "derived-variables";
1
+ @import "colors";
2
+ @import "typography";
3
3
  @import "mixin";
4
4
  @import "extended";
5
- @import "typography";
6
- @import "default";
5
+ @import "global";
7
6
  @import "grid";
7
+ @import "spacing";
8
+ @import "layouts";
8
9
  @import "dark-theme";
@@ -0,0 +1,446 @@
1
+ // ===================================PREVIOUS STYLE========================================
2
+ // Base Color
3
+ // $ac-orange: #ff8000;
4
+ // $warning: #f7ad2a;
5
+ // $success: #158748;
6
+ // $info: #0aafff;
7
+ // $purple: #791e94;
8
+ // $ac-red: #ff3729;
9
+
10
+ // Products Color
11
+ // $voyager-primary: #2d2a78;
12
+ // $guard-primary: #d84e27;
13
+ // $kubeci-primary: #2c3e50;
14
+ // $kubed-primary: #1c7bd4;
15
+ // $kubedb-primary: #4d4dcb;
16
+ // $kubesheild-primary: #2516c7;
17
+ // $kubevault-primary: #326ce5;
18
+ // $pharmer-primary: #326de6;
19
+ // $searchlight-primary: #111738;
20
+ // $servicebroker-primary: #29b4a2;
21
+ // $stash-primary: #5e2dea;
22
+ // $swift-primary: #3f51b6;
23
+
24
+ // Colors Primary
25
+ // root colors
26
+ :root {
27
+ --hsl-hue: 208;
28
+ --hsl-saturation: 77%;
29
+ --hsl-lightness: 40%;
30
+ // --contrast-threshold: 60%;
31
+ // --ac-bg: #ffffff;
32
+ // --ac-white: #ffffff;
33
+ // --ac-full-white: #ffffff;
34
+ // --ac-gray-dark: #5f5f5f;
35
+ // --ac-gray-light: #8d8d8d;
36
+ // --ac-gray-lightest: #d1d1d1;
37
+ // --ac-white-light: #e7e7e7;
38
+ // --ac-white-lighter: #f2f5f8;
39
+ // --ac-white-lightest: #f8f9fb;
40
+
41
+ // --ac-black: #000000;
42
+ // --ac-color-text-90: #323232;
43
+ // --ac-link-black: #32325d;
44
+ // --ac-gray-darker: #494949;
45
+ // --ac-gray: #767676;
46
+ // --ac-gray-lighter: #a4a4a4;
47
+ // --ac-white-text: #b4c0cc;
48
+
49
+ // theme color
50
+ // --dark-bg: #21272e;
51
+ // --dark-bg-light: #2e323c;
52
+
53
+ // --ac-blue-light: #eceff4;
54
+ // --ac-bg-light-gray: #f4f6f9;
55
+ // --table-header: #e4e8ef;
56
+ // --ac-label-text: #a6abbd;
57
+
58
+ --font-hsl-hue: 0;
59
+ --font-hsl-saturation: 0%;
60
+ --font-hsl-lightness: 11%;
61
+
62
+ --ac-primary: hsla(
63
+ var(--hsl-hue),
64
+ var(--hsl-saturation),
65
+ var(--hsl-lightness),
66
+ 1
67
+ );
68
+
69
+ --ac-text: hsla(
70
+ var(--font-hsl-hue),
71
+ calc(var(--font-hsl-saturation) + 10%),
72
+ calc(var(--font-hsl-lightness) + 10%),
73
+ 1
74
+ );
75
+ --ac-text-heading: hsla(
76
+ var(--font-hsl-hue),
77
+ var(--font-hsl-saturation),
78
+ var(--font-hsl-lightness),
79
+ 1
80
+ );
81
+ --ac-color-value: hsl(
82
+ var(--font-hsl-hue),
83
+ var(--font-hsl-saturation),
84
+ calc(var(--font-hsl-lightness) + 25%)
85
+ );
86
+ }
87
+
88
+ $ac-bg: var(--ac-bg);
89
+ // $primary: var(--ac-primary);
90
+ // $primary-20: var(--ac-color-value);
91
+
92
+ // Colors
93
+ $ac-black: var(--ac-black);
94
+ $primary-10-90: var(--ac-color-text-90);
95
+ $ac-link-black: var(--ac-link-black);
96
+ $black-40: var(--ac-gray-darker);
97
+ $black-30: var(--ac-gray-dark);
98
+ $ac-gray: var(--ac-gray);
99
+ $ac-gray-light: var(--ac-gray-light);
100
+ $ac-gray-lighter: var(--ac-gray-lighter);
101
+ $ac-gray-lightest: var(--ac-gray-lightest);
102
+ $white-100-light: var(--ac-white-light);
103
+ $white-100-lighter: var(--ac-white-lighter);
104
+ $white-100-lightest: var(--ac-white-lightest);
105
+ $white-100: var(--ac-white);
106
+ $ac-full-white: var(--ac-full-white);
107
+
108
+ // $info-light: var(--ac-blue-light);
109
+ $ac-bg-light-gray: var(--ac-bg-light-gray);
110
+ $table-header: var(--table-header);
111
+ $ac-label-text: var(--ac-label-text);
112
+
113
+ // for dark theme CSS
114
+ $dark-bg: var(--dark-bg);
115
+ $dark-bg-light: var(--dark-bg-light);
116
+ // ===================================PREVIOUS STYLE========================================
117
+
118
+ // white and black
119
+ $white-100: hsl(0, 0%, 100%);
120
+ $black-100: hsl(0, 0%, 0%);
121
+
122
+ // primary color guides
123
+ $primary-hue: 208;
124
+ $primary-saturation: 77%;
125
+ $primary-5: hsl($primary-hue, $primary-saturation, 5%);
126
+ $primary-10: hsl($primary-hue, $primary-saturation, 10%);
127
+ $primary-20: hsl($primary-hue, $primary-saturation, 20%);
128
+ $primary-30: hsl($primary-hue, $primary-saturation, 30%);
129
+ $primary-40: hsl($primary-hue, $primary-saturation, 40%);
130
+ $primary: hsl($primary-hue, $primary-saturation, 40%);
131
+ $ac-primary: hsl(var(--hsl-hue), var(--hsl-saturation), 40%);
132
+
133
+ $primary-50: hsl($primary-hue, $primary-saturation, 50%);
134
+ $primary-60: hsl($primary-hue, $primary-saturation, 60%);
135
+ $primary-70: hsl($primary-hue, $primary-saturation, 70%);
136
+ $primary-80: hsl($primary-hue, $primary-saturation, 80%);
137
+ $primary-90: hsl($primary-hue, $primary-saturation, 90%);
138
+ $primary-95: hsl($primary-hue, $primary-saturation, 95%);
139
+ $primary-97: hsl($primary-hue, $primary-saturation, 97%);
140
+
141
+ // green color guides
142
+ $green-hue: 141;
143
+ $green-saturation: 53%;
144
+ $green-5: hsl($green-hue, $green-saturation, 5%);
145
+ $green-10: hsl($green-hue, $green-saturation, 10%);
146
+ $green-20: hsl($green-hue, $green-saturation, 20%);
147
+ $green-30: hsl($green-hue, $green-saturation, 30%);
148
+ $green-40: hsl($green-hue, $green-saturation, 40%);
149
+ $success: hsl($green-hue, $green-saturation, 40%);
150
+ $green-50: hsl($green-hue, $green-saturation, 50%);
151
+ $green-60: hsl($green-hue, $green-saturation, 60%);
152
+ $green-70: hsl($green-hue, $green-saturation, 70%);
153
+ $green-80: hsl($green-hue, $green-saturation, 80%);
154
+ $green-90: hsl($green-hue, $green-saturation, 90%);
155
+ $green-95: hsl($green-hue, $green-saturation, 95%);
156
+ $green-97: hsl($green-hue, $green-saturation, 97%);
157
+
158
+ // blue color guides
159
+ $blue-hue: 217;
160
+ $blue-saturation: 71%;
161
+ $blue-5: hsl($blue-hue, $blue-saturation, 5%);
162
+ $blue-10: hsl($blue-hue, $blue-saturation, 10%);
163
+ $blue-20: hsl($blue-hue, $blue-saturation, 20%);
164
+ $blue-30: hsl($blue-hue, $blue-saturation, 30%);
165
+ $blue-40: hsl($blue-hue, $blue-saturation, 40%);
166
+ $blue-50: hsl($blue-hue, $blue-saturation, 50%);
167
+ $info: hsl($blue-hue, $blue-saturation, 50%);
168
+ $blue-60: hsl($blue-hue, $blue-saturation, 60%);
169
+ $blue-70: hsl($blue-hue, $blue-saturation, 70%);
170
+ $blue-80: hsl($blue-hue, $blue-saturation, 80%);
171
+ $blue-90: hsl($blue-hue, $blue-saturation, 90%);
172
+ $blue-95: hsl($blue-hue, $blue-saturation, 95%);
173
+ $blue-97: hsl($blue-hue, $blue-saturation, 97%);
174
+
175
+ // purple color guides
176
+ $purple-hue: 286;
177
+ $purple-saturation: 66%;
178
+ $purple-5: hsl($purple-hue, $purple-saturation, 5%);
179
+ $purple-10: hsl($purple-hue, $purple-saturation, 10%);
180
+ $purple-20: hsl($purple-hue, $purple-saturation, 20%);
181
+ $purple-30: hsl($purple-hue, $purple-saturation, 30%);
182
+ $purple-40: hsl($purple-hue, $purple-saturation, 40%);
183
+ $purple: hsl($purple-hue, $purple-saturation, 40%);
184
+ $purple-50: hsl($purple-hue, $purple-saturation, 50%);
185
+ $purple-60: hsl($purple-hue, $purple-saturation, 60%);
186
+ $purple-70: hsl($purple-hue, $purple-saturation, 70%);
187
+ $purple-80: hsl($purple-hue, $purple-saturation, 80%);
188
+ $purple-90: hsl($purple-hue, $purple-saturation, 90%);
189
+ $purple-95: hsl($purple-hue, $purple-saturation, 95%);
190
+ $purple-97: hsl($purple-hue, $purple-saturation, 97%);
191
+
192
+ // yellow color guides
193
+ $yellow-hue: 38;
194
+ $yellow-saturation: 93%;
195
+ $yellow-5: hsl($yellow-hue, $yellow-saturation, 5%);
196
+ $yellow-10: hsl($yellow-hue, $yellow-saturation, 10%);
197
+ $yellow-20: hsl($yellow-hue, $yellow-saturation, 20%);
198
+ $yellow-30: hsl($yellow-hue, $yellow-saturation, 30%);
199
+ $yellow-40: hsl($yellow-hue, $yellow-saturation, 40%);
200
+ $yellow-50: hsl($yellow-hue, $yellow-saturation, 50%);
201
+ $warning: hsl($yellow-hue, $yellow-saturation, 50%);
202
+ $yellow-60: hsl($yellow-hue, $yellow-saturation, 60%);
203
+ $yellow-70: hsl($yellow-hue, $yellow-saturation, 70%);
204
+ $yellow-80: hsl($yellow-hue, $yellow-saturation, 80%);
205
+ $yellow-90: hsl($yellow-hue, $yellow-saturation, 90%);
206
+ $yellow-95: hsl($yellow-hue, $yellow-saturation, 95%);
207
+ $yellow-97: hsl($yellow-hue, $yellow-saturation, 97%);
208
+
209
+ // red color guides
210
+ $red-hue: 348;
211
+ $red-saturation: 100%;
212
+ $red-5: hsl($red-hue, $red-saturation, 5%);
213
+ $red-10: hsl($red-hue, $red-saturation, 10%);
214
+ $red-20: hsl($red-hue, $red-saturation, 20%);
215
+ $red-30: hsl($red-hue, $red-saturation, 30%);
216
+ $red-40: hsl($red-hue, $red-saturation, 40%);
217
+ $red-50: hsl($red-hue, $red-saturation, 50%);
218
+ $danger: hsl($red-hue, $red-saturation, 50%);
219
+ $red-60: hsl($red-hue, $red-saturation, 60%);
220
+ $red-70: hsl($red-hue, $red-saturation, 70%);
221
+ $red-80: hsl($red-hue, $red-saturation, 80%);
222
+ $red-90: hsl($red-hue, $red-saturation, 90%);
223
+ $red-95: hsl($red-hue, $red-saturation, 95%);
224
+ $red-97: hsl($red-hue, $red-saturation, 97%);
225
+
226
+ // black color guides
227
+ $black-hue: 0;
228
+ $black-saturation: 0%;
229
+ $black-5: hsl($black-hue, $black-saturation, 5%);
230
+ $black-10: hsl($black-hue, $black-saturation, 10%);
231
+ $black-20: hsl($black-hue, $black-saturation, 20%);
232
+ $black-30: hsl($black-hue, $black-saturation, 30%);
233
+ $black-40: hsl($black-hue, $black-saturation, 40%);
234
+ $black-50: hsl($black-hue, $black-saturation, 50%);
235
+ $gray: hsl($black-hue, $black-saturation, 50%);
236
+ $black-60: hsl($black-hue, $black-saturation, 60%);
237
+ $black-70: hsl($black-hue, $black-saturation, 70%);
238
+ $black-80: hsl($black-hue, $black-saturation, 80%);
239
+ $black-90: hsl($black-hue, $black-saturation, 90%);
240
+ $black-95: hsl($black-hue, $black-saturation, 95%);
241
+ $black-97: hsl($black-hue, $black-saturation, 97%);
242
+
243
+ // classes
244
+ @mixin generate-color-classes($type, $color, $h, $s, $from, $to, $step) {
245
+ $i: $from;
246
+
247
+ @while $i <=$to {
248
+ .#{$type}-#{$color}-#{$i} {
249
+ #{if($type == "text", "color", "background-color")}: hsl($h, $s, $i * 1%);
250
+ }
251
+
252
+ $i: $i + $step;
253
+ }
254
+ }
255
+
256
+ // for primary classes
257
+ @include generate-color-classes(
258
+ "text",
259
+ "primary",
260
+ $primary-hue,
261
+ $primary-saturation,
262
+ 10,
263
+ 90,
264
+ 10
265
+ );
266
+
267
+ @include generate-color-classes(
268
+ "bg",
269
+ "primary",
270
+ $primary-hue,
271
+ $primary-saturation,
272
+ 10,
273
+ 90,
274
+ 10
275
+ );
276
+
277
+ @include generate-color-classes(
278
+ "text",
279
+ "primary",
280
+ $primary-hue,
281
+ $primary-saturation,
282
+ 5,
283
+ 5,
284
+ 1
285
+ );
286
+
287
+ @include generate-color-classes(
288
+ "bg",
289
+ "primary",
290
+ $primary-hue,
291
+ $primary-saturation,
292
+ 5,
293
+ 5,
294
+ 1
295
+ );
296
+
297
+ @include generate-color-classes(
298
+ "text",
299
+ "primary",
300
+ $primary-hue,
301
+ $primary-saturation,
302
+ 95,
303
+ 97,
304
+ 2
305
+ );
306
+
307
+ @include generate-color-classes(
308
+ "bg",
309
+ "primary",
310
+ $primary-hue,
311
+ $primary-saturation,
312
+ 95,
313
+ 97,
314
+ 2
315
+ );
316
+
317
+ // for green classes
318
+ @include generate-color-classes(
319
+ "text",
320
+ "green",
321
+ $green-hue,
322
+ $green-saturation,
323
+ 10,
324
+ 90,
325
+ 10
326
+ );
327
+ @include generate-color-classes(
328
+ "bg",
329
+ "green",
330
+ $green-hue,
331
+ $green-saturation,
332
+ 10,
333
+ 90,
334
+ 10
335
+ );
336
+
337
+ @include generate-color-classes(
338
+ "text",
339
+ "green",
340
+ $green-hue,
341
+ $green-saturation,
342
+ 5,
343
+ 5,
344
+ 1
345
+ );
346
+
347
+ @include generate-color-classes(
348
+ "bg",
349
+ "green",
350
+ $green-hue,
351
+ $green-saturation,
352
+ 5,
353
+ 5,
354
+ 1
355
+ );
356
+
357
+ @include generate-color-classes(
358
+ "text",
359
+ "green",
360
+ $green-hue,
361
+ $green-saturation,
362
+ 95,
363
+ 97,
364
+ 2
365
+ );
366
+
367
+ @include generate-color-classes(
368
+ "bg",
369
+ "green",
370
+ $green-hue,
371
+ $green-saturation,
372
+ 95,
373
+ 97,
374
+ 2
375
+ );
376
+
377
+ // for purple classes
378
+ @include generate-color-classes(
379
+ "text",
380
+ "purple",
381
+ $purple-hue,
382
+ $purple-saturation,
383
+ 10,
384
+ 90,
385
+ 10
386
+ );
387
+ @include generate-color-classes(
388
+ "bg",
389
+ "purple",
390
+ $purple-hue,
391
+ $purple-saturation,
392
+ 10,
393
+ 90,
394
+ 10
395
+ );
396
+
397
+ @include generate-color-classes(
398
+ "text",
399
+ "purple",
400
+ $purple-hue,
401
+ $purple-saturation,
402
+ 5,
403
+ 5,
404
+ 1
405
+ );
406
+
407
+ @include generate-color-classes(
408
+ "bg",
409
+ "purple",
410
+ $purple-hue,
411
+ $purple-saturation,
412
+ 5,
413
+ 5,
414
+ 1
415
+ );
416
+
417
+ @include generate-color-classes(
418
+ "text",
419
+ "purple",
420
+ $purple-hue,
421
+ $purple-saturation,
422
+ 95,
423
+ 97,
424
+ 2
425
+ );
426
+
427
+ @include generate-color-classes(
428
+ "bg",
429
+ "purple",
430
+ $purple-hue,
431
+ $purple-saturation,
432
+ 95,
433
+ 97,
434
+ 2
435
+ );
436
+
437
+ // Box Shadow
438
+ $ac-shadow-1: 0 1px 4px rgba(26, 80, 151, 0.16);
439
+ $ac-shadow-2: 0px 8px 57px rgba(0, 0, 0, 0.16);
440
+ $ac-shadow-3: 0 3px 4px 0 rgba(0, 0, 0, 0.18),
441
+ 0 3px 3px -2px rgba(0, 0, 0, 0.16), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
442
+
443
+ $shadow-sm: 0 1px 4px rgba(26, 80, 151, 0.16);
444
+ $shadow-xl: 0px 8px 57px rgba(0, 0, 0, 0.16);
445
+ $shadow-lg: 0 3px 4px 0 rgba(0, 0, 0, 0.18), 0 3px 3px -2px rgba(0, 0, 0, 0.16),
446
+ 0 1px 6px 0 rgba(0, 0, 0, 0.12);
@@ -1,5 +1,3 @@
1
- $primary : hsl(208, 77%, 42%);
2
-
3
1
  // Colors
4
2
  // $black: hsl(0, 0%, 4%) !default;
5
3
  // $black-bis: hsl(0, 0%, 7%) !default;
@@ -16,33 +14,33 @@ $primary : hsl(208, 77%, 42%);
16
14
  // $white-bis: hsl(0, 0%, 98%) !default;
17
15
  // $white: hsl(0, 0%, 100%) !default;
18
16
 
19
- $orange: hsl(30, 100%, 50%) !default;
20
- $yellow: hsl(38, 93%, 57%) !default;
21
- $green: hsl(147, 73%, 31%) !default;
17
+ // $orange: hsl(30, 100%, 50%) !default;
18
+ // $yellow: hsl(38, 93%, 57%) !default;
19
+ // $green: hsl(147, 73%, 31%) !default;
22
20
  // $turquoise: hsl(171, 100%, 41%) !default;
23
21
  // $cyan: hsl(207, 61%, 53%) !default;
24
22
  // $blue: hsl(229, 53%, 53%) !default;
25
- $purple: hsl(286, 66%, 35%) !default;
26
- $red: hsl(4, 100%, 58%) !default;
23
+ // $purple: hsl(286, 66%, 35%) !default;
24
+ // $red: hsl(4, 100%, 58%) !default;
27
25
 
28
26
  // // Typography
29
27
  // $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default;
30
28
  // $family-monospace: monospace !default;
31
29
  // $render-mode: optimizeLegibility !default;
32
30
 
33
- // $size-1: 3rem !default;
34
- // $size-2: 2.5rem !default;
35
- // $size-3: 2rem !default;
36
- // $size-4: 1.5rem !default;
37
- // $size-5: 1.25rem !default;
38
- // $size-6: 1rem !default;
39
- // $size-7: 0.75rem !default;
31
+ $size-1: 2.462rem !default; //32px
32
+ $size-2: 2rem !default; //26px
33
+ $size-3: 1.692rem !default; //22px
34
+ $size-4: 1.385rem !default; //18px
35
+ $size-5: 1.213rem !default; //16px
36
+ $size-6: 1rem !default; //13px
37
+ $size-7: 0.846rem !default; //11px
40
38
 
41
- // $weight-light: 300 !default;
42
- // $weight-normal: 400 !default;
43
- // $weight-medium: 500 !default;
44
- // $weight-semibold: 600 !default;
45
- // $weight-bold: 700 !default;
39
+ $weight-light: 300 !default;
40
+ $weight-normal: 400 !default;
41
+ $weight-medium: 500 !default;
42
+ $weight-semibold: 600 !default;
43
+ $weight-bold: 700 !default;
46
44
 
47
45
  // // Spacing
48
46
  // $block-spacing: 1.5rem !default;
@@ -74,16 +72,14 @@ $red: hsl(4, 100%, 58%) !default;
74
72
  // $variable-columns: true !default;
75
73
  // $rtl: false !default;
76
74
 
77
-
78
-
79
- // // Derived-Variables
75
+ // // Derived-Variables
80
76
 
81
77
  // $primary: $turquoise !default;
82
-
83
- // $info: $cyan !default;
84
- // $success: $green !default;
85
- // $warning: $yellow !default;
86
- // $danger: $red !default;
78
+ $primary: $primary !default;
79
+ $info: $blue !default;
80
+ $success: $success !default;
81
+ $warning: $warning !default;
82
+ $danger: $danger !default;
87
83
 
88
84
  // $light: $white-ter !default;
89
85
  // $dark: $grey-darker !default;
@@ -1,4 +1,4 @@
1
- .has-hover-style{
1
+ .has-hover-style {
2
2
  cursor: pointer;
3
3
 
4
4
  &::before {
@@ -30,9 +30,10 @@
30
30
  }
31
31
 
32
32
  &:hover {
33
+
33
34
  &::before,
34
35
  &::after {
35
36
  transform: scale(1);
36
37
  }
37
38
  }
38
- }
39
+ }