@newlogic-digital/ui 3.4.2 → 3.5.0

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 (144) hide show
  1. package/README.md +10 -14
  2. package/package.json +12 -11
  3. package/src/data/main.json +2 -7
  4. package/src/emails/{templates/Content.twig → templates.test/Content.latte} +10 -2
  5. package/src/emails/{templates/Header.twig → templates.test/Header.latte} +1 -1
  6. package/src/emails/{templates/Layout.twig → templates.test/Layout.latte} +1 -1
  7. package/src/icons.svg +34 -28
  8. package/src/scripts/Components/CookieConsent.js +22 -27
  9. package/src/scripts/Layout/Header.js +15 -13
  10. package/src/scripts/Layout/Main.js +28 -25
  11. package/src/scripts/Libraries/+.js +2 -4
  12. package/src/scripts/Libraries/Dialog.js +11 -9
  13. package/src/scripts/Libraries/Drawer.js +21 -24
  14. package/src/scripts/Libraries/Form.js +7 -14
  15. package/src/scripts/Libraries/Naja.js +5 -7
  16. package/src/scripts/Libraries/ReCaptcha.js +7 -12
  17. package/src/scripts/Libraries/Ripple.js +6 -22
  18. package/src/scripts/Libraries/Script.js +1 -2
  19. package/src/scripts/Libraries/Slider.js +160 -0
  20. package/src/scripts/Libraries/Stimulus.js +0 -1
  21. package/src/scripts/Libraries/Swup.js +38 -10
  22. package/src/scripts/Libraries/Tippy.js +17 -20
  23. package/src/scripts/Ui/+.js +3 -3
  24. package/src/scripts/Ui/Check.js +8 -0
  25. package/src/scripts/Ui/Control.js +186 -0
  26. package/src/scripts/Ui/ControlSelect.js +24 -0
  27. package/src/scripts/Ui/Text.js +8 -10
  28. package/src/scripts/Utils/Functions/+.js +3 -2
  29. package/src/scripts/Utils/Functions/importScript.js +1 -1
  30. package/src/scripts/Utils/Functions/importStyle.js +1 -1
  31. package/src/scripts/Utils/Functions/inputStep.js +9 -0
  32. package/src/scripts/Utils/Functions/inputValidity.js +57 -0
  33. package/src/scripts/Utils/Functions/loadStimulus.js +10 -10
  34. package/src/scripts/Utils/Functions/replaceScript.js +4 -0
  35. package/src/scripts/Utils/Functions/replaceTag.js +1 -5
  36. package/src/scripts/Utils/cdn.js +1 -2
  37. package/src/scripts/Utils/global.js +1 -1
  38. package/src/styles/Components/+.css +1 -1
  39. package/src/styles/Components/CookieConsent.css +22 -25
  40. package/src/styles/Components/Dialog/Default.css +8 -25
  41. package/src/styles/Components/Dropdown/Default.css +6 -3
  42. package/src/styles/Components/Field.css +1 -0
  43. package/src/styles/Layout/Header.css +13 -17
  44. package/src/styles/Layout/Main.css +8 -75
  45. package/src/styles/Layout/Nav.css +31 -27
  46. package/src/styles/Libraries/+.css +1 -2
  47. package/src/styles/Libraries/Datepicker.css +38 -229
  48. package/src/styles/Libraries/Dialog.css +1 -35
  49. package/src/styles/Libraries/Drawer.css +15 -21
  50. package/src/styles/Libraries/Hint.css +86 -101
  51. package/src/styles/Libraries/Pickr.css +13 -0
  52. package/src/styles/Libraries/Ripple.css +1 -16
  53. package/src/styles/Libraries/Tippy.css +25 -39
  54. package/src/styles/Ui/+.css +6 -5
  55. package/src/styles/Ui/Badge.css +7 -82
  56. package/src/styles/Ui/Btn.css +13 -226
  57. package/src/styles/Ui/Check.css +1 -0
  58. package/src/styles/Ui/Control.css +47 -0
  59. package/src/styles/Ui/ControlSelect.css +66 -0
  60. package/src/styles/Ui/Dot.css +22 -0
  61. package/src/styles/Ui/Group.css +1 -0
  62. package/src/styles/Ui/Heading.css +3 -22
  63. package/src/styles/Ui/Image.css +1 -17
  64. package/src/styles/Ui/Info.css +1 -0
  65. package/src/styles/Ui/Label.css +1 -14
  66. package/src/styles/Ui/Link.css +2 -41
  67. package/src/styles/Ui/Notice.css +1 -47
  68. package/src/styles/Ui/Progress.css +1 -56
  69. package/src/styles/Ui/Switch.css +1 -70
  70. package/src/styles/Ui/Text.css +4 -250
  71. package/src/styles/Ui/Title.css +5 -13
  72. package/src/styles/Utils/+.css +8 -10
  73. package/src/styles/Utils/breakpoints.css +1 -9
  74. package/src/styles/Utils/config.css +5 -0
  75. package/src/styles/Utils/default.css +8 -26
  76. package/src/styles/Utils/icons.css +3 -7
  77. package/src/styles/Utils/keyframes.css +1 -182
  78. package/src/styles/Utils/{tailwind/utilities.css → tailwind.css} +32 -30
  79. package/src/styles/Utils/theme/main.css +14 -23
  80. package/src/styles/main.css +19 -14
  81. package/src/styles/tinymce.css +34 -0
  82. package/src/templates/Components/CookieConsent.latte +28 -0
  83. package/src/templates/Components/Dialogs/{Basic.twig → Basic.latte} +9 -9
  84. package/src/templates/Layout/Footer.latte +0 -0
  85. package/src/templates/Layout/{Header.twig → Header.latte} +15 -17
  86. package/src/templates/Layout/Main.latte +62 -0
  87. package/src/templates/Sections/Gdpr.latte +127 -0
  88. package/src/templates/Sections/Site.latte +141 -0
  89. package/src/templates/Sections/Ui/Docs/@intro.html +13 -62
  90. package/src/templates/Sections/Ui/Docs/@nav.html +41 -92
  91. package/src/templates/Sections/Ui/Docs/@styles.html +2 -6
  92. package/src/templates/Sections/Ui/Docs/Default.latte +1059 -0
  93. package/src/templates/Sections/Ui/Icons.html +11 -9
  94. package/src/templates/Sections/Ui/Intro.html +66 -37
  95. package/src/templates/Sections/Ui.latte +8 -0
  96. package/src/templates/Ui/+.latte +5 -0
  97. package/src/templates/Ui/Check.latte +7 -0
  98. package/src/templates/Ui/Control.latte +9 -0
  99. package/src/templates/Ui/ControlDate.latte +14 -0
  100. package/src/templates/Ui/ControlSelect.latte +9 -0
  101. package/src/templates/Ui/ControlTime.latte +14 -0
  102. package/src/templates/Utils/sections.latte +3 -0
  103. package/src/views/dialog/basic.json.latte +5 -0
  104. package/src/views/dropdown/{tippy.json.twig → tippy.json.latte} +7 -4
  105. package/src/views/email/email.latte +6 -0
  106. package/src/views/email/email.test.latte +6 -0
  107. package/src/views/gdpr.json +1 -1
  108. package/src/views/index.json +1 -1
  109. package/src/views/site.json +11 -0
  110. package/src/views/ui-icons.json +1 -1
  111. package/src/views/ui.json +1 -1
  112. package/vite.config.js +2 -8
  113. package/src/scripts/Libraries/Anchor.js +0 -35
  114. package/src/scripts/Libraries/NativeSlider.js +0 -138
  115. package/src/scripts/Libraries/Tabs.js +0 -16
  116. package/src/scripts/Ui/Checkbox.js +0 -10
  117. package/src/scripts/Ui/Input.js +0 -259
  118. package/src/scripts/Ui/Select.js +0 -53
  119. package/src/scripts/Utils/Functions/checkValidity.js +0 -44
  120. package/src/scripts/Utils/Functions/dataValue.js +0 -52
  121. package/src/styles/Components/Form/+.css +0 -1
  122. package/src/styles/Components/Form/CookieConsent.css +0 -31
  123. package/src/styles/Libraries/NativeSlider.css +0 -60
  124. package/src/styles/Libraries/Tabs.css +0 -19
  125. package/src/styles/Ui/Checkbox.css +0 -150
  126. package/src/styles/Ui/Icon.css +0 -33
  127. package/src/styles/Ui/Input.css +0 -467
  128. package/src/styles/Ui/Radio.css +0 -4
  129. package/src/styles/Ui/Select.css +0 -137
  130. package/src/styles/Utils/normalize.css +0 -223
  131. package/src/styles/Utils/tailwind/+.css +0 -3
  132. package/src/styles/Utils/tailwind/base.css +0 -3
  133. package/src/styles/Utils/tailwind/gutters.css +0 -346
  134. package/src/styles/Utils/vars.css +0 -91
  135. package/src/styles/Utils/vendor.css +0 -2
  136. package/src/templates/Components/CookieConsent.twig +0 -30
  137. package/src/templates/Layout/Main.twig +0 -49
  138. package/src/templates/Sections/Gdpr.twig +0 -64
  139. package/src/templates/Sections/Ui/Docs/Default.twig +0 -1600
  140. package/src/templates/Sections/Ui.twig +0 -8
  141. package/src/templates/Utils/sections.twig +0 -3
  142. package/src/views/dialog/basic.json.twig +0 -3
  143. package/src/views/email/email.twig +0 -6
  144. /package/src/{templates/Layout/Footer.twig → emails/templates/.gitkeep} +0 -0
@@ -1,137 +0,0 @@
1
- .ui-select {
2
- &:--state-active {
3
- & label {
4
- transform: translateY(calc(var(--ui-input-size) / 1.4 * -1)) scale(0.8);
5
- }
6
- }
7
-
8
- &::after {
9
- width: 1em;
10
- height: 1em;
11
- background-color: currentColor;
12
- content: "";
13
- position: absolute;
14
- z-index: 1;
15
- font-size: 1.5rem;
16
- right: calc(var(--ui-input-height) / 4);
17
- top: calc(var(--ui-input-height) / 2);
18
- margin-top: -0.75rem;
19
- will-change: transform;
20
- transition: transform 200ms;
21
- mask: var(--icon-angle-down);
22
- pointer-events: none;
23
-
24
- @nest :--state-focus& {
25
- @nest .no-touch:not(.macintel) & {
26
- transform: rotate(180deg);
27
- }
28
- }
29
- }
30
-
31
- & select {
32
- position: relative;
33
- z-index: 1;
34
- text-overflow: ellipsis;
35
- -webkit-appearance: none;
36
- -moz-appearance: none;
37
- cursor: pointer;
38
- user-select: none;
39
-
40
- @nest [tabindex]& {
41
- pointer-events: none;
42
- }
43
-
44
- @nest [tabindex]:--state-focus& {
45
- --ui-input-border-opacity: 1;
46
- --ui-input-border-color: var(--color-accent);
47
-
48
- box-shadow:
49
- 0 0 0 0 rgb(var(--color-current)),
50
- 0 0 0 3px rgb(var(--color-accent) / 0.15),
51
- 0 1px 2px 0 rgb(var(--color-current) / 0.05);
52
-
53
- @nest .dark & {
54
- box-shadow:
55
- 0 0 0 0 rgb(var(--color-current)),
56
- 0 0 0 3px rgb(var(--color-accent) / 0.3),
57
- 0 1px 2px 0 rgb(var(--color-current) / 0.05);
58
- }
59
- }
60
-
61
- @nest :not(:--state-active)& {
62
- &:not([data-placeholder]) {
63
- font-size: 0;
64
- }
65
- }
66
-
67
- &:focus {
68
- outline: 0;
69
- }
70
-
71
- &:-moz-focusring {
72
- color: inherit;
73
- text-shadow: 0 0 0 #000;
74
- }
75
- }
76
-
77
- & option {
78
- font-size: var(--ui-input-size);
79
- color: rgb(var(--color-default));
80
- background-color: rgb(var(--color-background));
81
-
82
- &[disabled] {
83
- opacity: 0.5;
84
- }
85
- }
86
-
87
- & > [class^="icon-"] {
88
- &.icon-r {
89
- right: calc(var(--ui-input-px) + var(--ui-input-icon-size) + var(--ui-input-icon-spacing));
90
- }
91
- }
92
-
93
- & > div[aria-hidden] {
94
- --color-current: var(--color-default);
95
-
96
- will-change: transform;
97
- border-radius: var(--ui-input-radius);
98
- position: absolute;
99
- background-color: rgb(var(--color-background));
100
- z-index: 100;
101
- left: 0;
102
- right: 0;
103
- top: 100%;
104
- margin-top: 0.5rem;
105
- border: 1px solid rgb(var(--color-current) / 0.075);
106
- transform: scaleY(0);
107
- opacity: 0;
108
- transition: var(--transition-opacity), var(--transition-transform);
109
- transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
110
- transition-duration: 200ms;
111
- backface-visibility: hidden;
112
- transform-origin: center top;
113
- user-select: none;
114
- max-height: 12rem;
115
- overflow-y: auto;
116
- box-shadow: 0 0.15em 1.5em 0 rgb(var(--color-dark) / 0.05), 0 0 1em 0 rgb(var(--color-dark) / 0.05);
117
- padding: 0.375rem;
118
- color: rgb(var(--color-current));
119
-
120
- @nest [data-state*="focus"]& {
121
- opacity: 1;
122
- transform: none;
123
- }
124
-
125
- & [data-option] {
126
- padding: calc(var(--ui-input-px) / 1.5) var(--ui-input-px);
127
- cursor: pointer;
128
- transition: var(--transition-background);
129
- font-size: var(--ui-input-size);
130
- border-radius: var(--radius);
131
-
132
- @nest .no-touch &:is(:hover, :focus-visible) {
133
- background-color: rgb(var(--color-accent) / 0.1);
134
- }
135
- }
136
- }
137
- }
@@ -1,223 +0,0 @@
1
- /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
2
-
3
- /**
4
- 1. Correct the line height in all browsers.
5
- 2. Prevent adjustments of font size after orientation changes in iOS.
6
- 3. Use a more readable tab size (opinionated).
7
- */
8
-
9
- html {
10
- -webkit-text-size-adjust: 100%; /* 2 */
11
- tab-size: 4; /* 3 */
12
- }
13
-
14
- /*
15
- Sections
16
- ========
17
- */
18
-
19
- /**
20
- 1. Remove the margin in all browsers.
21
- */
22
-
23
- body {
24
- margin: 0; /* 1 */
25
- }
26
-
27
- /*
28
- Text-level semantics
29
- ====================
30
- */
31
-
32
- /**
33
- Add the correct text decoration in Chrome, Edge, and Safari.
34
- */
35
-
36
- abbr[title] {
37
- text-decoration: underline dotted;
38
- }
39
-
40
- /**
41
- Add the correct font weight in Edge and Safari.
42
- */
43
-
44
- b,
45
- strong {
46
- font-weight: var(--font-bold);
47
- }
48
-
49
- /**
50
- 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
51
- 2. Correct the odd 'em' font sizing in all browsers.
52
- */
53
-
54
- code,
55
- kbd,
56
- samp,
57
- pre {
58
- font-family:
59
- ui-monospace,
60
- SFMono-Regular,
61
- Consolas,
62
- 'Liberation Mono',
63
- Menlo,
64
- monospace; /* 1 */
65
- font-size: 1em; /* 2 */
66
- }
67
-
68
- /**
69
- Add the correct font size in all browsers.
70
- */
71
-
72
- small {
73
- font-size: 80%;
74
- }
75
-
76
- /**
77
- Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
78
- */
79
-
80
- sub,
81
- sup {
82
- font-size: 75%;
83
- line-height: 0;
84
- position: relative;
85
- vertical-align: baseline;
86
- }
87
-
88
- sub {
89
- bottom: -0.25em;
90
- }
91
-
92
- sup {
93
- top: -0.5em;
94
- }
95
-
96
- /*
97
- Tabular data
98
- ============
99
- */
100
-
101
- /**
102
- 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
103
- 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
104
- */
105
-
106
- table {
107
- text-indent: 0; /* 1 */
108
- border-color: inherit; /* 2 */
109
- }
110
-
111
- /*
112
- Forms
113
- =====
114
- */
115
-
116
- /**
117
- 1. Change the font styles in all browsers.
118
- 2. Remove the margin in Firefox and Safari.
119
- */
120
-
121
- button,
122
- input,
123
- optgroup,
124
- select,
125
- textarea {
126
- font-family: inherit; /* 1 */
127
- font-size: 100%; /* 1 */
128
- line-height: 1.15; /* 1 */
129
- margin: 0; /* 2 */
130
- }
131
-
132
- /**
133
- Remove the inheritance of text transform in Edge and Firefox.
134
- */
135
-
136
- button,
137
- select {
138
- text-transform: none;
139
- }
140
-
141
- /**
142
- Remove the inner border and padding in Firefox.
143
- */
144
-
145
- ::-moz-focus-inner {
146
- border-style: none;
147
- padding: 0;
148
- }
149
-
150
- /**
151
- Remove the additional ':invalid' styles in Firefox.
152
- See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
153
- */
154
-
155
- :-moz-ui-invalid {
156
- box-shadow: none;
157
- }
158
-
159
- /**
160
- Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
161
- */
162
-
163
- legend {
164
- padding: 0;
165
- }
166
-
167
- /**
168
- Add the correct vertical alignment in Chrome and Firefox.
169
- */
170
-
171
- progress {
172
- vertical-align: baseline;
173
- }
174
-
175
- /**
176
- Correct the cursor style of increment and decrement buttons in Safari.
177
- */
178
-
179
- ::-webkit-inner-spin-button,
180
- ::-webkit-outer-spin-button {
181
- height: auto;
182
- }
183
-
184
- /**
185
- 1. Correct the odd appearance in Chrome and Safari.
186
- 2. Correct the outline style in Safari.
187
- */
188
-
189
- [type='search'] {
190
- -webkit-appearance: textfield; /* 1 */
191
- outline-offset: -2px; /* 2 */
192
- }
193
-
194
- /**
195
- Remove the inner padding in Chrome and Safari on macOS.
196
- */
197
-
198
- ::-webkit-search-decoration {
199
- -webkit-appearance: none;
200
- }
201
-
202
- /**
203
- 1. Correct the inability to style clickable types in iOS and Safari.
204
- 2. Change font properties to 'inherit' in Safari.
205
- */
206
-
207
- ::-webkit-file-upload-button {
208
- -webkit-appearance: button; /* 1 */
209
- font: inherit; /* 2 */
210
- }
211
-
212
- /*
213
- Interactive
214
- ===========
215
- */
216
-
217
- /*
218
- Add the correct display in Chrome and Safari.
219
- */
220
-
221
- summary {
222
- display: list-item;
223
- }
@@ -1,3 +0,0 @@
1
- @import "base.css";
2
- @import "gutters.css";
3
- @import "utilities.css";
@@ -1,3 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
@@ -1,346 +0,0 @@
1
- @layer utilities {
2
- .row {
3
- --gx: 0rem;
4
- --gy: 0rem;
5
-
6
- display: flex;
7
- margin: calc(var(--gy) / -2) calc(var(--gx) / -2) calc(var(--gy) / -2) calc(var(--gx) / -2);
8
-
9
- & > * {
10
- padding: calc(var(--gy) / 2) calc(var(--gx) / 2) calc(var(--gy) / 2) calc(var(--gx) / 2);
11
- }
12
- }
13
-
14
- .row-y {
15
- --gy: 0rem;
16
-
17
- display: flex;
18
- margin-top: calc(var(--gy) / -2);
19
- margin-bottom: calc(var(--gy) / -2);
20
-
21
- & > * {
22
- padding-top: calc(var(--gy) / 2);
23
- padding-bottom: calc(var(--gy) / 2);
24
- }
25
- }
26
-
27
- .row-x {
28
- --gx: 0rem;
29
-
30
- display: flex;
31
- margin-left: calc(var(--gx) / -2);
32
- margin-right: calc(var(--gx) / -2);
33
-
34
- & > * {
35
- padding-left: calc(var(--gx) / 2);
36
- padding-right: calc(var(--gx) / 2);
37
- }
38
- }
39
-
40
- .col {
41
- display: flex;
42
-
43
- &:not([class*="flex-row"]) {
44
- flex-direction: column;
45
- }
46
- }
47
-
48
- .g-0 {
49
- --gx: 0rem;
50
- --gy: 0rem;
51
- }
52
-
53
- .g-1 {
54
- --gx: 0.25rem;
55
- --gy: 0.25rem;
56
- }
57
-
58
- .g-2 {
59
- --gx: 0.5rem;
60
- --gy: 0.5rem;
61
- }
62
-
63
- .g-3 {
64
- --gx: 0.75rem;
65
- --gy: 0.75rem;
66
- }
67
-
68
- .g-4 {
69
- --gx: 1rem;
70
- --gy: 1rem;
71
- }
72
-
73
- .g-5 {
74
- --gx: 1.25rem;
75
- --gy: 1.25rem;
76
- }
77
-
78
- .g-6 {
79
- --gx: 1.5rem;
80
- --gy: 1.5rem;
81
- }
82
-
83
- .g-7 {
84
- --gx: 1.75rem;
85
- --gy: 1.75rem;
86
- }
87
-
88
- .g-8 {
89
- --gx: 2rem;
90
- --gy: 2rem;
91
- }
92
-
93
- .g-9 {
94
- --gx: 2.25rem;
95
- --gy: 2.25rem;
96
- }
97
-
98
- .g-10 {
99
- --gx: 2.5rem;
100
- --gy: 2.5rem;
101
- }
102
-
103
- .g-11 {
104
- --gx: 2.75rem;
105
- --gy: 2.75rem;
106
- }
107
-
108
- .g-12 {
109
- --gx: 3rem;
110
- --gy: 3rem;
111
- }
112
-
113
- .g-14 {
114
- --gx: 3.5rem;
115
- --gy: 3.5rem;
116
- }
117
-
118
- .g-16 {
119
- --gx: 4rem;
120
- --gy: 4rem;
121
- }
122
-
123
- .g-20 {
124
- --gx: 5rem;
125
- --gy: 5rem;
126
- }
127
-
128
- .g-24 {
129
- --gx: 6rem;
130
- --gy: 6rem;
131
- }
132
-
133
- .g-28 {
134
- --gx: 7rem;
135
- --gy: 7rem;
136
- }
137
-
138
- .g-32 {
139
- --gx: 8rem;
140
- --gy: 8rem;
141
- }
142
-
143
- .gx-0 {
144
- --gx: 0;
145
- }
146
-
147
- .gx-1 {
148
- --gx: 0.25rem;
149
- }
150
-
151
- .gx-2 {
152
- --gx: 0.5rem;
153
- }
154
-
155
- .gx-3 {
156
- --gx: 0.75rem;
157
- }
158
-
159
- .gx-4 {
160
- --gx: 1rem;
161
- }
162
-
163
- .gx-5 {
164
- --gx: 1.25rem;
165
- }
166
-
167
- .gx-6 {
168
- --gx: 1.5rem;
169
- }
170
-
171
- .gx-7 {
172
- --gx: 1.75rem;
173
- }
174
-
175
- .gx-8 {
176
- --gx: 2rem;
177
- }
178
-
179
- .gx-9 {
180
- --gx: 2.25rem;
181
- }
182
-
183
- .gx-10 {
184
- --gx: 2.5rem;
185
- }
186
-
187
- .gx-11 {
188
- --gx: 2.75rem;
189
- }
190
-
191
- .gx-12 {
192
- --gx: 3rem;
193
- }
194
-
195
- .gx-14 {
196
- --gx: 3.5rem;
197
- }
198
-
199
- .gx-16 {
200
- --gx: 4rem;
201
- }
202
-
203
- .gx-20 {
204
- --gx: 5rem;
205
- }
206
-
207
- .gx-24 {
208
- --gx: 6rem;
209
- }
210
-
211
- .gx-28 {
212
- --gx: 7rem;
213
- }
214
-
215
- .gx-32 {
216
- --gx: 8rem;
217
- }
218
-
219
- .gy-0 {
220
- --gy: 0;
221
- }
222
-
223
- .gy-1 {
224
- --gy: 0.25rem;
225
- }
226
-
227
- .gy-2 {
228
- --gy: 0.5rem;
229
- }
230
-
231
- .gy-3 {
232
- --gy: 0.75rem;
233
- }
234
-
235
- .gy-4 {
236
- --gy: 1rem;
237
- }
238
-
239
- .gy-5 {
240
- --gy: 1.25rem;
241
- }
242
-
243
- .gy-6 {
244
- --gy: 1.5rem;
245
- }
246
-
247
- .gy-7 {
248
- --gy: 1.75rem;
249
- }
250
-
251
- .gy-8 {
252
- --gy: 2rem;
253
- }
254
-
255
- .gy-9 {
256
- --gy: 2.25rem;
257
- }
258
-
259
- .gy-10 {
260
- --gy: 2.5rem;
261
- }
262
-
263
- .gy-11 {
264
- --gy: 2.75rem;
265
- }
266
-
267
- .gy-12 {
268
- --gy: 3rem;
269
- }
270
-
271
- .gy-14 {
272
- --gy: 3.5rem;
273
- }
274
-
275
- .gy-16 {
276
- --gy: 4rem;
277
- }
278
-
279
- .gy-20 {
280
- --gy: 5rem;
281
- }
282
-
283
- .gy-24 {
284
- --gy: 6rem;
285
- }
286
-
287
- .gy-28 {
288
- --gy: 7rem;
289
- }
290
-
291
- .gy-32 {
292
- --gy: 8rem;
293
- }
294
-
295
- .col-auto {
296
- width: auto;
297
- }
298
-
299
- .col-1 {
300
- width: 8.3333%;
301
- }
302
-
303
- .col-2 {
304
- width: 16.6667%;
305
- }
306
-
307
- .col-3 {
308
- width: 25%;
309
- }
310
-
311
- .col-4 {
312
- width: 33.3333%;
313
- }
314
-
315
- .col-5 {
316
- width: 41.6667%;
317
- }
318
-
319
- .col-6 {
320
- width: 50%;
321
- }
322
-
323
- .col-7 {
324
- width: 58.3333%;
325
- }
326
-
327
- .col-8 {
328
- width: 66.6667%;
329
- }
330
-
331
- .col-9 {
332
- width: 75%;
333
- }
334
-
335
- .col-10 {
336
- width: 83.3333%;
337
- }
338
-
339
- .col-11 {
340
- width: 91.6667%;
341
- }
342
-
343
- .col-12 {
344
- width: 100%;
345
- }
346
- }