@bi-digital/css 0.2.13 → 0.2.14
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/dist/assets/accreditations/aacsb-neg.svg +23 -0
- package/dist/assets/accreditations/aacsb.svg +23 -0
- package/dist/assets/accreditations/amba-neg.svg +30 -0
- package/dist/assets/accreditations/amba.svg +237 -0
- package/dist/assets/accreditations/equis-neg.svg +31 -0
- package/dist/assets/accreditations/equis.svg +31 -0
- package/dist/components/alert.css +103 -0
- package/dist/components/avatar.css +50 -0
- package/dist/components/badge.css +120 -0
- package/dist/components/button.css +175 -0
- package/dist/components/card.css +343 -0
- package/dist/components/chip.css +180 -0
- package/dist/components/dialog.css +119 -0
- package/dist/components/drawer.css +103 -0
- package/dist/components/dropdown.css +69 -0
- package/dist/components/field.css +320 -0
- package/dist/components/fieldset.css +43 -0
- package/dist/components/footer.css +159 -0
- package/dist/components/input.css +327 -0
- package/dist/components/label.css +42 -0
- package/dist/components/link.css +72 -0
- package/dist/components/logo.css +66 -0
- package/dist/components/navbar.css +61 -0
- package/dist/components/pagination.css +66 -0
- package/dist/components/popover.css +50 -0
- package/dist/components/search.css +11 -0
- package/dist/components/spinner.css +51 -0
- package/dist/components/tabs.css +86 -0
- package/dist/components/validation-message.css +35 -0
- package/dist/components.css +2391 -194
- package/dist/index.css +1 -1
- package/dist/tokens.css +1 -1
- package/package.json +5 -3
- package/dist/baseline.min.css +0 -1
- package/dist/components.min.css +0 -1
- package/dist/fonts.min.css +0 -1
- package/dist/icons.min.css +0 -1
- package/dist/index.min.css +0 -2
- package/dist/print.min.css +0 -1
- package/dist/reset.min.css +0 -2
- package/dist/tokens.min.css +0 -1
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
.bi-field {
|
|
2
|
+
--bic-field-content-spacing: var(--bi-scale-0-50x);
|
|
3
|
+
--bic-field-description-color: var(--bi-neutral-60);
|
|
4
|
+
--bic-field-padding-inline: var(--bi-scale-3x);
|
|
5
|
+
--bic-field-background: var(--bi-basic-white);
|
|
6
|
+
--bic-field-background-hover: var(--bi-states-hover-dark);
|
|
7
|
+
--bic-field-background-readonly: var(--bi-neutral-10);
|
|
8
|
+
--bic-field-border-color: var(--bi-neutral-50);
|
|
9
|
+
--bic-field-border-color-readonly: var(--bi-neutral-50);
|
|
10
|
+
--bic-field-border-color-invalid: var(--bi-alert-50);
|
|
11
|
+
--bic-field-border-style: solid;
|
|
12
|
+
--bic-field-border-width: var(--bi-stroke-thin);
|
|
13
|
+
--bic-field-box-shadow-hover: 0 0 0 1px inset var(--bic-field-border-color);
|
|
14
|
+
--bic-field-color: var(--bi-neutral-95);
|
|
15
|
+
--bic-field-disabled-color: var(--bi-neutral-50);
|
|
16
|
+
--bic-field-label-color: var(--bi-neutral-95);
|
|
17
|
+
--bic-field-label-required-color: var(--bi-primary-50);
|
|
18
|
+
--bic-field-input-color-readonly: var(--bi-neutral-95);
|
|
19
|
+
--bic-field-input-color: var(--bi-neutral-95);
|
|
20
|
+
--bic-field-toggle-color: var(--bi-basic-white);
|
|
21
|
+
--bic-field-toggle-background: var(--bi-primary-50);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.bi-field[data-dark="true"] {
|
|
25
|
+
--bic-field-description-color: var(--bi-neutral-15);
|
|
26
|
+
--bic-field-background: var(--bi-neutral-95);
|
|
27
|
+
--bic-field-background-hover: var(--bi-states-hover-light);
|
|
28
|
+
--bic-field-background-readonly: var(--bi-neutral-50);
|
|
29
|
+
--bic-field-border-color: var(--bi-neutral-10);
|
|
30
|
+
--bic-field-border-color-hover: var(--bi-neutral-50);
|
|
31
|
+
--bic-field-border-color-readonly: var(--bi-neutral-50);
|
|
32
|
+
--bic-field-border-color-invalid: var(--bi-alert-50);
|
|
33
|
+
--bic-field-box-shadow-hover: 0 0 0 1px inset var(--bic-field-border-color);
|
|
34
|
+
--bic-field-color: var(--bi-basic-white);
|
|
35
|
+
--bic-field-disabled-color: var(--bi-neutral-40);
|
|
36
|
+
--bic-field-label-color: var(--bi-basic-white);
|
|
37
|
+
--bic-field-label-required-color: var(--bi-secondary-50);
|
|
38
|
+
--bic-field-input-color-readonly: var(--bi-basic-white);
|
|
39
|
+
--bic-field-input-color: var(--bi-basic-white);
|
|
40
|
+
--bic-field-toggle-color: var(--bi-basic-white);
|
|
41
|
+
--bic-field-toggle-background: var(--bi-primary-50);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.bi-field > * {
|
|
45
|
+
margin-top: 0;
|
|
46
|
+
margin-bottom: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.bi-field > * + * {
|
|
50
|
+
margin-top: var(--bic-field-content-spacing);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.bi-field .bi-field--description {
|
|
54
|
+
color: var(--bic-field-description-color);
|
|
55
|
+
font-family: museo-sans, Arial, sans-serif;
|
|
56
|
+
font-size: .8125rem;
|
|
57
|
+
font-weight: 500;
|
|
58
|
+
line-height: 1.15;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.bi-field .bi-input:where(:not([hidden])) {
|
|
62
|
+
display: block;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.bi-field:has(.bi-input[aria-invalid="true"]) {
|
|
66
|
+
--bic-field-border-color: var(--bic-field-border-color-invalid);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.bi-field:has([aria-disabled="true"]:not([role="option"][aria-disabled="true"]), :disabled:not(option)) > * {
|
|
70
|
+
cursor: not-allowed;
|
|
71
|
+
--bic-field-label-color: var(--bic-field-disabled-color);
|
|
72
|
+
--bic-field-description-color: var(--bic-field-disabled-color);
|
|
73
|
+
--bic-field-color: var(--bic-field-disabled-color);
|
|
74
|
+
--bic-field-toggle-background: var(--bic-field-disabled-color);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) {
|
|
78
|
+
border-radius: var(--bi-radius-medium);
|
|
79
|
+
grid-template-areas: "input content";
|
|
80
|
+
grid-template-columns: var(--bi-scale-5x) 1fr;
|
|
81
|
+
gap: 0 var(--bi-scale-3x);
|
|
82
|
+
width: -webkit-fit-content;
|
|
83
|
+
width: fit-content;
|
|
84
|
+
padding: var(--bi-scale-2x) var(--bi-scale-3x);
|
|
85
|
+
align-items: center;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])):not([hidden]) {
|
|
89
|
+
display: grid;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) > * {
|
|
93
|
+
grid-column: content;
|
|
94
|
+
margin-top: 0;
|
|
95
|
+
margin-bottom: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) .bi-label {
|
|
99
|
+
margin: var(--bi-scale-0-50x) 0;
|
|
100
|
+
-webkit-user-select: none;
|
|
101
|
+
user-select: none;
|
|
102
|
+
font-size: 1rem;
|
|
103
|
+
line-height: 1.5;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) .bi-input {
|
|
107
|
+
margin: var(--bi-scale-1x) auto;
|
|
108
|
+
grid-area: 1 / input;
|
|
109
|
+
align-self: flex-start;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])):-webkit-any(label):not(:has([readonly], [aria-disabled="true"], :disabled)) {
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):is(label):not(:has([readonly], [aria-disabled="true"], :disabled)) {
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(input:only-child) {
|
|
121
|
+
gap: 0;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):hover:not(:has(a:hover), :has([aria-disabled="true"], :disabled)) {
|
|
125
|
+
background: var(--_bi--hover, var(--bic-field-background-hover));
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):hover:not(:has(a:hover), :has([aria-disabled="true"], :disabled)) * {
|
|
129
|
+
--_bi--hover: ;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(.bi-input:focus-visible) {
|
|
133
|
+
box-shadow: var(--_bi--focus, 0 0 0 4.5px var(--bi-basic-white));
|
|
134
|
+
outline: var(--_bi--focus, 1.5px solid var(--bi-primary-50));
|
|
135
|
+
outline-offset: var(--_bi--focus, 2px);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(.bi-input:focus-visible) * {
|
|
139
|
+
--_bi--focus: ;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"]))[data-position="end"] {
|
|
143
|
+
grid-template-areas: "content input";
|
|
144
|
+
grid-template-columns: 1fr var(--bi-scale-5x);
|
|
145
|
+
width: auto;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) {
|
|
149
|
+
border-radius: var(--bi-radius-medium);
|
|
150
|
+
grid-template-areas: "input content";
|
|
151
|
+
grid-template-columns: var(--bi-scale-5x) 1fr;
|
|
152
|
+
gap: 0 var(--bi-scale-3x);
|
|
153
|
+
width: -webkit-fit-content;
|
|
154
|
+
width: fit-content;
|
|
155
|
+
padding: var(--bi-scale-2x) var(--bi-scale-3x);
|
|
156
|
+
align-items: center;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):not([hidden]) {
|
|
160
|
+
display: grid;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) > * {
|
|
164
|
+
grid-column: content;
|
|
165
|
+
margin-top: 0;
|
|
166
|
+
margin-bottom: 0;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) .bi-label {
|
|
170
|
+
margin: var(--bi-scale-0-50x) 0;
|
|
171
|
+
-webkit-user-select: none;
|
|
172
|
+
user-select: none;
|
|
173
|
+
font-size: 1rem;
|
|
174
|
+
line-height: 1.5;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) .bi-input {
|
|
178
|
+
margin: var(--bi-scale-1x) auto;
|
|
179
|
+
grid-area: 1 / input;
|
|
180
|
+
align-self: flex-start;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])):-webkit-any(label):not(:has([readonly], [aria-disabled="true"], :disabled)) {
|
|
184
|
+
cursor: pointer;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):is(label):not(:has([readonly], [aria-disabled="true"], :disabled)) {
|
|
188
|
+
cursor: pointer;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(input:only-child) {
|
|
192
|
+
gap: 0;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):hover:not(:has(a:hover), :has([aria-disabled="true"], :disabled)) {
|
|
196
|
+
background: var(--_bi--hover, var(--bic-field-background-hover));
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):hover:not(:has(a:hover), :has([aria-disabled="true"], :disabled)) * {
|
|
200
|
+
--_bi--hover: ;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(.bi-input:focus-visible) {
|
|
204
|
+
box-shadow: var(--_bi--focus, 0 0 0 4.5px var(--bi-basic-white));
|
|
205
|
+
outline: var(--_bi--focus, 1.5px solid var(--bi-primary-50));
|
|
206
|
+
outline-offset: var(--_bi--focus, 2px);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])):has(.bi-input:focus-visible) * {
|
|
210
|
+
--_bi--focus: ;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.bi-field:has(.bi-input:is([type="radio"], [type="checkbox"]))[data-position="end"] {
|
|
214
|
+
grid-template-areas: "content input";
|
|
215
|
+
grid-template-columns: 1fr var(--bi-scale-5x);
|
|
216
|
+
width: auto;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.bi-field .bi-field--affixes {
|
|
220
|
+
background: var(--bic-field-background);
|
|
221
|
+
border-radius: var(--bi-radius-medium);
|
|
222
|
+
box-sizing: border-box;
|
|
223
|
+
color: var(--bic-field-color);
|
|
224
|
+
white-space: nowrap;
|
|
225
|
+
border-width: var(--bic-field-border-width);
|
|
226
|
+
border-style: var(--bic-field-border-style);
|
|
227
|
+
border-color: var(--bic-field-border-color);
|
|
228
|
+
max-width: 100%;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.bi-field .bi-field--affixes .bi-input {
|
|
232
|
+
--bic-field-background: ;
|
|
233
|
+
--bic-field-box-shadow-hover: ;
|
|
234
|
+
--bic-field-border-width: 0;
|
|
235
|
+
flex: auto;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.bi-field .bi-field--affixes:not([hidden]) {
|
|
239
|
+
display: flex;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.bi-field .bi-field--affixes:has(.bi-input[size]) {
|
|
243
|
+
width: -webkit-fit-content;
|
|
244
|
+
width: fit-content;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.bi-field .bi-field--affixes:hover {
|
|
248
|
+
box-shadow: var(--_bi--hover, var(--bic-field-box-shadow-hover));
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.bi-field .bi-field--affixes:hover * {
|
|
252
|
+
--_bi--hover: ;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.bi-field .bi-field--affixes:has(.bi-input:focus-visible) {
|
|
256
|
+
box-shadow: var(--_bi--focus, 0 0 0 4.5px var(--bi-basic-white));
|
|
257
|
+
outline: var(--_bi--focus, 1.5px solid var(--bi-primary-50));
|
|
258
|
+
outline-offset: var(--_bi--focus, 2px);
|
|
259
|
+
--bic-field-border-color: var(--bi-primary-50);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.bi-field .bi-field--affixes:has(.bi-input:focus-visible) * {
|
|
263
|
+
--_bi--focus: ;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.bi-field .bi-field--affixes:has(.bi-input[aria-invalid="true"]) {
|
|
267
|
+
--bic-field-border-color: var(--bic-field-border-color-invalid);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.bi-field .bi-field--affixes .bi-field--affix {
|
|
271
|
+
padding-inline: var(--bic-field-padding-inline);
|
|
272
|
+
flex-shrink: 0;
|
|
273
|
+
align-items: center;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.bi-field .bi-field--affixes .bi-field--affix:not([hidden]) {
|
|
277
|
+
display: flex;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.bi-field .bi-field--affixes .bi-field--affix:first-child:not(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
281
|
+
border-top-left-radius: inherit;
|
|
282
|
+
border-bottom-left-radius: inherit;
|
|
283
|
+
border-right: 0;
|
|
284
|
+
padding-right: 0;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.bi-field .bi-field--affixes .bi-field--affix:first-child:-webkit-any(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
288
|
+
border-top-right-radius: inherit;
|
|
289
|
+
border-bottom-right-radius: inherit;
|
|
290
|
+
border-left: 0;
|
|
291
|
+
padding-left: 0;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.bi-field .bi-field--affixes .bi-field--affix:first-child:is(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
295
|
+
border-top-right-radius: inherit;
|
|
296
|
+
border-bottom-right-radius: inherit;
|
|
297
|
+
border-left: 0;
|
|
298
|
+
padding-left: 0;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.bi-field .bi-field--affixes .bi-field--affix:last-child:not(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
302
|
+
border-top-right-radius: inherit;
|
|
303
|
+
border-bottom-right-radius: inherit;
|
|
304
|
+
border-left: 0;
|
|
305
|
+
padding-left: 0;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.bi-field .bi-field--affixes .bi-field--affix:last-child:-webkit-any(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
309
|
+
border-top-left-radius: inherit;
|
|
310
|
+
border-bottom-left-radius: inherit;
|
|
311
|
+
border-right: 0;
|
|
312
|
+
padding-right: 0;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.bi-field .bi-field--affixes .bi-field--affix:last-child:is(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)) {
|
|
316
|
+
border-top-left-radius: inherit;
|
|
317
|
+
border-bottom-left-radius: inherit;
|
|
318
|
+
border-right: 0;
|
|
319
|
+
padding-right: 0;
|
|
320
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
.bi-fieldset {
|
|
2
|
+
--bic-fieldset-color: var(--bi-neutral-95);
|
|
3
|
+
--bic-fieldset-description-color: var(--bi-neutral-60);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.bi-fieldset[data-dark="true"] {
|
|
7
|
+
--bic-fieldset-color: var(--bi-basic-white);
|
|
8
|
+
--bic-fieldset-description-color: var(--bi-neutral-15);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.bi-fieldset {
|
|
12
|
+
border: 0;
|
|
13
|
+
min-width: 0;
|
|
14
|
+
margin: 0;
|
|
15
|
+
padding: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.bi-fieldset > legend {
|
|
19
|
+
color: var(--bic-fieldset-color);
|
|
20
|
+
padding: 0;
|
|
21
|
+
font-size: 1rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.bi-fieldset > * + * {
|
|
25
|
+
margin-top: var(--bi-scale-1x);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.bi-fieldset > legend + p {
|
|
29
|
+
margin-block: var(--bi-scale-1x) 0;
|
|
30
|
+
color: var(--bic-fieldset-description-color);
|
|
31
|
+
font-family: museo-sans, Arial, sans-serif;
|
|
32
|
+
font-size: 1rem;
|
|
33
|
+
font-weight: 500;
|
|
34
|
+
line-height: 1.15;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.bi-fieldset:disabled > legend {
|
|
38
|
+
opacity: var(--ds-opacity-disabled);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.bi-fieldset:disabled > legend + p {
|
|
42
|
+
opacity: var(--ds-opacity-disabled);
|
|
43
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
.bi-footer {
|
|
2
|
+
--bic-footer-color: var(--bi-basic-key);
|
|
3
|
+
--bic-footer-background: var(--bi-basic-white);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.bi-footer[data-dark="true"] {
|
|
7
|
+
--bic-footer-color: var(--bi-basic-white);
|
|
8
|
+
--bic-footer-background: var(--bi-primary-95);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.bi-footer {
|
|
12
|
+
width: 100%;
|
|
13
|
+
color: var(--bic-footer-color);
|
|
14
|
+
background-color: var(--bic-footer-background);
|
|
15
|
+
padding: var(--bi-scale-16x) 0;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
align-items: center;
|
|
18
|
+
gap: var(--bi-scale-10x);
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
align-items: center;
|
|
21
|
+
width: 100%;
|
|
22
|
+
margin-top: -1px;
|
|
23
|
+
font-family: museo-sans, Arial, sans-serif;
|
|
24
|
+
display: flex;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.bi-footer .bi-footer--links-container {
|
|
28
|
+
gap: var(--bi-scale-4x) var(--bi-scale-14x);
|
|
29
|
+
flex-wrap: wrap;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
display: flex;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@media not (min-width: 768px) {
|
|
35
|
+
.bi-footer .bi-footer--links-container {
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.bi-footer .bi-footer--links-container .bi-footer--links {
|
|
41
|
+
flex-direction: row;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
align-items: center;
|
|
44
|
+
min-height: 44px;
|
|
45
|
+
margin: auto;
|
|
46
|
+
font-family: museo-sans, Arial, sans-serif;
|
|
47
|
+
font-size: 1rem;
|
|
48
|
+
font-weight: 700;
|
|
49
|
+
line-height: 1.5;
|
|
50
|
+
display: flex;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media not (min-width: 768px) {
|
|
54
|
+
.bi-footer .bi-footer--links-container .bi-footer--links {
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.bi-footer .bi-footer--links-container .bi-footer--links > p {
|
|
60
|
+
margin: 0 var(--bi-scale-0-50x) 0 0;
|
|
61
|
+
font-weight: 300;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@media not (min-width: 768px) {
|
|
65
|
+
.bi-footer .bi-footer--links-container .bi-footer--links > p {
|
|
66
|
+
margin: var(--bi-scale-3x) 0;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.bi-footer .bi-footer--links-container .bi-footer--links > div {
|
|
71
|
+
justify-content: center;
|
|
72
|
+
align-items: center;
|
|
73
|
+
gap: var(--bi-scale-3x) var(--bi-scale-10x);
|
|
74
|
+
white-space: nowrap;
|
|
75
|
+
flex-direction: row;
|
|
76
|
+
width: 100%;
|
|
77
|
+
display: flex;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@media not (min-width: 768px) {
|
|
81
|
+
.bi-footer .bi-footer--links-container .bi-footer--links > div {
|
|
82
|
+
flex-direction: column;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.bi-footer .bi-footer--accreditations {
|
|
87
|
+
justify-content: center;
|
|
88
|
+
align-items: center;
|
|
89
|
+
gap: var(--bi-scale-12x);
|
|
90
|
+
height: 58px;
|
|
91
|
+
display: flex;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.bi-footer .bi-footer--accreditations .bi-footer--aacsb {
|
|
95
|
+
background-position: center;
|
|
96
|
+
background-repeat: no-repeat;
|
|
97
|
+
background-size: contain;
|
|
98
|
+
height: 58px;
|
|
99
|
+
display: block;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.bi-footer .bi-footer--accreditations .bi-footer--amba {
|
|
103
|
+
background-position: center;
|
|
104
|
+
background-repeat: no-repeat;
|
|
105
|
+
background-size: contain;
|
|
106
|
+
height: 58px;
|
|
107
|
+
display: block;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.bi-footer .bi-footer--accreditations .bi-footer--equis {
|
|
111
|
+
background-position: center;
|
|
112
|
+
background-repeat: no-repeat;
|
|
113
|
+
background-size: contain;
|
|
114
|
+
height: 58px;
|
|
115
|
+
display: block;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.bi-footer .bi-footer--accreditations .bi-footer--aacsb {
|
|
119
|
+
background-image: url("./assets/accreditations/aacsb.svg");
|
|
120
|
+
width: 127px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.bi-footer .bi-footer--accreditations .bi-footer--aacsb:is([data-dark="true"] .bi-footer--aacsb) {
|
|
124
|
+
background-image: url("./assets/accreditations/aacsb-neg.svg");
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.bi-footer .bi-footer--accreditations .bi-footer--amba {
|
|
128
|
+
background-image: url("./assets/accreditations/amba.svg");
|
|
129
|
+
width: 122px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.bi-footer .bi-footer--accreditations .bi-footer--amba:is([data-dark="true"] .bi-footer--amba) {
|
|
133
|
+
background-image: url("./assets/accreditations/amba-neg.svg");
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.bi-footer .bi-footer--accreditations .bi-footer--equis {
|
|
137
|
+
background-image: url("./assets/accreditations/equis.svg");
|
|
138
|
+
width: 104px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.bi-footer .bi-footer--accreditations .bi-footer--equis:is([data-dark="true"] .bi-footer--equis) {
|
|
142
|
+
background-image: url("./assets/accreditations/equis-neg.svg");
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.bi-footer .bi-footer--socials {
|
|
146
|
+
justify-content: center;
|
|
147
|
+
align-items: center;
|
|
148
|
+
gap: var(--bi-scale-8x);
|
|
149
|
+
display: flex;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.bi-footer .bi-footer--copyright {
|
|
153
|
+
text-align: center;
|
|
154
|
+
margin: 0;
|
|
155
|
+
font-family: museo-slab, serif;
|
|
156
|
+
font-size: 1rem;
|
|
157
|
+
font-weight: 500;
|
|
158
|
+
line-height: 1.5;
|
|
159
|
+
}
|