@biggive/components 202307271726.0.0 → 202308021605.0.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.
- package/dist/biggive/biggive.esm.js +1 -1
- package/dist/biggive/p-6f588def.entry.js +1 -0
- package/dist/cjs/biggive-image-card.cjs.entry.js +51 -0
- package/dist/cjs/biggive.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/biggive-image-card/biggive-image-card.css +368 -0
- package/dist/collection/components/biggive-image-card/biggive-image-card.js +470 -0
- package/dist/collection/components/biggive-image-card/biggive-image-card.stories.js +159 -0
- package/dist/components/biggive-image-card.d.ts +11 -0
- package/dist/components/biggive-image-card.js +94 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/biggive-image-card.entry.js +47 -0
- package/dist/esm/biggive.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/biggive-image-card/biggive-image-card.d.ts +27 -0
- package/dist/types/components/biggive-image-card/biggive-image-card.stories.d.ts +76 -0
- package/dist/types/components.d.ts +57 -0
- package/hydrate/index.js +76 -0
- package/package.json +1 -1
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @see brandColour in src/globals/brand-colour.ts . This and that should be updated together.
|
|
3
|
+
*/
|
|
4
|
+
a {
|
|
5
|
+
color: inherit;
|
|
6
|
+
text-decoration: underline;
|
|
7
|
+
}
|
|
8
|
+
a:hover {
|
|
9
|
+
text-decoration: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.background-colour-hover-primary:hover,
|
|
13
|
+
.background-colour-primary {
|
|
14
|
+
background-color: #2C089B;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.background-colour-hover-secondary:hover,
|
|
18
|
+
.background-colour-secondary {
|
|
19
|
+
background-color: #2AF135;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.background-colour-hover-tertiary:hover,
|
|
23
|
+
.background-colour-tertiary {
|
|
24
|
+
background-color: #FF7272;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.background-colour-hover-brand-1:hover,
|
|
28
|
+
.background-colour-brand-1 {
|
|
29
|
+
background-color: #B30510;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.background-colour-hover-brand-2:hover,
|
|
33
|
+
.background-colour-brand-2 {
|
|
34
|
+
background-color: #6E0887;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.background-colour-hover-brand-3:hover,
|
|
38
|
+
.background-colour-brand-3 {
|
|
39
|
+
background-color: #50B400;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.background-colour-hover-brand-4:hover,
|
|
43
|
+
.background-colour-brand-4 {
|
|
44
|
+
background-color: #FFE500;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.background-colour-hover-brand-5:hover,
|
|
48
|
+
.background-colour-brand-5 {
|
|
49
|
+
background-color: #F07D00;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.background-colour-hover-brand-6:hover,
|
|
53
|
+
.background-colour-brand-6 {
|
|
54
|
+
background-color: #62CFC9;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.background-colour-hover-white:hover,
|
|
58
|
+
.background-colour-white {
|
|
59
|
+
background-color: #FFFFFF;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.background-colour-hover-black:hover,
|
|
63
|
+
.background-colour-black {
|
|
64
|
+
background-color: #000000;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.background-colour-hover-white:hover,
|
|
68
|
+
.background-colour-white {
|
|
69
|
+
background-color: #FFFFFF;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.background-colour-hover-grey-extra-light:hover,
|
|
73
|
+
.background-colour-grey-extra-light {
|
|
74
|
+
background-color: #D7D7D7;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.background-colour-hover-grey-light:hover,
|
|
78
|
+
.background-colour-grey-light {
|
|
79
|
+
background-color: #E8E8E8;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.background-colour-hover-grey-medium:hover,
|
|
83
|
+
.background-colour-grey-medium {
|
|
84
|
+
background-color: #8A8A8A;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.background-colour-hover-grey-dark:hover,
|
|
88
|
+
.background-colour-grey-dark {
|
|
89
|
+
background-color: #4A4A4A;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.fill-primary {
|
|
93
|
+
fill: #2C089B;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.fill-secondary {
|
|
97
|
+
fill: #2AF135;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.fill-tertiary {
|
|
101
|
+
fill: #FF7272;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.fill-brand-1 {
|
|
105
|
+
fill: #B30510;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.fill-brand-2 {
|
|
109
|
+
fill: #6E0887;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.fill-brand-3 {
|
|
113
|
+
fill: #50B400;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.fill-brand-4 {
|
|
117
|
+
fill: #FFE500;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.fill-brand-5 {
|
|
121
|
+
fill: #F07D00;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.fill-brand-6 {
|
|
125
|
+
fill: #CBC8C8;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.fill-brand-mhf-turquoise {
|
|
129
|
+
fill: #62CFC9;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.fill-white {
|
|
133
|
+
fill: #FFFFFF;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.fill-black {
|
|
137
|
+
fill: #000000;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.fill-grey-extra-light {
|
|
141
|
+
fill: #D7D7D7;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.fill-grey-light {
|
|
145
|
+
fill: #E8E8E8;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.fill-grey-medium {
|
|
149
|
+
fill: #8A8A8A;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.fill-grey-dark {
|
|
153
|
+
fill: #4A4A4A;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.fill-red {
|
|
157
|
+
fill: red;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.space-above-0 {
|
|
161
|
+
margin-top: 0;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.space-above-1 {
|
|
165
|
+
margin-top: 5px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.space-above-2 {
|
|
169
|
+
margin-top: 10px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.space-above-3 {
|
|
173
|
+
margin-top: 15px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.space-above-4 {
|
|
177
|
+
margin-top: 30px;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.space-above-5 {
|
|
181
|
+
margin-top: 45px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.space-above-6 {
|
|
185
|
+
margin-top: 60px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.space-below-0 {
|
|
189
|
+
margin-bottom: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.space-below-1 {
|
|
193
|
+
margin-bottom: 5px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.space-below-2 {
|
|
197
|
+
margin-bottom: 10px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.space-below-3 {
|
|
201
|
+
margin-bottom: 15px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.space-below-4 {
|
|
205
|
+
margin-bottom: 30px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.space-below-5 {
|
|
209
|
+
margin-bottom: 45px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.space-below-6 {
|
|
213
|
+
margin-bottom: 60px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.text-colour-hover-primary:hover,
|
|
217
|
+
.text-colour-primary {
|
|
218
|
+
color: #2C089B;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.text-colour-hover-secondary:hover,
|
|
222
|
+
.text-colour-secondary {
|
|
223
|
+
color: #2AF135;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.text-colour-hover-tertiary:hover,
|
|
227
|
+
.text-colour-tertiary {
|
|
228
|
+
color: #FF7272;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.text-colour-hover-brand-1:hover,
|
|
232
|
+
.text-colour-brand-1 {
|
|
233
|
+
color: #B30510;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.text-colour-hover-brand-2:hover,
|
|
237
|
+
.text-colour-brand-2 {
|
|
238
|
+
color: #6E0887;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.text-colour-hover-brand-3:hover,
|
|
242
|
+
.text-colour-brand-3 {
|
|
243
|
+
color: #50B400;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.text-colour-hover-brand-4:hover,
|
|
247
|
+
.text-colour-brand-4 {
|
|
248
|
+
color: #FFE500;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.text-colour-hover-brand-5:hover,
|
|
252
|
+
.text-colour-brand-5 {
|
|
253
|
+
color: #F07D00;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.text-colour-hover-brand-6:hover,
|
|
257
|
+
.text-colour-brand-6 {
|
|
258
|
+
color: #CBC8C8;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.text-colour-hover-white:hover,
|
|
262
|
+
.text-colour-white {
|
|
263
|
+
color: #FFFFFF;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.text-colour-hover-black:hover,
|
|
267
|
+
.text-colour-black {
|
|
268
|
+
color: #000000;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.text-colour-hover-grey-extra-light:hover,
|
|
272
|
+
.text-colour-grey-extra-light {
|
|
273
|
+
color: #D7D7D7;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.text-colour-hover-grey-light:hover,
|
|
277
|
+
.text-colour-grey-light {
|
|
278
|
+
color: #E8E8E8;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.text-colour-hover-grey-medium:hover,
|
|
282
|
+
.text-colour-grey-medium {
|
|
283
|
+
color: #8A8A8A;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.text-colour-hover-grey-dark:hover,
|
|
287
|
+
.text-colour-grey-dark {
|
|
288
|
+
color: #4A4A4A;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
:host {
|
|
292
|
+
display: contents;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.container {
|
|
296
|
+
font-family: "Euclid Triangle", sans-serif;
|
|
297
|
+
font-size: 17px;
|
|
298
|
+
line-height: 24px;
|
|
299
|
+
position: relative;
|
|
300
|
+
text-align: center;
|
|
301
|
+
background-size: cover;
|
|
302
|
+
background-position: center center;
|
|
303
|
+
padding: 10px;
|
|
304
|
+
height: 100%;
|
|
305
|
+
white-space: pre-wrap;
|
|
306
|
+
}
|
|
307
|
+
.container a,
|
|
308
|
+
.container a:hover {
|
|
309
|
+
text-decoration: none;
|
|
310
|
+
}
|
|
311
|
+
.container .sleeve {
|
|
312
|
+
padding: 10px;
|
|
313
|
+
height: 100%;
|
|
314
|
+
box-sizing: border-box;
|
|
315
|
+
transition: all 1s ease-in-out;
|
|
316
|
+
}
|
|
317
|
+
.container.add-animation-true:hover .sleeve {
|
|
318
|
+
margin: -30px;
|
|
319
|
+
padding: 60px;
|
|
320
|
+
height: calc(100% + 60px);
|
|
321
|
+
}
|
|
322
|
+
.container.clip-bottom-left-corner-false.clip-top-right-corner-true .sleeve {
|
|
323
|
+
clip-path: polygon(0% 0%, 0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, 100% 100%, 0% 100%, 0 100%);
|
|
324
|
+
}
|
|
325
|
+
.container.clip-bottom-left-corner-true.clip-top-right-corner-false .sleeve {
|
|
326
|
+
clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 100% 0, 100% 100%, 100% 100%, 50px 100%, 0 calc(100% - 50px));
|
|
327
|
+
}
|
|
328
|
+
.container.clip-bottom-left-corner-true.clip-top-right-corner-true .sleeve {
|
|
329
|
+
clip-path: polygon(0% 0%, 0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, 100% 100%, 50px 100%, 0 calc(100% - 50px));
|
|
330
|
+
}
|
|
331
|
+
.container .icon svg {
|
|
332
|
+
width: 50px;
|
|
333
|
+
height: auto;
|
|
334
|
+
}
|
|
335
|
+
.container .title {
|
|
336
|
+
font-size: 25px;
|
|
337
|
+
line-height: 32px;
|
|
338
|
+
font-weight: bold;
|
|
339
|
+
margin-bottom: 15px;
|
|
340
|
+
}
|
|
341
|
+
.container .subtitle {
|
|
342
|
+
margin-bottom: 15px;
|
|
343
|
+
}
|
|
344
|
+
.container .main-image-container {
|
|
345
|
+
margin-bottom: 15px;
|
|
346
|
+
}
|
|
347
|
+
.container .main-image-container img {
|
|
348
|
+
width: 100%;
|
|
349
|
+
height: auto;
|
|
350
|
+
}
|
|
351
|
+
.container .button-wrap {
|
|
352
|
+
text-align: center;
|
|
353
|
+
}
|
|
354
|
+
.container .button-wrap.align-left {
|
|
355
|
+
text-align: left;
|
|
356
|
+
}
|
|
357
|
+
.container .button-wrap.align-right {
|
|
358
|
+
text-align: right;
|
|
359
|
+
}
|
|
360
|
+
.container .text-align-left {
|
|
361
|
+
text-align: left;
|
|
362
|
+
}
|
|
363
|
+
.container .text-align-center {
|
|
364
|
+
text-align: center;
|
|
365
|
+
}
|
|
366
|
+
.container .text-align-right {
|
|
367
|
+
text-align: right;
|
|
368
|
+
}
|