srcdev-nuxt-forms 6.1.1 → 6.1.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 (81) hide show
  1. package/app/components/forms/input-checkbox/MultipleCheckboxes.vue +21 -32
  2. package/app/components/forms/input-description/InputDescription.vue +71 -0
  3. package/app/components/forms/input-label/InputLabel.vue +4 -0
  4. package/app/components/forms/input-select/variants/InputSelectWithLabel.vue +36 -12
  5. package/app/components/forms/input-text/variants/InputTextWithLabel.vue +35 -11
  6. package/app/components/forms/input-textarea/InputTextareaCore.vue +5 -1
  7. package/app/components/forms/input-textarea/variants/InputTextareaWithLabel.vue +75 -35
  8. package/nuxt.config.ts +0 -1
  9. package/package.json +1 -1
  10. package/app/assets/styles/extends-layer/srcdev-forms/components/_form-fieldset.css +0 -38
  11. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-button.css +0 -66
  12. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-core.css +0 -66
  13. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-options-button.css +0 -76
  14. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-error.css +0 -54
  15. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-label.css +0 -21
  16. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-select.css +0 -140
  17. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-text.css +0 -190
  18. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-textarea.css +0 -96
  19. package/app/assets/styles/extends-layer/srcdev-forms/components/index.css +0 -9
  20. package/app/assets/styles/extends-layer/srcdev-forms/index.css +0 -2
  21. package/app/assets/styles/extends-layer/srcdev-forms/setup/_generic.css +0 -21
  22. package/app/assets/styles/extends-layer/srcdev-forms/setup/index.css +0 -4
  23. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_error.css +0 -85
  24. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_ghost.css +0 -85
  25. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_input-action-underlined.css +0 -20
  26. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_input-action.css +0 -20
  27. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_primary.css +0 -92
  28. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_secondary.css +0 -85
  29. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_success.css +0 -85
  30. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_tertiary.css +0 -85
  31. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/_warning.css +0 -85
  32. package/app/assets/styles/extends-layer/srcdev-forms/setup/themes/index.css +0 -9
  33. package/app/assets/styles/extends-layer/srcdev-forms/setup/variables/_a11y.css +0 -7
  34. package/app/assets/styles/extends-layer/srcdev-forms/setup/variables/index.css +0 -1
  35. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/_normal.css +0 -48
  36. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/_underlined.css +0 -48
  37. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/index.css +0 -3
  38. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_default.css +0 -13
  39. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_large.css +0 -12
  40. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_medium.css +0 -12
  41. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_small.css +0 -12
  42. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_x-small.css +0 -11
  43. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/index.css +0 -23
  44. package/app/assets/styles/main.css +0 -2
  45. package/app/assets/styles/setup/_head.css +0 -36
  46. package/app/assets/styles/setup/a11y/_utils.css +0 -20
  47. package/app/assets/styles/setup/a11y/_variables.css +0 -8
  48. package/app/assets/styles/setup/a11y/index.css +0 -2
  49. package/app/assets/styles/setup/index.css +0 -5
  50. package/app/assets/styles/setup/theming/colors/_blue.css +0 -15
  51. package/app/assets/styles/setup/theming/colors/_gray.css +0 -16
  52. package/app/assets/styles/setup/theming/colors/_green.css +0 -15
  53. package/app/assets/styles/setup/theming/colors/_orange.css +0 -15
  54. package/app/assets/styles/setup/theming/colors/_red.css +0 -15
  55. package/app/assets/styles/setup/theming/colors/_yellow.css +0 -15
  56. package/app/assets/styles/setup/theming/colors/index.css +0 -6
  57. package/app/assets/styles/setup/theming/index.css +0 -2
  58. package/app/assets/styles/setup/theming/themes/_default.css +0 -66
  59. package/app/assets/styles/setup/theming/themes/_error.css +0 -66
  60. package/app/assets/styles/setup/theming/themes/_ghost.css +0 -31
  61. package/app/assets/styles/setup/theming/themes/_info.css +0 -31
  62. package/app/assets/styles/setup/theming/themes/_primary.css +0 -41
  63. package/app/assets/styles/setup/theming/themes/_secondary.css +0 -66
  64. package/app/assets/styles/setup/theming/themes/_success.css +0 -66
  65. package/app/assets/styles/setup/theming/themes/_tertiary.css +0 -31
  66. package/app/assets/styles/setup/theming/themes/_warning.css +0 -68
  67. package/app/assets/styles/setup/theming/themes/index.css +0 -9
  68. package/app/assets/styles/setup/typography/index.css +0 -2
  69. package/app/assets/styles/setup/typography/utility-classes/_generic-font-classes.css +0 -217
  70. package/app/assets/styles/setup/typography/utility-classes/_generic-font-variation-settings.css +0 -29
  71. package/app/assets/styles/setup/typography/utility-classes/_generic-font-weights.css +0 -39
  72. package/app/assets/styles/setup/typography/utility-classes/index.css +0 -3
  73. package/app/assets/styles/setup/typography/vars/_reponsive-font-sizes.css +0 -12
  74. package/app/assets/styles/setup/typography/vars/index.css +0 -1
  75. package/app/assets/styles/setup/utility-classes/_fluid-spacing.css +0 -13
  76. package/app/assets/styles/setup/utility-classes/animations/_auto-rotate.css +0 -13
  77. package/app/assets/styles/setup/utility-classes/animations/_entry-exit-blur.css +0 -16
  78. package/app/assets/styles/setup/utility-classes/animations/_entry-slide-in.css +0 -15
  79. package/app/assets/styles/setup/utility-classes/animations/_entry-zoom-reveal.css +0 -15
  80. package/app/assets/styles/setup/utility-classes/animations/index.css +0 -4
  81. package/app/assets/styles/setup/utility-classes/index.css +0 -2
@@ -1,66 +0,0 @@
1
- [data-theme='secondary'] {
2
- --colour-theme-0: var(--gray-0);
3
- --colour-theme-1: var(--gray-1);
4
- --colour-theme-2: var(--gray-2);
5
- --colour-theme-3: var(--gray-3);
6
- --colour-theme-4: var(--gray-4);
7
- --colour-theme-5: var(--gray-5);
8
- --colour-theme-6: var(--gray-6);
9
- --colour-theme-7: var(--gray-7);
10
- --colour-theme-8: var(--gray-8);
11
- --colour-theme-9: var(--gray-9);
12
- --colour-theme-10: var(--gray-10);
13
- --colour-theme-11: var(--gray-11);
14
- --colour-theme-12: var(--gray-12);
15
-
16
- /* Generic */
17
- --theme-box-shadow: var(--colour-theme-12);
18
-
19
- /* Fieldset & Label */
20
- --form-fieldset-legend-color: light-dark(var(--gray-12), var(--gray-1));
21
- --form-label-color: light-dark(var(--gray-12), var(--gray-1));
22
-
23
- /* Input Elements */
24
- --theme-input-surface: light-dark(var(--gray-1), var(--gray-8));
25
- --theme-input-surface-hover: light-dark(var(--gray-1), var(--gray-10));
26
- --theme-input-surface-focus: light-dark(var(--gray-1), var(--gray-10));
27
-
28
- --theme-input-border: light-dark(var(--gray-9), var(--gray-4));
29
- --theme-input-border-hover: light-dark(var(--gray-10), var(--gray-5));
30
- --theme-input-border-focus: light-dark(var(--gray-10), var(--gray-5));
31
-
32
- --theme-input-outline: transparent;
33
- --theme-input-outline-hover: light-dark(var(--gray-10), var(--gray-1));
34
- --theme-input-outline-focus: light-dark(var(--gray-10), var(--gray-1));
35
-
36
- --theme-input-text: var(--gray-0);
37
- --theme-input-text-hover: var(--gray-0);
38
- --theme-input-text-focus: var(--gray-0);
39
- --theme-input-placeholder: light-dark(var(--gray-7), var(--gray-5));
40
-
41
- /* Checkboxes & Radio buttons */
42
- /* --theme-checkbox-label-text-color: light-dark(var(--gray-11), var(--gray-1)); */
43
- /* --theme-checkbox-decorator-color: light-dark(var(--gray-11), var(--gray-1)); */
44
- /* --theme-checkbox-symbol-surface: var(--colour-theme-12); */
45
- /* --theme-checkbox-symbol-color: light-dark(var(--gray-11), var(--gray-1)); */
46
-
47
- /* a11y */
48
- --theme-focus-visible-shadow: var(--colour-theme-1);
49
- --theme-focus-visible-outline: var(--colour-theme-1);
50
-
51
- /* Buttons */
52
- --theme-button-surface: light-dark(var(--gray-9), var(--gray-10));
53
- --theme-button-surface-hover: light-dark(var(--gray-10), var(--gray-11));
54
-
55
- --theme-button-border: light-dark(var(--gray-9), var(--gray-2));
56
- --theme-button-border-hover: light-dark(var(--gray-10), var(--gray-1));
57
- --theme-button-border-focus: light-dark(var(--gray-10), var(--gray-5));
58
-
59
- --theme-button-outline: transparent;
60
- --theme-button-outline-hover: light-dark(var(--gray-10), var(--gray-1));
61
- --theme-button-outline-focus: light-dark(var(--gray-10), var(--gray-1));
62
-
63
- --theme-button-text: var(--gray-0);
64
- --theme-button-text-hover: var(--gray-0);
65
- --theme-button-text-focus: var(--gray-0);
66
- }
@@ -1,66 +0,0 @@
1
- [data-theme='success'] {
2
- --colour-theme-0: var(--green-0);
3
- --colour-theme-1: var(--green-1);
4
- --colour-theme-2: var(--green-2);
5
- --colour-theme-3: var(--green-3);
6
- --colour-theme-4: var(--green-4);
7
- --colour-theme-5: var(--green-5);
8
- --colour-theme-6: var(--green-6);
9
- --colour-theme-7: var(--green-7);
10
- --colour-theme-8: var(--green-8);
11
- --colour-theme-9: var(--green-9);
12
- --colour-theme-10: var(--green-10);
13
- --colour-theme-11: var(--green-11);
14
- --colour-theme-12: var(--green-12);
15
-
16
- /* Generic */
17
- --theme-box-shadow: var(--colour-theme-12);
18
-
19
- /* Fieldset & Label */
20
- --form-fieldset-legend-color: light-dark(var(--gray-12), var(--gray-1));
21
- --form-label-color: light-dark(var(--gray-12), var(--gray-1));
22
-
23
- /* Input Elements */
24
- --theme-input-surface: light-dark(var(--gray-1), var(--gray-8));
25
- --theme-input-surface-hover: light-dark(var(--gray-1), var(--gray-10));
26
- --theme-input-surface-focus: light-dark(var(--gray-1), var(--gray-10));
27
-
28
- --theme-input-border: var(--green-10);
29
- --theme-input-border-hover: light-dark(var(--gray-10), var(--gray-5));
30
- --theme-input-border-focus: light-dark(var(--gray-10), var(--gray-5));
31
-
32
- --theme-input-outline: transparent;
33
- --theme-input-outline-hover: light-dark(var(--gray-10), var(--gray-1));
34
- --theme-input-outline-focus: light-dark(var(--gray-10), var(--gray-1));
35
-
36
- --theme-input-text: var(--gray-0);
37
- --theme-input-text-hover: var(--gray-0);
38
- --theme-input-text-focus: var(--gray-0);
39
- --theme-input-placeholder: light-dark(var(--gray-7), var(--gray-5));
40
-
41
- /* Checkboxes & Radio buttons */
42
- /* --theme-checkbox-label-text-color: light-dark(var(--gray-11), var(--gray-1)); */
43
- /* --theme-checkbox-decorator-color: var(--green-10); */
44
- /* --theme-checkbox-symbol-surface: var(--green-10); */
45
- /* --theme-checkbox-symbol-color: light-dark(var(--gray-11), var(--gray-1)); */
46
-
47
- /* a11y */
48
- --theme-focus-visible-shadow: var(--colour-theme-1);
49
- --theme-focus-visible-outline: var(--colour-theme-1);
50
-
51
- /* Buttons */
52
- --theme-button-surface: light-dark(var(--green-5), var(--green-10));
53
- --theme-button-surface-hover: light-dark(var(--green-6), var(--green-12));
54
-
55
- --theme-button-border: light-dark(var(--green-9), var(--green-4));
56
- --theme-button-border-hover: light-dark(var(--green-10), var(--green-5));
57
- --theme-button-border-focus: light-dark(var(--green-10), var(--green-5));
58
-
59
- --theme-button-outline: transparent;
60
- --theme-button-outline-hover: light-dark(var(--green-10), var(--green-5));
61
- --theme-button-outline-focus: light-dark(var(--green-10), var(--green-5));
62
-
63
- --theme-button-text: var(--green-0);
64
- --theme-button-text-hover: var(--green-0);
65
- --theme-button-text-focus: var(--green-0);
66
- }
@@ -1,31 +0,0 @@
1
- [data-theme='tertiary'] {
2
- --colour-theme-0: var(--gray-0);
3
- --colour-theme-1: var(--gray-1);
4
- --colour-theme-2: var(--gray-2);
5
- --colour-theme-3: var(--gray-3);
6
- --colour-theme-4: var(--gray-4);
7
- --colour-theme-5: var(--gray-5);
8
- --colour-theme-6: var(--gray-6);
9
- --colour-theme-7: var(--gray-7);
10
- --colour-theme-8: var(--gray-8);
11
- --colour-theme-9: var(--gray-9);
12
- --colour-theme-10: var(--gray-10);
13
- --colour-theme-11: var(--gray-11);
14
- --colour-theme-12: var(--gray-12);
15
-
16
- /* Buttons */
17
- --theme-button-surface: light-dark(var(--gray-5), var(--gray-4));
18
- --theme-button-surface-hover: light-dark(var(--gray-6), var(--gray-5));
19
-
20
- --theme-button-border: light-dark(var(--gray-9), var(--gray-4));
21
- --theme-button-border-hover: light-dark(var(--gray-10), var(--gray-5));
22
- --theme-button-border-focus: light-dark(var(--gray-10), var(--gray-5));
23
-
24
- --theme-button-outline: transparent;
25
- --theme-button-outline-hover: light-dark(var(--gray-10), var(--gray-5));
26
- --theme-button-outline-focus: light-dark(var(--gray-10), var(--gray-5));
27
-
28
- --theme-button-text: var(--gray-0);
29
- --theme-button-text-hover: var(--gray-0);
30
- --theme-button-text-focus: var(--gray-0);
31
- }
@@ -1,68 +0,0 @@
1
- :root {
2
- [data-theme='warning'] {
3
- --colour-theme-0: var(--orange-0);
4
- --colour-theme-1: var(--orange-1);
5
- --colour-theme-2: var(--orange-2);
6
- --colour-theme-3: var(--orange-3);
7
- --colour-theme-4: var(--orange-4);
8
- --colour-theme-5: var(--orange-5);
9
- --colour-theme-6: var(--orange-6);
10
- --colour-theme-7: var(--orange-7);
11
- --colour-theme-8: var(--orange-8);
12
- --colour-theme-9: var(--orange-9);
13
- --colour-theme-10: var(--orange-10);
14
- --colour-theme-11: var(--orange-11);
15
- --colour-theme-12: var(--orange-12);
16
-
17
- /* Generic */
18
- --theme-box-shadow: var(--colour-theme-12);
19
-
20
- /* Fieldset & Label */
21
- --form-fieldset-legend-color: light-dark(var(--gray-12), var(--gray-1));
22
- --form-label-color: light-dark(var(--gray-12), var(--gray-1));
23
-
24
- /* Input Elements */
25
- --theme-input-surface: light-dark(var(--gray-1), var(--gray-8));
26
- --theme-input-surface-hover: light-dark(var(--gray-1), var(--gray-10));
27
- --theme-input-surface-focus: light-dark(var(--gray-1), var(--gray-10));
28
-
29
- --theme-input-border: var(--orange-10);
30
- --theme-input-border-hover: light-dark(var(--gray-10), var(--gray-5));
31
- --theme-input-border-focus: light-dark(var(--gray-10), var(--gray-5));
32
-
33
- --theme-input-outline: transparent;
34
- --theme-input-outline-hover: light-dark(var(--gray-10), var(--gray-1));
35
- --theme-input-outline-focus: light-dark(var(--gray-10), var(--gray-1));
36
-
37
- --theme-input-text: var(--gray-0);
38
- --theme-input-text-hover: var(--gray-0);
39
- --theme-input-text-focus: var(--gray-0);
40
- --theme-input-placeholder: light-dark(var(--gray-7), var(--gray-5));
41
-
42
- /* Checkboxes & Radio buttons */
43
- /* --theme-checkbox-label-text-color: light-dark(var(--gray-11), var(--gray-1)); */
44
- /* --theme-checkbox-decorator-color: var(--orange-10); */
45
- /* --theme-checkbox-symbol-surface: var(--orange-10); */
46
- /* --theme-checkbox-symbol-color: light-dark(var(--gray-11), var(--gray-1)); */
47
-
48
- /* a11y */
49
- --theme-focus-visible-shadow: var(--colour-theme-1);
50
- --theme-focus-visible-outline: var(--colour-theme-1);
51
-
52
- /* Buttons */
53
- --theme-button-surface: light-dark(var(--orange-5), var(--orange-10));
54
- --theme-button-surface-hover: light-dark(var(--orange-6), var(--orange-12));
55
-
56
- --theme-button-border: light-dark(var(--orange-9), var(--orange-4));
57
- --theme-button-border-hover: light-dark(var(--orange-10), var(--orange-5));
58
- --theme-button-border-focus: light-dark(var(--orange-10), var(--orange-5));
59
-
60
- --theme-button-outline: transparent;
61
- --theme-button-outline-hover: light-dark(var(--orange-10), var(--orange-5));
62
- --theme-button-outline-focus: light-dark(var(--orange-10), var(--orange-5));
63
-
64
- --theme-button-text: var(--orange-0);
65
- --theme-button-text-hover: var(--orange-0);
66
- --theme-button-text-focus: var(--orange-0);
67
- }
68
- }
@@ -1,9 +0,0 @@
1
- @import './_default';
2
- @import './_primary';
3
- @import './_secondary';
4
- @import './_tertiary';
5
- @import './_error';
6
- @import './_success';
7
- @import './_warning';
8
- @import './_info';
9
- @import './_ghost';
@@ -1,2 +0,0 @@
1
- @import './utility-classes';
2
- @import './vars';
@@ -1,217 +0,0 @@
1
- .heading-1 {
2
- font-size: var(--step-8);
3
- font-weight: bold;
4
- line-height: 1.3;
5
- }
6
-
7
- .heading-2 {
8
- font-size: var(--step-7);
9
- /* font-weight: bold; */
10
- font-variation-settings: 'wght' 500;
11
- line-height: 1.3;
12
- }
13
-
14
- .heading-3 {
15
- font-size: var(--step-6);
16
- font-weight: bold;
17
- line-height: 1.3;
18
- }
19
-
20
- .heading-4 {
21
- font-size: var(--step-5);
22
- font-weight: bold;
23
- line-height: 1.3;
24
- }
25
-
26
- .heading-5 {
27
- font-size: var(--step-4);
28
- font-weight: bold;
29
- line-height: 1.3;
30
- }
31
-
32
- .heading-6 {
33
- font-size: var(--step-3);
34
- font-weight: bold;
35
- line-height: 1.3;
36
- }
37
-
38
- /* Body text */
39
-
40
- .body-large {
41
- font-size: var(--step-6);
42
- font-weight: normal;
43
- line-height: 1.5;
44
- }
45
-
46
- .body-medium {
47
- font-size: var(--step-5);
48
- font-weight: normal;
49
- line-height: 1.5;
50
- }
51
-
52
- .body-normal {
53
- font-size: var(--step-4);
54
- font-weight: normal;
55
- line-height: 1.5;
56
- }
57
-
58
- .body-small {
59
- font-size: var(--step--0);
60
- font-weight: normal;
61
- line-height: 1.5;
62
- }
63
-
64
- .body-xsmall {
65
- font-size: var(--step-2);
66
- font-weight: normal;
67
- line-height: 1.5;
68
- }
69
-
70
- .body-large-semibold {
71
- font-size: var(--step-6);
72
- font-weight: 500;
73
- line-height: 1.5;
74
- }
75
-
76
- .body-medium-semibold {
77
- font-size: var(--step-5);
78
- font-weight: 500;
79
- line-height: 1.5;
80
- }
81
-
82
- .body-normal-semibold {
83
- font-size: var(--step-4);
84
- font-weight: 500;
85
- line-height: 1.5;
86
- }
87
-
88
- .body-small-semibold {
89
- font-size: var(--step-3);
90
- font-weight: 500;
91
- line-height: 1.5;
92
- }
93
-
94
- .body-xsmall-semibold {
95
- font-size: var(--step-2);
96
- font-weight: 500;
97
- line-height: 1.5;
98
- }
99
-
100
- .body-large-bold {
101
- font-size: var(--step-6);
102
- font-weight: bold;
103
- line-height: 1.5;
104
- }
105
-
106
- .body-medium-bold {
107
- font-size: var(--step-5);
108
- font-weight: bold;
109
- line-height: 1.5;
110
- }
111
-
112
- .body-normal-bold {
113
- font-size: var(--step-4);
114
- font-weight: bold;
115
- line-height: 1.5;
116
- }
117
-
118
- .body-small-bold {
119
- font-size: var(--step-3);
120
- font-weight: bold;
121
- line-height: 1.5;
122
- }
123
-
124
- .body-xsmall-bold {
125
- font-size: var(--step-2);
126
- font-weight: bold;
127
- line-height: 1.5;
128
- }
129
-
130
- /* Links */
131
-
132
- .link-large {
133
- color: var(--theme-link-default);
134
- font-size: var(--step-6);
135
- font-weight: 600;
136
- line-height: 1.5;
137
- text-decoration: underline;
138
-
139
- &:visited {
140
- color: var(--theme-link-default);
141
- }
142
- }
143
-
144
- .link-medium {
145
- color: var(--theme-link-default);
146
- font-size: var(--step-5);
147
- font-weight: 600;
148
- line-height: 1.5;
149
- text-decoration: underline;
150
-
151
- &:visited {
152
- color: var(--theme-link-default);
153
- }
154
- }
155
-
156
- .link-normal {
157
- color: var(--theme-link-default);
158
- font-size: var(--step-4);
159
- font-weight: 600;
160
- line-height: 1.5;
161
- text-decoration: underline;
162
-
163
- &:visited,
164
- &:active {
165
- color: var(--theme-link-default);
166
- }
167
- }
168
-
169
- .link-small {
170
- color: var(--theme-link-default);
171
- font-size: var(--step-3);
172
- font-weight: 600;
173
- line-height: 1.5;
174
- text-decoration: underline;
175
-
176
- &:visited {
177
- color: var(--theme-link-default);
178
- }
179
- }
180
-
181
- .link-xsmall {
182
- color: var(--theme-link-default);
183
- font-size: var(--step-2);
184
- font-weight: 600;
185
- line-height: 1.5;
186
- text-decoration: underline;
187
-
188
- &:visited {
189
- color: var(--theme-link-default);
190
- }
191
- }
192
-
193
- .italic {
194
- font-style: italic;
195
- }
196
-
197
- .wght-300 {
198
- font-variation-settings: 'wght' 300;
199
- }
200
- .wght-400 {
201
- font-variation-settings: 'wght' 400;
202
- }
203
- .wght-500 {
204
- font-variation-settings: 'wght' 500;
205
- }
206
- .wght-600 {
207
- font-variation-settings: 'wght' 600;
208
- }
209
- .wght-700 {
210
- font-variation-settings: 'wght' 700;
211
- }
212
- .wght-800 {
213
- font-variation-settings: 'wght' 800;
214
- }
215
- .wght-900 {
216
- font-variation-settings: 'wght' 900;
217
- }
@@ -1,29 +0,0 @@
1
- /* Using the font-variation-settings property. */
2
-
3
- .fvs-wght-100 {
4
- font-variation-settings: 'wght' 100;
5
- }
6
- .fvs-wght-200 {
7
- font-variation-settings: 'wght' 200;
8
- }
9
- .fvs-wght-300 {
10
- font-variation-settings: 'wght' 300;
11
- }
12
- .fvs-wght-400 {
13
- font-variation-settings: 'wght' 400;
14
- }
15
- .fvs-wght-500 {
16
- font-variation-settings: 'wght' 500;
17
- }
18
- .fvs-wght-600 {
19
- font-variation-settings: 'wght' 600;
20
- }
21
- .fvs-wght-700 {
22
- font-variation-settings: 'wght' 700;
23
- }
24
- .fvs-wght-800 {
25
- font-variation-settings: 'wght' 800;
26
- }
27
- .fvs-wght-900 {
28
- font-variation-settings: 'wght' 900;
29
- }
@@ -1,39 +0,0 @@
1
- /* By numeric step */
2
- .wght-100 {
3
- font-weight: 100;
4
- }
5
- .wght-200 {
6
- font-weight: 200;
7
- }
8
- .wght-300 {
9
- font-weight: 300;
10
- }
11
- .wght-400 {
12
- font-weight: 400;
13
- }
14
- .wght-500 {
15
- font-weight: 500;
16
- }
17
- .wght-600 {
18
- font-weight: 600;
19
- }
20
- .wght-700 {
21
- font-weight: 700;
22
- }
23
- .wght-800 {
24
- font-weight: 800;
25
- }
26
- .wght-900 {
27
- font-weight: 900;
28
- }
29
-
30
- /* By named weight */
31
- .light {
32
- font-weight: light;
33
- }
34
- .normal {
35
- font-weight: normal;
36
- }
37
- .bold {
38
- font-weight: bold;
39
- }
@@ -1,3 +0,0 @@
1
- @import './_generic-font-classes.css';
2
- @import './_generic-font-variation-settings.css';
3
- @import './_generic-font-weights.css';
@@ -1,12 +0,0 @@
1
- :root {
2
- --step-10: clamp(4.0311rem, 3.36rem + 3.3555vw, 5.9605rem);
3
- --step-9: clamp(3.3592rem, 2.8691rem + 2.4507vw, 4.7684rem);
4
- --step-8: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
5
- --step-7: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem);
6
- --step-6: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem);
7
- --step-5: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
8
- --step-4: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
9
- --step-3: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
10
- --step-2: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
11
- --step-1: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
12
- }
@@ -1 +0,0 @@
1
- @import './_reponsive-font-sizes.css';
@@ -1,13 +0,0 @@
1
- /* @link https://utopia.fyi/clamp/calculator?a=360,1240,1—2|2—4|4—8|6—12|8—16|10—20|12—24|16—32|20—40 */
2
-
3
- :root {
4
- --fluid-1-2: clamp(0.0625rem, 0.0369rem + 0.1136vw, 0.125rem);
5
- --fluid-2-4: clamp(0.125rem, 0.0739rem + 0.2273vw, 0.25rem);
6
- --fluid-4-8: clamp(0.25rem, 0.1477rem + 0.4545vw, 0.5rem);
7
- --fluid-6-12: clamp(0.375rem, 0.2216rem + 0.6818vw, 0.75rem);
8
- --fluid-8-16: clamp(0.5rem, 0.2955rem + 0.9091vw, 1rem);
9
- --fluid-10-20: clamp(0.625rem, 0.3693rem + 1.1364vw, 1.25rem);
10
- --fluid-12-24: clamp(0.75rem, 0.4432rem + 1.3636vw, 1.5rem);
11
- --fluid-16-32: clamp(1rem, 0.5909rem + 1.8182vw, 2rem);
12
- --fluid-20-40: clamp(1.25rem, 0.7386rem + 2.2727vw, 2.5rem);
13
- }
@@ -1,13 +0,0 @@
1
- @keyframes autoRotateAnimation {
2
- from {
3
- transform: rotate(0deg);
4
- }
5
- to {
6
- transform: rotate(360deg);
7
- }
8
- }
9
-
10
- .auto-rotate {
11
- animation: autoRotateAnimation;
12
- animation-timeline: view();
13
- }
@@ -1,16 +0,0 @@
1
- .entry-exit-blur {
2
- animation: entryExitBlurAnimation linear both;
3
- animation-timeline: view();
4
- }
5
- @keyframes entryExitBlurAnimation {
6
- 0% {
7
- filter: blur(40px);
8
- }
9
- 45%,
10
- 55% {
11
- filter: blur(0px);
12
- }
13
- 100% {
14
- filter: blur(40px);
15
- }
16
- }
@@ -1,15 +0,0 @@
1
- @keyframes entrySlideInAnimation {
2
- from {
3
- opacity: 0;
4
- transform: translateY(200px);
5
- }
6
- to {
7
- opacity: 1;
8
- transform: translateY(0);
9
- }
10
- }
11
-
12
- .entry-slide-in {
13
- animation: entrySlideInAnimation both;
14
- animation-timeline: view(70% 5%);
15
- }
@@ -1,15 +0,0 @@
1
- @keyframes entryZoomRevealAnimation {
2
- from {
3
- opacity: 0;
4
- transform: translateY(200px) scale(0.3);
5
- }
6
- to {
7
- opacity: 1;
8
- transform: translateY(0) scale(1);
9
- }
10
- }
11
-
12
- .entry-zoom-reveal {
13
- animation: entryZoomRevealAnimation both;
14
- animation-timeline: view(70% 5%);
15
- }
@@ -1,4 +0,0 @@
1
- @import './_entry-zoom-reveal';
2
- @import './_entry-slide-in';
3
- @import './_entry-exit-blur';
4
- @import './_auto-rotate';
@@ -1,2 +0,0 @@
1
- @import './_fluid-spacing';
2
- @import './animations/';