@ivds/core 0.1.1
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.
- package/CHANGELOG.md +45 -0
- package/README.md +215 -0
- package/lib/all.css +6802 -0
- package/lib/all.min.css +1 -0
- package/lib/base/base.css +215 -0
- package/lib/base/base.min.css +1 -0
- package/lib/components/_breadcrumb-mixins.scss +173 -0
- package/lib/components/_button-mixin.scss +120 -0
- package/lib/components/_card-mixin.scss +196 -0
- package/lib/components/_checkbox-mixin.scss +208 -0
- package/lib/components/_footer-mixin.scss +385 -0
- package/lib/components/_header-mixin.scss +275 -0
- package/lib/components/_navigation-mixins.scss +270 -0
- package/lib/components/_notification-mixin.scss +239 -0
- package/lib/components/_pagination-mixins.scss +280 -0
- package/lib/components/_radio-button-mixin.scss +207 -0
- package/lib/components/_tag-mixin.scss +261 -0
- package/lib/components/_text-input-mixin.scss +203 -0
- package/lib/components/all.css +3005 -0
- package/lib/components/all.min.css +1 -0
- package/lib/components/breadcrumb/breadcrumb.css +141 -0
- package/lib/components/breadcrumb/breadcrumb.min.css +1 -0
- package/lib/components/button/button.css +221 -0
- package/lib/components/button/button.min.css +1 -0
- package/lib/components/card/card.css +236 -0
- package/lib/components/card/card.min.css +1 -0
- package/lib/components/checkbox/checkbox.css +305 -0
- package/lib/components/checkbox/checkbox.min.css +1 -0
- package/lib/components/footer/footer.css +466 -0
- package/lib/components/footer/footer.min.css +1 -0
- package/lib/components/header/header.css +274 -0
- package/lib/components/header/header.min.css +1 -0
- package/lib/components/navigation/navigation.css +214 -0
- package/lib/components/navigation/navigation.min.css +1 -0
- package/lib/components/notification/notification.css +253 -0
- package/lib/components/notification/notification.min.css +1 -0
- package/lib/components/pagination/pagination.css +221 -0
- package/lib/components/pagination/pagination.min.css +1 -0
- package/lib/components/radio-button/radio-button.css +326 -0
- package/lib/components/radio-button/radio-button.min.css +1 -0
- package/lib/components/tag/tag.css +367 -0
- package/lib/components/tag/tag.min.css +1 -0
- package/lib/components/text-input/text-input.css +243 -0
- package/lib/components/text-input/text-input.min.css +1 -0
- package/lib/icons/icon-arrow-left.css +139 -0
- package/lib/icons/icon-arrow-left.min.css +1 -0
- package/lib/icons/icon-arrow-right.css +139 -0
- package/lib/icons/icon-arrow-right.min.css +1 -0
- package/lib/icons/icon-check.css +139 -0
- package/lib/icons/icon-check.min.css +1 -0
- package/lib/icons/icon-close.css +140 -0
- package/lib/icons/icon-close.min.css +1 -0
- package/lib/icons/icon-error.css +140 -0
- package/lib/icons/icon-error.min.css +1 -0
- package/lib/icons/icon-info.css +140 -0
- package/lib/icons/icon-info.min.css +1 -0
- package/lib/icons/icon-success.css +139 -0
- package/lib/icons/icon-success.min.css +1 -0
- package/lib/icons/icon-warning.css +139 -0
- package/lib/icons/icon-warning.min.css +1 -0
- package/lib/icons/icons.css +1158 -0
- package/lib/icons/icons.min.css +1 -0
- package/lib/utils/_flex.scss +200 -0
- package/lib/utils/_grid.scss +211 -0
- package/lib/utils/_layout.scss +253 -0
- package/lib/utils/_spacing.scss +260 -0
- package/lib/utils/_typography.scss +111 -0
- package/lib/utils/utils.css +2434 -0
- package/lib/utils/utils.min.css +1 -0
- package/lib/utils-only.css +2801 -0
- package/lib/utils-only.min.css +1 -0
- package/lib/variables/variables.css +2 -0
- package/lib/variables/variables.min.css +0 -0
- package/package.json +194 -0
- package/src/__tests__/example.test.scss +12 -0
- package/src/accessibility.stories.js +416 -0
- package/src/all.scss +9 -0
- package/src/base/_layout.scss +97 -0
- package/src/base/_reset.scss +85 -0
- package/src/base/_typography.scss +105 -0
- package/src/base/base.scss +6 -0
- package/src/components/all.scss +22 -0
- package/src/components/breadcrumb/_breadcrumb-mixins.scss +173 -0
- package/src/components/breadcrumb/breadcrumb.scss +68 -0
- package/src/components/breadcrumb/breadcrumb.stories.js +483 -0
- package/src/components/button/__tests__/button-mixins.test.scss +35 -0
- package/src/components/button/_button-mixin.scss +120 -0
- package/src/components/button/button.scss +126 -0
- package/src/components/button/button.stories.js +364 -0
- package/src/components/card/__tests__/card-mixins.test.scss +36 -0
- package/src/components/card/_card-mixin.scss +196 -0
- package/src/components/card/card.scss +193 -0
- package/src/components/card/card.stories.js +635 -0
- package/src/components/checkbox/_checkbox-mixin.scss +208 -0
- package/src/components/checkbox/checkbox.scss +141 -0
- package/src/components/checkbox/checkbox.stories.js +303 -0
- package/src/components/footer/_footer-mixin.scss +385 -0
- package/src/components/footer/footer.scss +86 -0
- package/src/components/footer/footer.stories.js +740 -0
- package/src/components/header/_header-mixin.scss +275 -0
- package/src/components/header/header.scss +84 -0
- package/src/components/header/header.stories.js +450 -0
- package/src/components/navigation/_navigation-mixins.scss +270 -0
- package/src/components/navigation/navigation.scss +64 -0
- package/src/components/navigation/navigation.stories.js +410 -0
- package/src/components/notification/_notification-mixin.scss +239 -0
- package/src/components/notification/notification.scss +118 -0
- package/src/components/notification/notification.stories.js +378 -0
- package/src/components/overview.stories.js +473 -0
- package/src/components/pagination/_pagination-mixins.scss +280 -0
- package/src/components/pagination/pagination.scss +76 -0
- package/src/components/pagination/pagination.stories.js +729 -0
- package/src/components/radio-button/_radio-button-mixin.scss +207 -0
- package/src/components/radio-button/radio-button.scss +178 -0
- package/src/components/radio-button/radio-button.stories.js +379 -0
- package/src/components/tag/_tag-mixin.scss +261 -0
- package/src/components/tag/tag.scss +244 -0
- package/src/components/tag/tag.stories.js +482 -0
- package/src/components/text-input/_text-input-mixin.scss +203 -0
- package/src/components/text-input/text-input.scss +150 -0
- package/src/components/text-input/text-input.stories.js +723 -0
- package/src/icons/_icon.scss +121 -0
- package/src/icons/icon-arrow-left.scss +23 -0
- package/src/icons/icon-arrow-right.scss +23 -0
- package/src/icons/icon-check.scss +23 -0
- package/src/icons/icon-close.scss +24 -0
- package/src/icons/icon-error.scss +24 -0
- package/src/icons/icon-info.scss +24 -0
- package/src/icons/icon-success.scss +23 -0
- package/src/icons/icon-warning.scss +23 -0
- package/src/icons/icons.scss +12 -0
- package/src/icons/icons.stories.js +249 -0
- package/src/icons/svg/arrow-left.svg +3 -0
- package/src/icons/svg/arrow-right.svg +3 -0
- package/src/icons/svg/check.svg +3 -0
- package/src/icons/svg/close.svg +4 -0
- package/src/icons/svg/error.svg +5 -0
- package/src/icons/svg/info.svg +5 -0
- package/src/icons/svg/success.svg +4 -0
- package/src/icons/svg/warning.svg +5 -0
- package/src/utils/__tests__/utilities.test.scss +37 -0
- package/src/utils/_flex.scss +200 -0
- package/src/utils/_grid.scss +211 -0
- package/src/utils/_layout.scss +253 -0
- package/src/utils/_spacing.scss +260 -0
- package/src/utils/_typography.scss +111 -0
- package/src/utils/utils.scss +8 -0
- package/src/variables/_borders.scss +15 -0
- package/src/variables/_breakpoints.scss +11 -0
- package/src/variables/_colors.scss +97 -0
- package/src/variables/_shadows.scss +14 -0
- package/src/variables/_spacing.scss +24 -0
- package/src/variables/_typography.scss +47 -0
- package/src/variables/variables.scss +9 -0
|
@@ -0,0 +1,466 @@
|
|
|
1
|
+
/* Footer component styles*/
|
|
2
|
+
/* Provides styling for the IVDS footer component with multi-column layout and responsive stacking*/
|
|
3
|
+
.ivds-footer {
|
|
4
|
+
padding: var(--spacing-8, 2rem) var(--spacing-6, 1.5rem);
|
|
5
|
+
background-color: var(--color-semantic-neutral-900, #0f172a);
|
|
6
|
+
color: var(--color-semantic-neutral-300, #cbd5e1);
|
|
7
|
+
line-height: var(--lineHeight-relaxed, 1.625);
|
|
8
|
+
}
|
|
9
|
+
@media (max-width: 768px) {
|
|
10
|
+
.ivds-footer .ivds-footer__grid {
|
|
11
|
+
grid-template-columns: 1fr 1fr;
|
|
12
|
+
gap: var(--spacing-6, 1.5rem) var(--spacing-4, 1rem);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
@media (max-width: 480px) {
|
|
16
|
+
.ivds-footer .ivds-footer__grid {
|
|
17
|
+
grid-template-columns: 1fr;
|
|
18
|
+
gap: var(--spacing-6, 1.5rem);
|
|
19
|
+
}
|
|
20
|
+
.ivds-footer .ivds-footer__section {
|
|
21
|
+
text-align: center;
|
|
22
|
+
}
|
|
23
|
+
.ivds-footer .ivds-footer__section:first-child {
|
|
24
|
+
text-align: left;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.ivds-footer {
|
|
28
|
+
/* Content container*/
|
|
29
|
+
}
|
|
30
|
+
.ivds-footer__content {
|
|
31
|
+
max-width: 1200px;
|
|
32
|
+
margin: 0 auto;
|
|
33
|
+
width: 100%;
|
|
34
|
+
}
|
|
35
|
+
.ivds-footer {
|
|
36
|
+
/* Multi-column grid layout*/
|
|
37
|
+
}
|
|
38
|
+
.ivds-footer__grid {
|
|
39
|
+
display: grid;
|
|
40
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
41
|
+
grid-gap: var(--spacing-8, 2rem);
|
|
42
|
+
gap: var(--spacing-8, 2rem);
|
|
43
|
+
margin-bottom: var(--spacing-8, 2rem);
|
|
44
|
+
}
|
|
45
|
+
@media (max-width: 1024px) {
|
|
46
|
+
.ivds-footer__grid {
|
|
47
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
48
|
+
gap: var(--spacing-6, 1.5rem);
|
|
49
|
+
margin-bottom: var(--spacing-6, 1.5rem);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
@media (max-width: 768px) {
|
|
53
|
+
.ivds-footer__grid {
|
|
54
|
+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
55
|
+
gap: var(--spacing-4, 1rem);
|
|
56
|
+
margin-bottom: var(--spacing-4, 1rem);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
@media (max-width: 480px) {
|
|
60
|
+
.ivds-footer__grid {
|
|
61
|
+
grid-template-columns: 1fr;
|
|
62
|
+
gap: var(--spacing-6, 1.5rem);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
.ivds-footer {
|
|
66
|
+
/* Individual footer sections*/
|
|
67
|
+
}
|
|
68
|
+
.ivds-footer__section-title {
|
|
69
|
+
margin: 0 0 var(--spacing-4, 1rem) 0;
|
|
70
|
+
font-size: var(--fontSize-lg, 1.125rem);
|
|
71
|
+
font-weight: var(--fontWeight-semibold, 600);
|
|
72
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
73
|
+
line-height: var(--lineHeight-tight, 1.25);
|
|
74
|
+
}
|
|
75
|
+
@media (max-width: 768px) {
|
|
76
|
+
.ivds-footer__section-title {
|
|
77
|
+
font-size: var(--fontSize-base, 1rem);
|
|
78
|
+
margin-bottom: var(--spacing-3, 0.75rem);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
.ivds-footer__section-list {
|
|
82
|
+
margin: 0;
|
|
83
|
+
padding: 0;
|
|
84
|
+
list-style: none;
|
|
85
|
+
}
|
|
86
|
+
.ivds-footer__section-item {
|
|
87
|
+
margin-bottom: var(--spacing-2, 0.5rem);
|
|
88
|
+
}
|
|
89
|
+
.ivds-footer__section-item:last-child {
|
|
90
|
+
margin-bottom: 0;
|
|
91
|
+
}
|
|
92
|
+
.ivds-footer__section-link {
|
|
93
|
+
color: var(--color-semantic-neutral-300, #cbd5e1);
|
|
94
|
+
text-decoration: none;
|
|
95
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
96
|
+
transition: color 0.2s ease-in-out;
|
|
97
|
+
display: inline-flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
}
|
|
100
|
+
.ivds-footer__section-link:hover {
|
|
101
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
102
|
+
}
|
|
103
|
+
.ivds-footer__section-link:focus {
|
|
104
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
105
|
+
outline-offset: 2px;
|
|
106
|
+
border-radius: var(--borderRadius-sm, 0.25rem);
|
|
107
|
+
}
|
|
108
|
+
.ivds-footer__section-link svg {
|
|
109
|
+
margin-right: var(--spacing-2, 0.5rem);
|
|
110
|
+
flex-shrink: 0;
|
|
111
|
+
}
|
|
112
|
+
.ivds-footer {
|
|
113
|
+
/* Bottom section with copyright and legal links*/
|
|
114
|
+
}
|
|
115
|
+
.ivds-footer__bottom {
|
|
116
|
+
padding-top: var(--spacing-8, 2rem);
|
|
117
|
+
border-top: var(--borderWidth-1, 1px) solid var(--color-semantic-neutral-700, #374151);
|
|
118
|
+
text-align: center;
|
|
119
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
120
|
+
color: var(--color-semantic-neutral-400, #9ca3af);
|
|
121
|
+
}
|
|
122
|
+
@media (max-width: 768px) {
|
|
123
|
+
.ivds-footer__bottom {
|
|
124
|
+
padding-top: var(--spacing-6, 1.5rem);
|
|
125
|
+
text-align: left;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
.ivds-footer__bottom a {
|
|
129
|
+
color: var(--color-semantic-neutral-300, #cbd5e1);
|
|
130
|
+
text-decoration: none;
|
|
131
|
+
}
|
|
132
|
+
.ivds-footer__bottom a:hover {
|
|
133
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
134
|
+
text-decoration: underline;
|
|
135
|
+
}
|
|
136
|
+
.ivds-footer__bottom a:focus {
|
|
137
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
138
|
+
outline-offset: 2px;
|
|
139
|
+
border-radius: var(--borderRadius-sm, 0.25rem);
|
|
140
|
+
}
|
|
141
|
+
.ivds-footer__bottom--inline-links, .ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
142
|
+
display: flex;
|
|
143
|
+
justify-content: center;
|
|
144
|
+
align-items: center;
|
|
145
|
+
gap: var(--spacing-4, 1rem);
|
|
146
|
+
flex-wrap: wrap;
|
|
147
|
+
}
|
|
148
|
+
@media (max-width: 768px) {
|
|
149
|
+
.ivds-footer__bottom--inline-links, .ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
150
|
+
justify-content: flex-start;
|
|
151
|
+
gap: var(--spacing-3, 0.75rem);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.ivds-footer {
|
|
155
|
+
/* Brand section elements*/
|
|
156
|
+
}
|
|
157
|
+
.ivds-footer__brand-logo {
|
|
158
|
+
height: 2rem;
|
|
159
|
+
width: auto;
|
|
160
|
+
margin-bottom: var(--spacing-3, 0.75rem);
|
|
161
|
+
}
|
|
162
|
+
@media (max-width: 768px) {
|
|
163
|
+
.ivds-footer__brand-logo {
|
|
164
|
+
height: calc(2rem * 0.875);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
.ivds-footer__brand-name {
|
|
168
|
+
font-size: var(--fontSize-xl, 1.25rem);
|
|
169
|
+
font-weight: var(--fontWeight-bold, 700);
|
|
170
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
171
|
+
margin-bottom: var(--spacing-2, 0.5rem);
|
|
172
|
+
}
|
|
173
|
+
@media (max-width: 768px) {
|
|
174
|
+
.ivds-footer__brand-name {
|
|
175
|
+
font-size: var(--fontSize-lg, 1.125rem);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
.ivds-footer__brand-description {
|
|
179
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
180
|
+
color: var(--color-semantic-neutral-400, #9ca3af);
|
|
181
|
+
line-height: var(--lineHeight-relaxed, 1.625);
|
|
182
|
+
margin-bottom: var(--spacing-4, 1rem);
|
|
183
|
+
}
|
|
184
|
+
.ivds-footer {
|
|
185
|
+
/* Social links container*/
|
|
186
|
+
}
|
|
187
|
+
.ivds-footer__social {
|
|
188
|
+
display: flex;
|
|
189
|
+
gap: var(--spacing-3, 0.75rem);
|
|
190
|
+
margin-top: var(--spacing-4, 1rem);
|
|
191
|
+
}
|
|
192
|
+
@media (max-width: 768px) {
|
|
193
|
+
.ivds-footer__social {
|
|
194
|
+
justify-content: center;
|
|
195
|
+
margin-top: var(--spacing-3, 0.75rem);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
.ivds-footer__social a {
|
|
199
|
+
display: inline-flex;
|
|
200
|
+
align-items: center;
|
|
201
|
+
justify-content: center;
|
|
202
|
+
width: 2.5rem;
|
|
203
|
+
height: 2.5rem;
|
|
204
|
+
border-radius: var(--borderRadius-md, 0.375rem);
|
|
205
|
+
background-color: var(--color-semantic-neutral-800, #1e293b);
|
|
206
|
+
color: var(--color-semantic-neutral-300, #cbd5e1);
|
|
207
|
+
transition: all 0.2s ease-in-out;
|
|
208
|
+
}
|
|
209
|
+
.ivds-footer__social a:hover {
|
|
210
|
+
background-color: var(--color-brand-primary-500, #f97316);
|
|
211
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
212
|
+
transform: translateY(-2px);
|
|
213
|
+
}
|
|
214
|
+
.ivds-footer__social a:focus {
|
|
215
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
216
|
+
outline-offset: 2px;
|
|
217
|
+
}
|
|
218
|
+
.ivds-footer__social a svg {
|
|
219
|
+
width: 1.25rem;
|
|
220
|
+
height: 1.25rem;
|
|
221
|
+
margin: 0;
|
|
222
|
+
}
|
|
223
|
+
.ivds-footer {
|
|
224
|
+
/* Newsletter signup elements*/
|
|
225
|
+
}
|
|
226
|
+
.ivds-footer__newsletter-form {
|
|
227
|
+
display: flex;
|
|
228
|
+
gap: var(--spacing-2, 0.5rem);
|
|
229
|
+
margin-top: var(--spacing-3, 0.75rem);
|
|
230
|
+
}
|
|
231
|
+
@media (max-width: 480px) {
|
|
232
|
+
.ivds-footer__newsletter-form {
|
|
233
|
+
flex-direction: column;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
.ivds-footer__newsletter-input {
|
|
237
|
+
flex: 1;
|
|
238
|
+
padding: var(--spacing-3, 0.75rem);
|
|
239
|
+
border: var(--borderWidth-1, 1px) solid var(--color-semantic-neutral-600, #475569);
|
|
240
|
+
border-radius: var(--borderRadius-md, 0.375rem);
|
|
241
|
+
background-color: var(--color-semantic-neutral-800, #1e293b);
|
|
242
|
+
color: var(--color-semantic-neutral-100, #f1f5f9);
|
|
243
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
244
|
+
}
|
|
245
|
+
.ivds-footer__newsletter-input::-moz-placeholder {
|
|
246
|
+
color: var(--color-semantic-neutral-500, #64748b);
|
|
247
|
+
}
|
|
248
|
+
.ivds-footer__newsletter-input::placeholder {
|
|
249
|
+
color: var(--color-semantic-neutral-500, #64748b);
|
|
250
|
+
}
|
|
251
|
+
.ivds-footer__newsletter-input:focus {
|
|
252
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
253
|
+
outline-offset: 2px;
|
|
254
|
+
border-color: var(--color-brand-primary-500, #f97316);
|
|
255
|
+
}
|
|
256
|
+
@media (max-width: 480px) {
|
|
257
|
+
.ivds-footer__newsletter-input {
|
|
258
|
+
width: 100%;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
.ivds-footer__newsletter-button {
|
|
262
|
+
padding: var(--spacing-3, 0.75rem) var(--spacing-4, 1rem);
|
|
263
|
+
background-color: var(--color-brand-primary-500, #f97316);
|
|
264
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
265
|
+
border: none;
|
|
266
|
+
border-radius: var(--borderRadius-md, 0.375rem);
|
|
267
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
268
|
+
font-weight: var(--fontWeight-medium, 500);
|
|
269
|
+
cursor: pointer;
|
|
270
|
+
transition: background-color 0.2s ease-in-out;
|
|
271
|
+
white-space: nowrap;
|
|
272
|
+
}
|
|
273
|
+
.ivds-footer__newsletter-button:hover {
|
|
274
|
+
background-color: var(--color-brand-primary-600, #ea580c);
|
|
275
|
+
}
|
|
276
|
+
.ivds-footer__newsletter-button:focus {
|
|
277
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
278
|
+
outline-offset: 2px;
|
|
279
|
+
}
|
|
280
|
+
@media (max-width: 480px) {
|
|
281
|
+
.ivds-footer__newsletter-button {
|
|
282
|
+
width: 100%;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
.ivds-footer__newsletter-description {
|
|
286
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
287
|
+
color: var(--color-semantic-neutral-400, #9ca3af);
|
|
288
|
+
margin-bottom: var(--spacing-3, 0.75rem);
|
|
289
|
+
line-height: var(--lineHeight-relaxed, 1.625);
|
|
290
|
+
}
|
|
291
|
+
.ivds-footer {
|
|
292
|
+
/* Address styling*/
|
|
293
|
+
}
|
|
294
|
+
.ivds-footer address {
|
|
295
|
+
font-style: normal;
|
|
296
|
+
line-height: var(--lineHeight-relaxed, 1.625);
|
|
297
|
+
}
|
|
298
|
+
.ivds-footer address p {
|
|
299
|
+
margin-bottom: var(--spacing-2, 0.5rem);
|
|
300
|
+
}
|
|
301
|
+
.ivds-footer address p:last-child {
|
|
302
|
+
margin-bottom: 0;
|
|
303
|
+
}
|
|
304
|
+
.ivds-footer address strong {
|
|
305
|
+
color: var(--color-semantic-neutral-200, #e2e8f0);
|
|
306
|
+
font-weight: var(--fontWeight-medium, 500);
|
|
307
|
+
}
|
|
308
|
+
.ivds-footer {
|
|
309
|
+
/* Variants*/
|
|
310
|
+
}
|
|
311
|
+
.ivds-footer--light {
|
|
312
|
+
background-color: var(--color-semantic-neutral-50, #f8fafc);
|
|
313
|
+
color: var(--color-semantic-neutral-600, #475569);
|
|
314
|
+
}
|
|
315
|
+
.ivds-footer--light .ivds-footer__section-title {
|
|
316
|
+
color: var(--color-semantic-neutral-900, #0f172a);
|
|
317
|
+
}
|
|
318
|
+
.ivds-footer--light .ivds-footer__section-link {
|
|
319
|
+
color: var(--color-semantic-neutral-600, #475569);
|
|
320
|
+
}
|
|
321
|
+
.ivds-footer--light .ivds-footer__section-link:hover {
|
|
322
|
+
color: var(--color-semantic-neutral-900, #0f172a);
|
|
323
|
+
}
|
|
324
|
+
.ivds-footer--light .ivds-footer__bottom {
|
|
325
|
+
border-top-color: var(--color-semantic-neutral-200, #e2e8f0);
|
|
326
|
+
color: rgba(var(--color-semantic-neutral-600, #475569), 0.8);
|
|
327
|
+
}
|
|
328
|
+
.ivds-footer--minimal {
|
|
329
|
+
padding: var(--spacing-6, 1.5rem) var(--spacing-4, 1rem);
|
|
330
|
+
text-align: center;
|
|
331
|
+
}
|
|
332
|
+
.ivds-footer--minimal .ivds-footer__bottom {
|
|
333
|
+
padding-top: 0;
|
|
334
|
+
border-top: none;
|
|
335
|
+
}
|
|
336
|
+
@media (max-width: 768px) {
|
|
337
|
+
.ivds-footer--minimal {
|
|
338
|
+
padding: var(--spacing-4, 1rem);
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
.ivds-footer {
|
|
342
|
+
/* Grid layout variants*/
|
|
343
|
+
}
|
|
344
|
+
.ivds-footer--two-columns .ivds-footer__grid {
|
|
345
|
+
display: grid;
|
|
346
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
347
|
+
grid-gap: var(--spacing-8, 2rem);
|
|
348
|
+
gap: var(--spacing-8, 2rem);
|
|
349
|
+
margin-bottom: var(--spacing-8, 2rem);
|
|
350
|
+
}
|
|
351
|
+
@media (max-width: 1024px) {
|
|
352
|
+
.ivds-footer--two-columns .ivds-footer__grid {
|
|
353
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
354
|
+
gap: var(--spacing-6, 1.5rem);
|
|
355
|
+
margin-bottom: var(--spacing-6, 1.5rem);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
@media (max-width: 768px) {
|
|
359
|
+
.ivds-footer--two-columns .ivds-footer__grid {
|
|
360
|
+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
361
|
+
gap: var(--spacing-4, 1rem);
|
|
362
|
+
margin-bottom: var(--spacing-4, 1rem);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
@media (max-width: 480px) {
|
|
366
|
+
.ivds-footer--two-columns .ivds-footer__grid {
|
|
367
|
+
grid-template-columns: 1fr;
|
|
368
|
+
gap: var(--spacing-6, 1.5rem);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
.ivds-footer--three-columns .ivds-footer__grid {
|
|
372
|
+
display: grid;
|
|
373
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
374
|
+
grid-gap: var(--spacing-8, 2rem);
|
|
375
|
+
gap: var(--spacing-8, 2rem);
|
|
376
|
+
margin-bottom: var(--spacing-8, 2rem);
|
|
377
|
+
}
|
|
378
|
+
@media (max-width: 1024px) {
|
|
379
|
+
.ivds-footer--three-columns .ivds-footer__grid {
|
|
380
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
381
|
+
gap: var(--spacing-6, 1.5rem);
|
|
382
|
+
margin-bottom: var(--spacing-6, 1.5rem);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
@media (max-width: 768px) {
|
|
386
|
+
.ivds-footer--three-columns .ivds-footer__grid {
|
|
387
|
+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
388
|
+
gap: var(--spacing-4, 1rem);
|
|
389
|
+
margin-bottom: var(--spacing-4, 1rem);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
@media (max-width: 480px) {
|
|
393
|
+
.ivds-footer--three-columns .ivds-footer__grid {
|
|
394
|
+
grid-template-columns: 1fr;
|
|
395
|
+
gap: var(--spacing-6, 1.5rem);
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
.ivds-footer--five-columns .ivds-footer__grid {
|
|
399
|
+
display: grid;
|
|
400
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
401
|
+
grid-gap: var(--spacing-6, 1.5rem);
|
|
402
|
+
gap: var(--spacing-6, 1.5rem);
|
|
403
|
+
margin-bottom: var(--spacing-8, 2rem);
|
|
404
|
+
}
|
|
405
|
+
@media (max-width: 1024px) {
|
|
406
|
+
.ivds-footer--five-columns .ivds-footer__grid {
|
|
407
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
408
|
+
gap: var(--spacing-6, 1.5rem);
|
|
409
|
+
margin-bottom: var(--spacing-6, 1.5rem);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
@media (max-width: 768px) {
|
|
413
|
+
.ivds-footer--five-columns .ivds-footer__grid {
|
|
414
|
+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
415
|
+
gap: var(--spacing-4, 1rem);
|
|
416
|
+
margin-bottom: var(--spacing-4, 1rem);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
@media (max-width: 480px) {
|
|
420
|
+
.ivds-footer--five-columns .ivds-footer__grid {
|
|
421
|
+
grid-template-columns: 1fr;
|
|
422
|
+
gap: var(--spacing-6, 1.5rem);
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
.ivds-footer {
|
|
426
|
+
/* Bottom section variants*/
|
|
427
|
+
}
|
|
428
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
429
|
+
padding-top: var(--spacing-8, 2rem);
|
|
430
|
+
border-top: var(--borderWidth-1, 1px) solid var(--color-semantic-neutral-700, #374151);
|
|
431
|
+
text-align: center;
|
|
432
|
+
font-size: var(--fontSize-sm, 0.875rem);
|
|
433
|
+
color: var(--color-semantic-neutral-400, #9ca3af);
|
|
434
|
+
}
|
|
435
|
+
@media (max-width: 768px) {
|
|
436
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
437
|
+
padding-top: var(--spacing-6, 1.5rem);
|
|
438
|
+
text-align: left;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom a {
|
|
442
|
+
color: var(--color-semantic-neutral-300, #cbd5e1);
|
|
443
|
+
text-decoration: none;
|
|
444
|
+
}
|
|
445
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom a:hover {
|
|
446
|
+
color: var(--color-semantic-neutral-25, #fcfcfd);
|
|
447
|
+
text-decoration: underline;
|
|
448
|
+
}
|
|
449
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom a:focus {
|
|
450
|
+
outline: 2px solid var(--color-brand-primary-500, #f97316);
|
|
451
|
+
outline-offset: 2px;
|
|
452
|
+
border-radius: var(--borderRadius-sm, 0.25rem);
|
|
453
|
+
}
|
|
454
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom--inline-links, .ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
455
|
+
display: flex;
|
|
456
|
+
justify-content: center;
|
|
457
|
+
align-items: center;
|
|
458
|
+
gap: var(--spacing-4, 1rem);
|
|
459
|
+
flex-wrap: wrap;
|
|
460
|
+
}
|
|
461
|
+
@media (max-width: 768px) {
|
|
462
|
+
.ivds-footer--bottom-inline .ivds-footer__bottom--inline-links, .ivds-footer--bottom-inline .ivds-footer__bottom {
|
|
463
|
+
justify-content: flex-start;
|
|
464
|
+
gap: var(--spacing-3, 0.75rem);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.ivds-footer{background-color:var(--color-semantic-neutral-900,#0f172a);color:var(--color-semantic-neutral-300,#cbd5e1);line-height:var(--lineHeight-relaxed,1.625);padding:var(--spacing-8,2rem) var(--spacing-6,1.5rem)}@media (max-width:768px){.ivds-footer .ivds-footer__grid{gap:var(--spacing-6,1.5rem) var(--spacing-4,1rem);grid-template-columns:1fr 1fr}}@media (max-width:480px){.ivds-footer .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:1fr}.ivds-footer .ivds-footer__section{text-align:center}.ivds-footer .ivds-footer__section:first-child{text-align:left}}.ivds-footer__content{margin:0 auto;max-width:1200px;width:100%}.ivds-footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-gap:var(--spacing-8,2rem);gap:var(--spacing-8,2rem);margin-bottom:var(--spacing-8,2rem)}@media (max-width:1024px){.ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin-bottom:var(--spacing-6,1.5rem)}}@media (max-width:768px){.ivds-footer__grid{gap:var(--spacing-4,1rem);grid-template-columns:repeat(auto-fit,minmax(150px,1fr));margin-bottom:var(--spacing-4,1rem)}}@media (max-width:480px){.ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:1fr}}.ivds-footer__section-title{color:var(--color-semantic-neutral-25,#fcfcfd);font-size:var(--fontSize-lg,1.125rem);font-weight:var(--fontWeight-semibold,600);line-height:var(--lineHeight-tight,1.25);margin:0 0 var(--spacing-4,1rem) 0}@media (max-width:768px){.ivds-footer__section-title{font-size:var(--fontSize-base,1rem);margin-bottom:var(--spacing-3,.75rem)}}.ivds-footer__section-list{list-style:none;margin:0;padding:0}.ivds-footer__section-item{margin-bottom:var(--spacing-2,.5rem)}.ivds-footer__section-item:last-child{margin-bottom:0}.ivds-footer__section-link{align-items:center;color:var(--color-semantic-neutral-300,#cbd5e1);display:inline-flex;font-size:var(--fontSize-sm,.875rem);text-decoration:none;transition:color .2s ease-in-out}.ivds-footer__section-link:hover{color:var(--color-semantic-neutral-25,#fcfcfd)}.ivds-footer__section-link:focus{border-radius:var(--borderRadius-sm,.25rem);outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}.ivds-footer__section-link svg{flex-shrink:0;margin-right:var(--spacing-2,.5rem)}.ivds-footer__bottom{border-top:var(--borderWidth-1,1px) solid var(--color-semantic-neutral-700,#374151);color:var(--color-semantic-neutral-400,#9ca3af);font-size:var(--fontSize-sm,.875rem);padding-top:var(--spacing-8,2rem);text-align:center}@media (max-width:768px){.ivds-footer__bottom{padding-top:var(--spacing-6,1.5rem);text-align:left}}.ivds-footer__bottom a{color:var(--color-semantic-neutral-300,#cbd5e1);text-decoration:none}.ivds-footer__bottom a:hover{color:var(--color-semantic-neutral-25,#fcfcfd);text-decoration:underline}.ivds-footer__bottom a:focus{border-radius:var(--borderRadius-sm,.25rem);outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}.ivds-footer--bottom-inline .ivds-footer__bottom,.ivds-footer__bottom--inline-links{align-items:center;display:flex;flex-wrap:wrap;gap:var(--spacing-4,1rem);justify-content:center}@media (max-width:768px){.ivds-footer--bottom-inline .ivds-footer__bottom,.ivds-footer__bottom--inline-links{gap:var(--spacing-3,.75rem);justify-content:flex-start}}.ivds-footer__brand-logo{height:2rem;margin-bottom:var(--spacing-3,.75rem);width:auto}@media (max-width:768px){.ivds-footer__brand-logo{height:1.75rem}}.ivds-footer__brand-name{color:var(--color-semantic-neutral-25,#fcfcfd);font-size:var(--fontSize-xl,1.25rem);font-weight:var(--fontWeight-bold,700);margin-bottom:var(--spacing-2,.5rem)}@media (max-width:768px){.ivds-footer__brand-name{font-size:var(--fontSize-lg,1.125rem)}}.ivds-footer__brand-description{color:var(--color-semantic-neutral-400,#9ca3af);font-size:var(--fontSize-sm,.875rem);line-height:var(--lineHeight-relaxed,1.625);margin-bottom:var(--spacing-4,1rem)}.ivds-footer__social{display:flex;gap:var(--spacing-3,.75rem);margin-top:var(--spacing-4,1rem)}@media (max-width:768px){.ivds-footer__social{justify-content:center;margin-top:var(--spacing-3,.75rem)}}.ivds-footer__social a{align-items:center;background-color:var(--color-semantic-neutral-800,#1e293b);border-radius:var(--borderRadius-md,.375rem);color:var(--color-semantic-neutral-300,#cbd5e1);display:inline-flex;height:2.5rem;justify-content:center;transition:all .2s ease-in-out;width:2.5rem}.ivds-footer__social a:hover{background-color:var(--color-brand-primary-500,#f97316);color:var(--color-semantic-neutral-25,#fcfcfd);transform:translateY(-2px)}.ivds-footer__social a:focus{outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}.ivds-footer__social a svg{height:1.25rem;margin:0;width:1.25rem}.ivds-footer__newsletter-form{display:flex;gap:var(--spacing-2,.5rem);margin-top:var(--spacing-3,.75rem)}@media (max-width:480px){.ivds-footer__newsletter-form{flex-direction:column}}.ivds-footer__newsletter-input{background-color:var(--color-semantic-neutral-800,#1e293b);border:var(--borderWidth-1,1px) solid var(--color-semantic-neutral-600,#475569);border-radius:var(--borderRadius-md,.375rem);color:var(--color-semantic-neutral-100,#f1f5f9);flex:1;font-size:var(--fontSize-sm,.875rem);padding:var(--spacing-3,.75rem)}.ivds-footer__newsletter-input::-moz-placeholder{color:var(--color-semantic-neutral-500,#64748b)}.ivds-footer__newsletter-input::placeholder{color:var(--color-semantic-neutral-500,#64748b)}.ivds-footer__newsletter-input:focus{border-color:var(--color-brand-primary-500,#f97316);outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}@media (max-width:480px){.ivds-footer__newsletter-input{width:100%}}.ivds-footer__newsletter-button{background-color:var(--color-brand-primary-500,#f97316);border:none;border-radius:var(--borderRadius-md,.375rem);color:var(--color-semantic-neutral-25,#fcfcfd);cursor:pointer;font-size:var(--fontSize-sm,.875rem);font-weight:var(--fontWeight-medium,500);padding:var(--spacing-3,.75rem) var(--spacing-4,1rem);transition:background-color .2s ease-in-out;white-space:nowrap}.ivds-footer__newsletter-button:hover{background-color:var(--color-brand-primary-600,#ea580c)}.ivds-footer__newsletter-button:focus{outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}@media (max-width:480px){.ivds-footer__newsletter-button{width:100%}}.ivds-footer__newsletter-description{color:var(--color-semantic-neutral-400,#9ca3af);font-size:var(--fontSize-sm,.875rem);line-height:var(--lineHeight-relaxed,1.625);margin-bottom:var(--spacing-3,.75rem)}.ivds-footer address{font-style:normal;line-height:var(--lineHeight-relaxed,1.625)}.ivds-footer address p{margin-bottom:var(--spacing-2,.5rem)}.ivds-footer address p:last-child{margin-bottom:0}.ivds-footer address strong{color:var(--color-semantic-neutral-200,#e2e8f0);font-weight:var(--fontWeight-medium,500)}.ivds-footer--light{background-color:var(--color-semantic-neutral-50,#f8fafc);color:var(--color-semantic-neutral-600,#475569)}.ivds-footer--light .ivds-footer__section-title{color:var(--color-semantic-neutral-900,#0f172a)}.ivds-footer--light .ivds-footer__section-link{color:var(--color-semantic-neutral-600,#475569)}.ivds-footer--light .ivds-footer__section-link:hover{color:var(--color-semantic-neutral-900,#0f172a)}.ivds-footer--light .ivds-footer__bottom{border-top-color:var(--color-semantic-neutral-200,#e2e8f0);color:rgba(var(--color-semantic-neutral-600,#475569),.8)}.ivds-footer--minimal{padding:var(--spacing-6,1.5rem) var(--spacing-4,1rem);text-align:center}.ivds-footer--minimal .ivds-footer__bottom{border-top:none;padding-top:0}@media (max-width:768px){.ivds-footer--minimal{padding:var(--spacing-4,1rem)}}.ivds-footer--two-columns .ivds-footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));grid-gap:var(--spacing-8,2rem);gap:var(--spacing-8,2rem);margin-bottom:var(--spacing-8,2rem)}@media (max-width:1024px){.ivds-footer--two-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin-bottom:var(--spacing-6,1.5rem)}}@media (max-width:768px){.ivds-footer--two-columns .ivds-footer__grid{gap:var(--spacing-4,1rem);grid-template-columns:repeat(auto-fit,minmax(150px,1fr));margin-bottom:var(--spacing-4,1rem)}}@media (max-width:480px){.ivds-footer--two-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:1fr}}.ivds-footer--three-columns .ivds-footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-gap:var(--spacing-8,2rem);gap:var(--spacing-8,2rem);margin-bottom:var(--spacing-8,2rem)}@media (max-width:1024px){.ivds-footer--three-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin-bottom:var(--spacing-6,1.5rem)}}@media (max-width:768px){.ivds-footer--three-columns .ivds-footer__grid{gap:var(--spacing-4,1rem);grid-template-columns:repeat(auto-fit,minmax(150px,1fr));margin-bottom:var(--spacing-4,1rem)}}@media (max-width:480px){.ivds-footer--three-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:1fr}}.ivds-footer--five-columns .ivds-footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));grid-gap:var(--spacing-6,1.5rem);gap:var(--spacing-6,1.5rem);margin-bottom:var(--spacing-8,2rem)}@media (max-width:1024px){.ivds-footer--five-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin-bottom:var(--spacing-6,1.5rem)}}@media (max-width:768px){.ivds-footer--five-columns .ivds-footer__grid{gap:var(--spacing-4,1rem);grid-template-columns:repeat(auto-fit,minmax(150px,1fr));margin-bottom:var(--spacing-4,1rem)}}@media (max-width:480px){.ivds-footer--five-columns .ivds-footer__grid{gap:var(--spacing-6,1.5rem);grid-template-columns:1fr}}.ivds-footer--bottom-inline .ivds-footer__bottom{border-top:var(--borderWidth-1,1px) solid var(--color-semantic-neutral-700,#374151);color:var(--color-semantic-neutral-400,#9ca3af);font-size:var(--fontSize-sm,.875rem);padding-top:var(--spacing-8,2rem);text-align:center}@media (max-width:768px){.ivds-footer--bottom-inline .ivds-footer__bottom{padding-top:var(--spacing-6,1.5rem);text-align:left}}.ivds-footer--bottom-inline .ivds-footer__bottom a{color:var(--color-semantic-neutral-300,#cbd5e1);text-decoration:none}.ivds-footer--bottom-inline .ivds-footer__bottom a:hover{color:var(--color-semantic-neutral-25,#fcfcfd);text-decoration:underline}.ivds-footer--bottom-inline .ivds-footer__bottom a:focus{border-radius:var(--borderRadius-sm,.25rem);outline:2px solid var(--color-brand-primary-500,#f97316);outline-offset:2px}.ivds-footer--bottom-inline .ivds-footer__bottom,.ivds-footer--bottom-inline .ivds-footer__bottom--inline-links{align-items:center;display:flex;flex-wrap:wrap;gap:var(--spacing-4,1rem);justify-content:center}@media (max-width:768px){.ivds-footer--bottom-inline .ivds-footer__bottom,.ivds-footer--bottom-inline .ivds-footer__bottom--inline-links{gap:var(--spacing-3,.75rem);justify-content:flex-start}}
|