@7shifts/sous-chef 2.17.0 → 2.17.2
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/core/DataTable/DataTable.d.ts +1 -3
- package/dist/core/DataTable/types.d.ts +7 -3
- package/dist/core/DataTableEditableCell/DataTableEditableCell.d.ts +1 -2
- package/dist/core/DataTableRow/DataTableRow.d.ts +1 -1
- package/dist/core/Flex/Flex.d.ts +0 -2
- package/dist/core/Inline/Inline.d.ts +0 -1
- package/dist/core/Stack/Stack.d.ts +0 -1
- package/dist/forms/SelectField/CustomContainer/CustomContainer.d.ts +2 -6
- package/dist/forms/SelectField/CustomOption/CustomOption.d.ts +2 -5
- package/dist/index.css +546 -962
- package/dist/index.d.ts +2 -1
- package/dist/index.js +41 -57
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +41 -57
- package/dist/index.modern.js.map +1 -1
- package/dist/layout/Card/Card.d.ts +2 -2
- package/dist/layout/Flex/Flex.d.ts +21 -0
- package/dist/layout/Flex/index.d.ts +1 -0
- package/dist/layout/Flex/types.d.ts +4 -0
- package/dist/layout/Inline/Inline.d.ts +21 -0
- package/dist/layout/Inline/index.d.ts +1 -0
- package/dist/layout/Stack/Stack.d.ts +20 -0
- package/dist/layout/Stack/index.d.ts +1 -0
- package/dist/layout/index.d.ts +4 -1
- package/dist/lists/DataTable/DataTable.d.ts +31 -0
- package/dist/lists/DataTable/DataTableCell/DataTableCell.d.ts +7 -0
- package/dist/lists/DataTable/DataTableCell/index.d.ts +1 -0
- package/dist/lists/DataTable/DataTableContext.d.ts +11 -0
- package/dist/lists/DataTable/DataTableHeader.d.ts +9 -0
- package/dist/lists/DataTable/index.d.ts +1 -0
- package/dist/lists/DataTable/types.d.ts +34 -0
- package/dist/lists/DataTableEditableCell/DataTableEditableCell.d.ts +22 -0
- package/dist/lists/DataTableEditableCell/index.d.ts +1 -0
- package/dist/lists/DataTableRow/DataTableRow.d.ts +11 -0
- package/dist/lists/DataTableRow/DataTableRowActions/DataTableRowActions.d.ts +6 -0
- package/dist/lists/DataTableRow/DataTableRowActions/index.d.ts +1 -0
- package/dist/lists/DataTableRow/index.d.ts +1 -0
- package/dist/lists/ResourceTable/ResourceTable.d.ts +28 -0
- package/dist/lists/ResourceTable/ResourceTableContext.d.ts +8 -0
- package/dist/lists/ResourceTable/ResourceTableHeader.d.ts +12 -0
- package/dist/lists/ResourceTable/index.d.ts +1 -0
- package/dist/lists/ResourceTable/types.d.ts +26 -0
- package/dist/lists/ResourceTableRow/ResourceTableRow.d.ts +13 -0
- package/dist/lists/ResourceTableRow/index.d.ts +1 -0
- package/dist/lists/index.d.ts +9 -0
- package/package.json +1 -1
- package/dist/icons/IconArrowDown.d.ts +0 -11
- package/dist/icons/IconArrowLeft.d.ts +0 -9
- package/dist/icons/IconArrowRight.d.ts +0 -9
- package/dist/icons/IconArrowUp.d.ts +0 -9
- package/dist/icons/IconCalendar.d.ts +0 -9
- package/dist/icons/IconCheck.d.ts +0 -9
- package/dist/icons/IconChevronDown.d.ts +0 -9
- package/dist/icons/IconChevronUp.d.ts +0 -8
- package/dist/icons/IconClose.d.ts +0 -9
- package/dist/icons/IconComment.d.ts +0 -9
- package/dist/icons/IconDelete.d.ts +0 -9
- package/dist/icons/IconEdit.d.ts +0 -9
- package/dist/icons/IconExclaim.d.ts +0 -9
- package/dist/icons/IconEye.d.ts +0 -9
- package/dist/icons/IconEyeSlash.d.ts +0 -9
- package/dist/icons/IconLocation.d.ts +0 -9
- package/dist/icons/IconMinusCircle.d.ts +0 -9
- package/dist/icons/IconMore.d.ts +0 -9
- package/dist/icons/IconRemove.d.ts +0 -8
- package/dist/icons/IconUser.d.ts +0 -8
- package/dist/icons/IconUserPlus.d.ts +0 -9
package/dist/index.css
CHANGED
|
@@ -1,14 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
:root {
|
|
2
|
+
--color-white: #fff;
|
|
3
|
+
--color-white-rgb: 255, 255, 255;
|
|
4
|
+
--color-black: #000;
|
|
5
|
+
--color-black-rgb: 0, 0, 0;
|
|
6
|
+
--color-tangerine-100: #fef1ed;
|
|
7
|
+
--color-tangerine-100-rgb: 254, 241, 237;
|
|
8
|
+
--color-tangerine-200: #fdd5c8;
|
|
9
|
+
--color-tangerine-200-rgb: 253, 213, 200;
|
|
10
|
+
--color-tangerine-300: #fcab91;
|
|
11
|
+
--color-tangerine-300-rgb: 252, 171, 145;
|
|
12
|
+
--color-tangerine-400: #fb7448;
|
|
13
|
+
--color-tangerine-400-rgb: 251, 116, 72;
|
|
14
|
+
--color-tangerine-500: #e16840;
|
|
15
|
+
--color-tangerine-500-rgb: 225, 104, 64;
|
|
16
|
+
--color-tangerine-600: #96452b;
|
|
17
|
+
--color-tangerine-600-rgb: 150, 69, 43;
|
|
18
|
+
--color-eggplant-100: #f0f3fb;
|
|
19
|
+
--color-eggplant-100-rgb: 240, 243, 251;
|
|
20
|
+
--color-eggplant-200: #d3dbf4;
|
|
21
|
+
--color-eggplant-200-rgb: 211, 219, 244;
|
|
22
|
+
--color-eggplant-300: #a7b7ea;
|
|
23
|
+
--color-eggplant-300-rgb: 67, 183, 234;
|
|
24
|
+
--color-eggplant-400: #6d87dd;
|
|
25
|
+
--color-eggplant-400-rgb: 109, 135, 221;
|
|
26
|
+
--color-eggplant-500: #6179c6;
|
|
27
|
+
--color-eggplant-500-rgb: 97, 121, 198;
|
|
28
|
+
--color-eggplant-600: #415184;
|
|
29
|
+
--color-eggplant-600-rgb: 65, 81, 132;
|
|
30
|
+
--color-mint-100: #ecfaf8;
|
|
31
|
+
--color-mint-100-rgb: 236, 250, 248;
|
|
32
|
+
--color-mint-200: #c6f1eb;
|
|
33
|
+
--color-mint-200-rgb: 198, 241, 235;
|
|
34
|
+
--color-mint-300: #8de4d7;
|
|
35
|
+
--color-mint-300-rgb: 141, 228, 215;
|
|
36
|
+
--color-mint-400: #3abda9;
|
|
37
|
+
--color-mint-400-rgb: 58, 189, 169;
|
|
38
|
+
--color-mint-500: #35ac9a;
|
|
39
|
+
--color-mint-500-rgb: 53, 172, 154;
|
|
40
|
+
--color-mint-600: #277e71;
|
|
41
|
+
--color-mint-600-rgb: 39, 126, 113;
|
|
42
|
+
--color-radish-100: #fcf0f0;
|
|
43
|
+
--color-radish-100-rgb: 252, 240, 240;
|
|
44
|
+
--color-radish-200: #f7d1d1;
|
|
45
|
+
--color-radish-200-rgb: 247, 209, 209;
|
|
46
|
+
--color-radish-300: #f0a3a3;
|
|
47
|
+
--color-radish-300-rgb: 240, 163, 163;
|
|
48
|
+
--color-radish-400: #e76767;
|
|
49
|
+
--color-radish-400-rgb: 231, 103, 103;
|
|
50
|
+
--color-radish-500: #cf5c5c;
|
|
51
|
+
--color-radish-500-rgb: 207, 92, 92;
|
|
52
|
+
--color-radish-600: #8a3d3d;
|
|
53
|
+
--color-radish-600-rgb: 138, 61, 61;
|
|
54
|
+
--color-blueberry-100: #f6fdff;
|
|
55
|
+
--color-blueberry-100-rgb: 246, 253, 255;
|
|
56
|
+
--color-blueberry-200: #ceecf5;
|
|
57
|
+
--color-blueberry-200-rgb: 206, 236, 245;
|
|
58
|
+
--color-blueberry-300: #9cd9eb;
|
|
59
|
+
--color-blueberry-300-rgb: 156, 217, 235;
|
|
60
|
+
--color-blueberry-400: #5bc0de;
|
|
61
|
+
--color-blueberry-400-rgb: 91, 192, 222;
|
|
62
|
+
--color-blueberry-500: #51acc7;
|
|
63
|
+
--color-blueberry-500-rgb: 81, 172, 199;
|
|
64
|
+
--color-blueberry-600: #367385;
|
|
65
|
+
--color-blueberry-600-rgb: 54, 115, 133;
|
|
66
|
+
--color-banana-100: #fff9ed;
|
|
67
|
+
--color-banana-100-rgb: 255, 249, 237;
|
|
68
|
+
--color-banana-200: #ffeec9;
|
|
69
|
+
--color-banana-200-rgb: 255, 238, 201;
|
|
70
|
+
--color-banana-300: #ffdd92;
|
|
71
|
+
--color-banana-300-rgb: 255, 221, 146;
|
|
72
|
+
--color-banana-400: #ffc74a;
|
|
73
|
+
--color-banana-400-rgb: 255, 199, 74;
|
|
74
|
+
--color-banana-500: #e5b242;
|
|
75
|
+
--color-banana-500-rgb: 229, 178, 66;
|
|
76
|
+
--color-banana-600: #99772c;
|
|
77
|
+
--color-banana-600-rgb: 153, 119, 44;
|
|
78
|
+
--color-grey-100: #f3f3f3;
|
|
79
|
+
--color-grey-100-rgb: 243, 243, 243;
|
|
80
|
+
--color-grey-200: #d5d5d5;
|
|
81
|
+
--color-grey-200-rgb: 213, 213, 213;
|
|
82
|
+
--color-grey-300: #949494;
|
|
83
|
+
--color-grey-300-rgb: 148, 148, 148;
|
|
84
|
+
--color-grey-400: #767676;
|
|
85
|
+
--color-grey-400-rgb: 118, 118, 118;
|
|
86
|
+
--color-grey-500: #464646;
|
|
87
|
+
--color-grey-500-rgb: 70, 70, 70;
|
|
88
|
+
--color-grey-600: #323232;
|
|
89
|
+
--color-grey-600-rgb: 50, 50, 50;
|
|
90
|
+
}
|
|
12
91
|
._v0AEt {
|
|
13
92
|
font-family: "Proxima Nova", sans-serif;
|
|
14
93
|
position: absolute;
|
|
@@ -17,7 +96,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
17
96
|
margin: 2px 0 0 0;
|
|
18
97
|
padding: 5px 0;
|
|
19
98
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
20
|
-
background:
|
|
99
|
+
background: var(--color-white);
|
|
21
100
|
margin-top: 8px;
|
|
22
101
|
z-index: 9999;
|
|
23
102
|
opacity: 0;
|
|
@@ -39,57 +118,49 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
39
118
|
display: flex;
|
|
40
119
|
cursor: pointer;
|
|
41
120
|
white-space: nowrap;
|
|
42
|
-
color:
|
|
121
|
+
color: var(--color-grey-500);
|
|
43
122
|
}
|
|
44
123
|
._IRJ4j:hover {
|
|
45
|
-
background:
|
|
124
|
+
background: var(--color-grey-100);
|
|
46
125
|
}
|
|
47
|
-
.
|
|
126
|
+
._1DgA2 {
|
|
48
127
|
display: flex;
|
|
49
128
|
}
|
|
50
|
-
.
|
|
129
|
+
._1DgA2 .form__group {
|
|
51
130
|
margin: 0;
|
|
52
131
|
}
|
|
53
132
|
|
|
54
|
-
.
|
|
133
|
+
._3HjO2 {
|
|
55
134
|
align-items: center;
|
|
56
135
|
}
|
|
57
136
|
|
|
58
|
-
.
|
|
137
|
+
._3r9Wx {
|
|
59
138
|
align-items: flex-end;
|
|
60
139
|
}
|
|
61
140
|
|
|
62
|
-
.
|
|
141
|
+
._oIWCF {
|
|
63
142
|
align-items: flex-start;
|
|
64
143
|
}
|
|
65
144
|
|
|
66
|
-
.
|
|
145
|
+
._36c9a {
|
|
67
146
|
justify-content: center;
|
|
68
147
|
}
|
|
69
148
|
|
|
70
|
-
.
|
|
149
|
+
._1bNEh {
|
|
71
150
|
justify-content: flex-end;
|
|
72
151
|
}
|
|
73
152
|
|
|
74
|
-
.
|
|
153
|
+
._1VoZz {
|
|
75
154
|
justify-content: space-between;
|
|
76
155
|
}
|
|
77
156
|
|
|
78
|
-
.
|
|
157
|
+
._2GoV5 {
|
|
79
158
|
justify-content: flex-start;
|
|
80
159
|
}
|
|
81
160
|
|
|
82
|
-
.
|
|
161
|
+
._QuNgn {
|
|
83
162
|
display: inline-flex;
|
|
84
163
|
}
|
|
85
|
-
/* stylelint-disable color-no-hex */
|
|
86
|
-
/*
|
|
87
|
-
These are the colour variables to be used around the webapp.
|
|
88
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
89
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
90
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
91
|
-
Please ask a designer if you have questions about which colours to use.
|
|
92
|
-
*/
|
|
93
164
|
._2wtfD {
|
|
94
165
|
-webkit-animation: _2Jprn 1.4s linear infinite;
|
|
95
166
|
animation: _2Jprn 1.4s linear infinite;
|
|
@@ -121,22 +192,22 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
121
192
|
._3zucL {
|
|
122
193
|
stroke-dasharray: 187;
|
|
123
194
|
stroke-dashoffset: 0;
|
|
124
|
-
stroke:
|
|
195
|
+
stroke: var(--color-tangerine-400);
|
|
125
196
|
transform-origin: center;
|
|
126
197
|
-webkit-animation: _3ZqYM 1.4s ease-in-out infinite;
|
|
127
198
|
animation: _3ZqYM 1.4s ease-in-out infinite;
|
|
128
199
|
}
|
|
129
200
|
|
|
130
201
|
._3XYKx {
|
|
131
|
-
stroke:
|
|
202
|
+
stroke: var(--color-mint-400);
|
|
132
203
|
}
|
|
133
204
|
|
|
134
205
|
._1pYbs {
|
|
135
|
-
stroke:
|
|
206
|
+
stroke: var(--color-grey-300);
|
|
136
207
|
}
|
|
137
208
|
|
|
138
209
|
._3ofDF {
|
|
139
|
-
stroke:
|
|
210
|
+
stroke: var(--color-white);
|
|
140
211
|
}
|
|
141
212
|
|
|
142
213
|
._e0OH1 {
|
|
@@ -170,33 +241,11 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
170
241
|
transform: rotate(450deg);
|
|
171
242
|
}
|
|
172
243
|
}
|
|
173
|
-
/*********************************
|
|
174
|
-
For new colours, see _colors.scss.
|
|
175
|
-
**********************************/
|
|
176
|
-
/* stylelint-disable color-no-hex */
|
|
177
|
-
/*
|
|
178
|
-
These are the colour variables to be used around the webapp.
|
|
179
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
180
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
181
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
182
|
-
Please ask a designer if you have questions about which colours to use.
|
|
183
|
-
*/
|
|
184
244
|
._1P_xb {
|
|
185
245
|
display: inline-block;
|
|
186
246
|
position: relative;
|
|
187
247
|
text-align: left;
|
|
188
248
|
}
|
|
189
|
-
/*********************************
|
|
190
|
-
For new colours, see _colors.scss.
|
|
191
|
-
**********************************/
|
|
192
|
-
/* stylelint-disable color-no-hex */
|
|
193
|
-
/*
|
|
194
|
-
These are the colour variables to be used around the webapp.
|
|
195
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
196
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
197
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
198
|
-
Please ask a designer if you have questions about which colours to use.
|
|
199
|
-
*/
|
|
200
249
|
._3h-8V {
|
|
201
250
|
font-family: "Proxima Nova", sans-serif;
|
|
202
251
|
font-size: 14px;
|
|
@@ -214,12 +263,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
214
263
|
opacity: 1;
|
|
215
264
|
}
|
|
216
265
|
._2fg5c {
|
|
217
|
-
background:
|
|
218
|
-
color:
|
|
266
|
+
background: var(--color-grey-600);
|
|
267
|
+
color: var(--color-white);
|
|
219
268
|
}
|
|
220
269
|
._1iXKZ {
|
|
221
|
-
background:
|
|
222
|
-
color:
|
|
270
|
+
background: var(--color-white);
|
|
271
|
+
color: var(--color-grey-500);
|
|
223
272
|
}
|
|
224
273
|
._2K2Xx {
|
|
225
274
|
font-weight: 600;
|
|
@@ -246,24 +295,13 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
246
295
|
opacity: 1;
|
|
247
296
|
}
|
|
248
297
|
._2l-Dg {
|
|
249
|
-
border-top-color:
|
|
250
|
-
color:
|
|
298
|
+
border-top-color: var(--color-grey-600);
|
|
299
|
+
color: var(--color-white);
|
|
251
300
|
}
|
|
252
301
|
._2LAWl {
|
|
253
|
-
border-top-color:
|
|
254
|
-
color:
|
|
255
|
-
}
|
|
256
|
-
/*********************************
|
|
257
|
-
For new colours, see _colors.scss.
|
|
258
|
-
**********************************/
|
|
259
|
-
/* stylelint-disable color-no-hex */
|
|
260
|
-
/*
|
|
261
|
-
These are the colour variables to be used around the webapp.
|
|
262
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
263
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
264
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
265
|
-
Please ask a designer if you have questions about which colours to use.
|
|
266
|
-
*/
|
|
302
|
+
border-top-color: var(--color-white);
|
|
303
|
+
color: var(--color-grey-500);
|
|
304
|
+
}
|
|
267
305
|
._1SQ_p {
|
|
268
306
|
font-family: "Proxima Nova", sans-serif;
|
|
269
307
|
font-weight: 600;
|
|
@@ -300,7 +338,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
300
338
|
height: 16px;
|
|
301
339
|
}
|
|
302
340
|
._1SQ_p:focus {
|
|
303
|
-
box-shadow: 0 0 8px
|
|
341
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
304
342
|
outline: none;
|
|
305
343
|
text-decoration: none;
|
|
306
344
|
}
|
|
@@ -339,394 +377,361 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
339
377
|
}
|
|
340
378
|
|
|
341
379
|
._3OB2g {
|
|
342
|
-
background:
|
|
343
|
-
border-color:
|
|
344
|
-
color:
|
|
380
|
+
background: var(--color-grey-100);
|
|
381
|
+
border-color: var(--color-grey-200);
|
|
382
|
+
color: var(--color-grey-500);
|
|
345
383
|
}
|
|
346
384
|
._3OB2g:hover {
|
|
347
|
-
background:
|
|
348
|
-
border-color:
|
|
349
|
-
color:
|
|
385
|
+
background: var(--color-grey-200);
|
|
386
|
+
border-color: var(--color-grey-300);
|
|
387
|
+
color: var(--color-grey-600);
|
|
350
388
|
}
|
|
351
389
|
._3OB2g:disabled {
|
|
352
|
-
background:
|
|
353
|
-
border-color:
|
|
354
|
-
color:
|
|
390
|
+
background: var(--color-grey-100);
|
|
391
|
+
border-color: var(--color-grey-200);
|
|
392
|
+
color: var(--color-grey-300);
|
|
355
393
|
}
|
|
356
394
|
._3OB2g[aria-disabled=true] {
|
|
357
|
-
background:
|
|
358
|
-
border-color:
|
|
359
|
-
color:
|
|
395
|
+
background: var(--color-grey-100);
|
|
396
|
+
border-color: var(--color-grey-200);
|
|
397
|
+
color: var(--color-grey-300);
|
|
360
398
|
}
|
|
361
399
|
|
|
362
400
|
._2RivT {
|
|
363
|
-
background:
|
|
364
|
-
border-color:
|
|
365
|
-
color:
|
|
401
|
+
background: var(--color-mint-400);
|
|
402
|
+
border-color: var(--color-mint-400);
|
|
403
|
+
color: var(--color-white);
|
|
366
404
|
}
|
|
367
405
|
._2RivT:hover {
|
|
368
|
-
background:
|
|
369
|
-
border-color:
|
|
370
|
-
color:
|
|
406
|
+
background: var(--color-mint-500);
|
|
407
|
+
border-color: var(--color-mint-500);
|
|
408
|
+
color: var(--color-white);
|
|
371
409
|
}
|
|
372
410
|
._2RivT:disabled {
|
|
373
|
-
background:
|
|
374
|
-
border-color:
|
|
375
|
-
color:
|
|
411
|
+
background: var(--color-mint-300);
|
|
412
|
+
border-color: var(--color-mint-300);
|
|
413
|
+
color: var(--color-white);
|
|
376
414
|
}
|
|
377
415
|
._2RivT[aria-disabled=true] {
|
|
378
|
-
background:
|
|
379
|
-
border-color:
|
|
380
|
-
color:
|
|
416
|
+
background: var(--color-mint-300);
|
|
417
|
+
border-color: var(--color-mint-300);
|
|
418
|
+
color: var(--color-white);
|
|
381
419
|
}
|
|
382
420
|
|
|
383
421
|
._3T8M_ {
|
|
384
|
-
background:
|
|
385
|
-
border-color:
|
|
386
|
-
color:
|
|
422
|
+
background: var(--color-radish-400);
|
|
423
|
+
border-color: var(--color-radish-400);
|
|
424
|
+
color: var(--color-white);
|
|
387
425
|
}
|
|
388
426
|
._3T8M_:hover {
|
|
389
|
-
background:
|
|
390
|
-
border-color:
|
|
391
|
-
color:
|
|
427
|
+
background: var(--color-radish-500);
|
|
428
|
+
border-color: var(--color-radish-500);
|
|
429
|
+
color: var(--color-white);
|
|
392
430
|
}
|
|
393
431
|
._3T8M_:disabled {
|
|
394
|
-
background:
|
|
395
|
-
border-color:
|
|
396
|
-
color:
|
|
432
|
+
background: var(--color-radish-300);
|
|
433
|
+
border-color: var(--color-radish-300);
|
|
434
|
+
color: var(--color-white);
|
|
397
435
|
}
|
|
398
436
|
._3T8M_[aria-disabled=true] {
|
|
399
|
-
background:
|
|
400
|
-
border-color:
|
|
401
|
-
color:
|
|
437
|
+
background: var(--color-radish-300);
|
|
438
|
+
border-color: var(--color-radish-300);
|
|
439
|
+
color: var(--color-white);
|
|
402
440
|
}
|
|
403
441
|
|
|
404
442
|
._1AYVC {
|
|
405
|
-
background:
|
|
406
|
-
border-color:
|
|
407
|
-
color:
|
|
443
|
+
background: var(--color-eggplant-400);
|
|
444
|
+
border-color: var(--color-eggplant-400);
|
|
445
|
+
color: var(--color-white);
|
|
408
446
|
}
|
|
409
447
|
._1AYVC:hover {
|
|
410
|
-
background:
|
|
411
|
-
border-color:
|
|
412
|
-
color:
|
|
448
|
+
background: var(--color-eggplant-500);
|
|
449
|
+
border-color: var(--color-eggplant-500);
|
|
450
|
+
color: var(--color-white);
|
|
413
451
|
}
|
|
414
452
|
._1AYVC:disabled {
|
|
415
|
-
background:
|
|
416
|
-
border-color:
|
|
417
|
-
color:
|
|
453
|
+
background: var(--color-eggplant-300);
|
|
454
|
+
border-color: var(--color-eggplant-300);
|
|
455
|
+
color: var(--color-white);
|
|
418
456
|
}
|
|
419
457
|
._1AYVC[aria-disabled=true] {
|
|
420
|
-
background:
|
|
421
|
-
border-color:
|
|
422
|
-
color:
|
|
458
|
+
background: var(--color-eggplant-300);
|
|
459
|
+
border-color: var(--color-eggplant-300);
|
|
460
|
+
color: var(--color-white);
|
|
423
461
|
}
|
|
424
462
|
|
|
425
463
|
._34HiE {
|
|
426
|
-
background:
|
|
427
|
-
border-color:
|
|
428
|
-
color:
|
|
464
|
+
background: var(--color-tangerine-400);
|
|
465
|
+
border-color: var(--color-tangerine-400);
|
|
466
|
+
color: var(--color-white);
|
|
429
467
|
}
|
|
430
468
|
._34HiE:hover {
|
|
431
|
-
background:
|
|
432
|
-
border-color:
|
|
433
|
-
color:
|
|
469
|
+
background: var(--color-tangerine-500);
|
|
470
|
+
border-color: var(--color-tangerine-500);
|
|
471
|
+
color: var(--color-white);
|
|
434
472
|
}
|
|
435
473
|
._34HiE:disabled {
|
|
436
|
-
background:
|
|
437
|
-
border-color:
|
|
438
|
-
color:
|
|
474
|
+
background: var(--color-tangerine-300);
|
|
475
|
+
border-color: var(--color-tangerine-300);
|
|
476
|
+
color: var(--color-white);
|
|
439
477
|
}
|
|
440
478
|
._34HiE[aria-disabled=true] {
|
|
441
|
-
background:
|
|
442
|
-
border-color:
|
|
443
|
-
color:
|
|
479
|
+
background: var(--color-tangerine-300);
|
|
480
|
+
border-color: var(--color-tangerine-300);
|
|
481
|
+
color: var(--color-white);
|
|
444
482
|
}
|
|
445
483
|
|
|
446
484
|
._3BrS0 {
|
|
447
485
|
background: transparent;
|
|
448
|
-
border-color:
|
|
449
|
-
color:
|
|
486
|
+
border-color: var(--color-grey-200);
|
|
487
|
+
color: var(--color-grey-500);
|
|
450
488
|
}
|
|
451
489
|
._3BrS0:hover {
|
|
452
490
|
background: rgba(0, 0, 0, 0.03);
|
|
453
|
-
border-color:
|
|
454
|
-
color:
|
|
491
|
+
border-color: var(--color-grey-300);
|
|
492
|
+
color: var(--color-grey-600);
|
|
455
493
|
}
|
|
456
494
|
._3BrS0:disabled {
|
|
457
495
|
background: transparent;
|
|
458
|
-
border-color:
|
|
459
|
-
color:
|
|
496
|
+
border-color: var(--color-grey-200);
|
|
497
|
+
color: var(--color-grey-300);
|
|
460
498
|
}
|
|
461
499
|
._3BrS0[aria-disabled=true] {
|
|
462
500
|
background: transparent;
|
|
463
|
-
border-color:
|
|
464
|
-
color:
|
|
501
|
+
border-color: var(--color-grey-200);
|
|
502
|
+
color: var(--color-grey-300);
|
|
465
503
|
}
|
|
466
504
|
|
|
467
505
|
._1LCBO {
|
|
468
506
|
background: transparent;
|
|
469
507
|
border-color: transparent;
|
|
470
|
-
color:
|
|
508
|
+
color: var(--color-white);
|
|
471
509
|
}
|
|
472
510
|
._1LCBO:hover {
|
|
473
511
|
background: rgba(255, 255, 255, 0.1);
|
|
474
512
|
border-color: rgba(255, 255, 255, 0.1);
|
|
475
|
-
color:
|
|
513
|
+
color: var(--color-white);
|
|
476
514
|
}
|
|
477
515
|
._1LCBO:disabled {
|
|
478
516
|
background: transparent;
|
|
479
517
|
border-color: transparent;
|
|
480
|
-
color:
|
|
518
|
+
color: var(--color-grey-300);
|
|
481
519
|
}
|
|
482
520
|
._1LCBO[aria-disabled=true] {
|
|
483
521
|
background: transparent;
|
|
484
522
|
border-color: transparent;
|
|
485
|
-
color:
|
|
523
|
+
color: var(--color-grey-300);
|
|
486
524
|
}
|
|
487
525
|
|
|
488
526
|
._23S36 {
|
|
489
527
|
background: transparent;
|
|
490
528
|
border-color: transparent;
|
|
491
|
-
color:
|
|
529
|
+
color: var(--color-blueberry-400);
|
|
492
530
|
}
|
|
493
531
|
._23S36:hover {
|
|
494
532
|
background: rgba(0, 0, 0, 0.03);
|
|
495
|
-
border-color:
|
|
496
|
-
color:
|
|
533
|
+
border-color: var(--color-grey-100);
|
|
534
|
+
color: var(--color-blueberry-500);
|
|
497
535
|
}
|
|
498
536
|
._23S36:disabled {
|
|
499
537
|
background: transparent;
|
|
500
538
|
border-color: transparent;
|
|
501
|
-
color:
|
|
539
|
+
color: var(--color-grey-300);
|
|
502
540
|
}
|
|
503
541
|
._23S36[aria-disabled=true] {
|
|
504
542
|
background: transparent;
|
|
505
543
|
border-color: transparent;
|
|
506
|
-
color:
|
|
544
|
+
color: var(--color-grey-300);
|
|
507
545
|
}
|
|
508
546
|
|
|
509
547
|
._2CzxI {
|
|
510
548
|
background: transparent;
|
|
511
549
|
border-color: transparent;
|
|
512
|
-
color:
|
|
550
|
+
color: var(--color-radish-400);
|
|
513
551
|
}
|
|
514
552
|
._2CzxI:hover {
|
|
515
553
|
background: rgba(0, 0, 0, 0.03);
|
|
516
|
-
border-color:
|
|
517
|
-
color:
|
|
554
|
+
border-color: var(--color-grey-100);
|
|
555
|
+
color: var(--color-radish-500);
|
|
518
556
|
}
|
|
519
557
|
._2CzxI:disabled {
|
|
520
558
|
background: transparent;
|
|
521
559
|
border-color: transparent;
|
|
522
|
-
color:
|
|
560
|
+
color: var(--color-grey-300);
|
|
523
561
|
}
|
|
524
562
|
._2CzxI[aria-disabled=true] {
|
|
525
563
|
background: transparent;
|
|
526
564
|
border-color: transparent;
|
|
527
|
-
color:
|
|
565
|
+
color: var(--color-grey-300);
|
|
528
566
|
}
|
|
529
567
|
|
|
530
568
|
._21e4m {
|
|
531
569
|
background: transparent;
|
|
532
570
|
border-color: transparent;
|
|
533
|
-
color:
|
|
571
|
+
color: var(--color-eggplant-400);
|
|
534
572
|
}
|
|
535
573
|
._21e4m:hover {
|
|
536
574
|
background: rgba(0, 0, 0, 0.03);
|
|
537
|
-
border-color:
|
|
538
|
-
color:
|
|
575
|
+
border-color: var(--color-grey-100);
|
|
576
|
+
color: var(--color-eggplant-500);
|
|
539
577
|
}
|
|
540
578
|
._21e4m:disabled {
|
|
541
579
|
background: transparent;
|
|
542
580
|
border-color: transparent;
|
|
543
|
-
color:
|
|
581
|
+
color: var(--color-grey-300);
|
|
544
582
|
}
|
|
545
583
|
._21e4m[aria-disabled=true] {
|
|
546
584
|
background: transparent;
|
|
547
585
|
border-color: transparent;
|
|
548
|
-
color:
|
|
586
|
+
color: var(--color-grey-300);
|
|
549
587
|
}
|
|
550
588
|
|
|
551
589
|
._2-ESu {
|
|
552
590
|
background: transparent;
|
|
553
591
|
border-color: transparent;
|
|
554
|
-
color:
|
|
592
|
+
color: var(--color-grey-500);
|
|
555
593
|
}
|
|
556
594
|
._2-ESu:hover {
|
|
557
595
|
background: rgba(0, 0, 0, 0.03);
|
|
558
|
-
border-color:
|
|
559
|
-
color:
|
|
596
|
+
border-color: var(--color-grey-100);
|
|
597
|
+
color: var(--color-grey-500);
|
|
560
598
|
}
|
|
561
599
|
._2-ESu:disabled {
|
|
562
600
|
background: transparent;
|
|
563
601
|
border-color: transparent;
|
|
564
|
-
color:
|
|
602
|
+
color: var(--color-grey-300);
|
|
565
603
|
}
|
|
566
604
|
._2-ESu[aria-disabled=true] {
|
|
567
605
|
background: transparent;
|
|
568
606
|
border-color: transparent;
|
|
569
|
-
color:
|
|
607
|
+
color: var(--color-grey-300);
|
|
570
608
|
}
|
|
571
609
|
|
|
572
610
|
._1u3kp {
|
|
573
611
|
background: transparent;
|
|
574
612
|
border-color: transparent;
|
|
575
|
-
color:
|
|
613
|
+
color: var(--color-grey-400);
|
|
576
614
|
}
|
|
577
615
|
._1u3kp:hover {
|
|
578
616
|
background: rgba(0, 0, 0, 0.03);
|
|
579
|
-
border-color:
|
|
580
|
-
color:
|
|
617
|
+
border-color: var(--color-grey-100);
|
|
618
|
+
color: var(--color-grey-400);
|
|
581
619
|
}
|
|
582
620
|
._1u3kp:disabled {
|
|
583
621
|
background: transparent;
|
|
584
622
|
border-color: transparent;
|
|
585
|
-
color:
|
|
623
|
+
color: var(--color-grey-300);
|
|
586
624
|
}
|
|
587
625
|
._1u3kp[aria-disabled=true] {
|
|
588
626
|
background: transparent;
|
|
589
627
|
border-color: transparent;
|
|
590
|
-
color:
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
For new colours, see _colors.scss.
|
|
594
|
-
**********************************/
|
|
595
|
-
/* stylelint-disable color-no-hex */
|
|
596
|
-
/*
|
|
597
|
-
These are the colour variables to be used around the webapp.
|
|
598
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
599
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
600
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
601
|
-
Please ask a designer if you have questions about which colours to use.
|
|
602
|
-
*/
|
|
603
|
-
._3DlpO {
|
|
628
|
+
color: var(--color-grey-300);
|
|
629
|
+
}
|
|
630
|
+
._1UG1r {
|
|
604
631
|
display: flex;
|
|
605
632
|
padding: 16px;
|
|
606
|
-
border: 1px solid
|
|
607
|
-
border-bottom: 1px solid
|
|
633
|
+
border: 1px solid var(--color-white);
|
|
634
|
+
border-bottom: 1px solid var(--color-grey-200);
|
|
608
635
|
}
|
|
609
|
-
.
|
|
610
|
-
border-bottom: 1px solid
|
|
636
|
+
._1UG1r:last-child:not(._WeTZF) {
|
|
637
|
+
border-bottom: 1px solid var(--color-white);
|
|
611
638
|
}
|
|
612
639
|
|
|
613
|
-
.
|
|
640
|
+
._1UG1r:focus:not(:focus-visible) {
|
|
614
641
|
/* Remove the focus indicator on mouse-focus for browsers
|
|
615
642
|
that do support :focus-visible */
|
|
616
643
|
outline: none;
|
|
617
644
|
}
|
|
618
645
|
|
|
619
|
-
.
|
|
646
|
+
._34gnL {
|
|
620
647
|
cursor: pointer;
|
|
621
648
|
}
|
|
622
|
-
.
|
|
623
|
-
background-color:
|
|
649
|
+
._34gnL:hover {
|
|
650
|
+
background-color: var(--color-grey-100);
|
|
624
651
|
}
|
|
625
652
|
|
|
626
|
-
.
|
|
627
|
-
border: 1px solid
|
|
653
|
+
._WeTZF {
|
|
654
|
+
border: 1px solid var(--color-eggplant-400);
|
|
628
655
|
box-sizing: border-box;
|
|
629
|
-
box-shadow: 0 0 8px
|
|
656
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
630
657
|
}
|
|
631
|
-
.
|
|
658
|
+
._WeTZF:first-child {
|
|
632
659
|
border-top-left-radius: 8px;
|
|
633
660
|
border-top-right-radius: 8px;
|
|
634
661
|
}
|
|
635
|
-
.
|
|
662
|
+
._WeTZF:first-child:not(:last-child) {
|
|
636
663
|
border-bottom-left-radius: 0;
|
|
637
664
|
border-bottom-right-radius: 0;
|
|
638
665
|
}
|
|
639
|
-
.
|
|
666
|
+
._WeTZF:last-child {
|
|
640
667
|
border-bottom-left-radius: 8px;
|
|
641
668
|
border-bottom-right-radius: 8px;
|
|
642
669
|
}
|
|
643
|
-
.
|
|
670
|
+
._WeTZF:last-child:not(:first-child) {
|
|
644
671
|
border-top-left-radius: 0;
|
|
645
672
|
border-top-right-radius: 0;
|
|
646
673
|
}
|
|
647
674
|
|
|
648
|
-
.
|
|
675
|
+
._3gRJf {
|
|
649
676
|
display: flex;
|
|
650
677
|
flex-direction: column;
|
|
651
678
|
justify-content: center;
|
|
652
679
|
position: relative;
|
|
653
680
|
}
|
|
654
681
|
|
|
655
|
-
.
|
|
682
|
+
._3ABSf {
|
|
656
683
|
width: 40px;
|
|
657
684
|
}
|
|
658
685
|
/**
|
|
659
686
|
This file probaly will be split when we split the components
|
|
660
687
|
*/
|
|
661
|
-
|
|
662
|
-
For new colours, see _colors.scss.
|
|
663
|
-
**********************************/
|
|
664
|
-
/* stylelint-disable color-no-hex */
|
|
665
|
-
/*
|
|
666
|
-
These are the colour variables to be used around the webapp.
|
|
667
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
668
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
669
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
670
|
-
Please ask a designer if you have questions about which colours to use.
|
|
671
|
-
*/
|
|
672
|
-
._28AYq {
|
|
688
|
+
._kxyuW {
|
|
673
689
|
display: flex;
|
|
674
690
|
font-size: 12px;
|
|
675
691
|
font-weight: 600;
|
|
676
692
|
font-family: "Proxima Nova", sans-serif;
|
|
677
|
-
color:
|
|
693
|
+
color: var(--color-grey-500);
|
|
678
694
|
padding: 19px 17px 8px 17px;
|
|
679
695
|
}
|
|
680
696
|
|
|
681
|
-
.
|
|
697
|
+
._13L7D {
|
|
682
698
|
display: flex;
|
|
683
699
|
align-items: center;
|
|
684
700
|
line-height: 21px;
|
|
685
701
|
}
|
|
686
|
-
.
|
|
702
|
+
._1YCGB {
|
|
687
703
|
cursor: pointer;
|
|
688
704
|
}
|
|
689
705
|
|
|
690
|
-
.
|
|
706
|
+
._13L7D:focus:not(:focus-visible) {
|
|
691
707
|
/* Remove the focus indicator on mouse-focus for browsers
|
|
692
708
|
that do support :focus-visible */
|
|
693
709
|
outline: none;
|
|
694
710
|
}
|
|
695
711
|
|
|
696
|
-
.
|
|
712
|
+
._1gpTf {
|
|
697
713
|
width: 40px;
|
|
698
714
|
}
|
|
699
715
|
|
|
700
|
-
.
|
|
716
|
+
._1tFcX {
|
|
701
717
|
display: inline-block;
|
|
702
718
|
padding: 0 8px;
|
|
703
719
|
line-height: 1em;
|
|
704
720
|
}
|
|
705
721
|
|
|
706
|
-
.
|
|
707
|
-
border: 1px solid
|
|
722
|
+
._ppaWg {
|
|
723
|
+
border: 1px solid var(--color-grey-200);
|
|
708
724
|
border-radius: 8px;
|
|
709
725
|
font-family: "Proxima Nova", sans-serif;
|
|
710
726
|
font-size: 14px;
|
|
711
727
|
}
|
|
712
728
|
|
|
713
|
-
.
|
|
729
|
+
._1nb-e {
|
|
714
730
|
margin-top: 20px;
|
|
715
731
|
font-family: "Proxima Nova", sans-serif;
|
|
716
732
|
}
|
|
717
|
-
/*********************************
|
|
718
|
-
For new colours, see _colors.scss.
|
|
719
|
-
**********************************/
|
|
720
|
-
/* stylelint-disable color-no-hex */
|
|
721
|
-
/*
|
|
722
|
-
These are the colour variables to be used around the webapp.
|
|
723
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
724
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
725
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
726
|
-
Please ask a designer if you have questions about which colours to use.
|
|
727
|
-
*/
|
|
728
733
|
._1IynL button:disabled {
|
|
729
|
-
border-color:
|
|
734
|
+
border-color: var(--color-grey-200);
|
|
730
735
|
}
|
|
731
736
|
._1IynL button:last-child {
|
|
732
737
|
border-radius: 0 4px 4px 0;
|
|
@@ -739,129 +744,86 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
739
744
|
border-radius: 0;
|
|
740
745
|
margin-left: -1px;
|
|
741
746
|
}
|
|
742
|
-
|
|
743
|
-
For new colours, see _colors.scss.
|
|
744
|
-
**********************************/
|
|
745
|
-
/* stylelint-disable color-no-hex */
|
|
746
|
-
/*
|
|
747
|
-
These are the colour variables to be used around the webapp.
|
|
748
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
749
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
750
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
751
|
-
Please ask a designer if you have questions about which colours to use.
|
|
752
|
-
*/
|
|
753
|
-
._1d8Ci {
|
|
747
|
+
._2GGMG {
|
|
754
748
|
display: flex;
|
|
755
749
|
}
|
|
756
|
-
.
|
|
757
|
-
border-bottom: 1px solid
|
|
750
|
+
._2GGMG:not(:last-child):not(._1ZCir) {
|
|
751
|
+
border-bottom: 1px solid var(--color-grey-200);
|
|
758
752
|
}
|
|
759
753
|
|
|
760
|
-
.
|
|
754
|
+
._2GGMG:focus:not(:focus-visible) {
|
|
761
755
|
/* Remove the focus indicator on mouse-focus for browsers
|
|
762
756
|
that do support :focus-visible */
|
|
763
757
|
outline: none;
|
|
764
758
|
}
|
|
765
759
|
|
|
766
|
-
.
|
|
760
|
+
._3VoZI {
|
|
767
761
|
cursor: pointer;
|
|
768
762
|
}
|
|
769
|
-
.
|
|
770
|
-
background-color:
|
|
763
|
+
._3VoZI:hover {
|
|
764
|
+
background-color: var(--color-grey-100);
|
|
771
765
|
}
|
|
772
766
|
|
|
773
|
-
.
|
|
774
|
-
border: 1px solid
|
|
767
|
+
._1ZCir {
|
|
768
|
+
border: 1px solid var(--color-eggplant-400);
|
|
775
769
|
box-sizing: border-box;
|
|
776
|
-
box-shadow: 0 0 8px
|
|
770
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
777
771
|
}
|
|
778
|
-
.
|
|
772
|
+
._1ZCir:first-child {
|
|
779
773
|
border-top-left-radius: 8px;
|
|
780
774
|
border-top-right-radius: 8px;
|
|
781
775
|
}
|
|
782
|
-
.
|
|
776
|
+
._1ZCir:first-child:not(:last-child) {
|
|
783
777
|
border-bottom-left-radius: 0;
|
|
784
778
|
border-bottom-right-radius: 0;
|
|
785
779
|
}
|
|
786
|
-
.
|
|
780
|
+
._1ZCir:last-child {
|
|
787
781
|
border-bottom-left-radius: 8px;
|
|
788
782
|
border-bottom-right-radius: 8px;
|
|
789
783
|
}
|
|
790
|
-
.
|
|
784
|
+
._1ZCir:last-child:not(:first-child) {
|
|
791
785
|
border-top-left-radius: 0;
|
|
792
786
|
border-top-right-radius: 0;
|
|
793
787
|
}
|
|
794
788
|
|
|
795
|
-
.
|
|
789
|
+
._kcNkt {
|
|
796
790
|
display: flex;
|
|
797
791
|
flex-direction: column;
|
|
798
792
|
justify-content: center;
|
|
799
793
|
position: relative;
|
|
800
794
|
}
|
|
801
|
-
.
|
|
795
|
+
._2obax {
|
|
802
796
|
padding: 16px;
|
|
803
797
|
}
|
|
804
|
-
.
|
|
798
|
+
._bLVPl {
|
|
805
799
|
flex-direction: unset;
|
|
806
800
|
justify-content: flex-end;
|
|
807
801
|
}
|
|
808
|
-
.
|
|
809
|
-
border-right: 1px solid
|
|
802
|
+
._3PWfD:not(:last-child) {
|
|
803
|
+
border-right: 1px solid var(--color-grey-200);
|
|
810
804
|
}
|
|
811
805
|
|
|
812
|
-
.
|
|
806
|
+
._1IGwu {
|
|
813
807
|
width: 40px;
|
|
814
808
|
padding: 16px;
|
|
815
809
|
box-sizing: content-box;
|
|
816
810
|
flex-flow: row nowrap;
|
|
817
811
|
justify-content: flex-end;
|
|
818
812
|
}
|
|
819
|
-
/*********************************
|
|
820
|
-
For new colours, see _colors.scss.
|
|
821
|
-
**********************************/
|
|
822
|
-
/* stylelint-disable color-no-hex */
|
|
823
|
-
/*
|
|
824
|
-
These are the colour variables to be used around the webapp.
|
|
825
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
826
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
827
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
828
|
-
Please ask a designer if you have questions about which colours to use.
|
|
829
|
-
*/
|
|
830
|
-
/*********************************
|
|
831
|
-
For new colours, see _colors.scss.
|
|
832
|
-
**********************************/
|
|
833
|
-
/* stylelint-disable color-no-hex */
|
|
834
|
-
/*
|
|
835
|
-
These are the colour variables to be used around the webapp.
|
|
836
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
837
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
838
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
839
|
-
Please ask a designer if you have questions about which colours to use.
|
|
840
|
-
*/
|
|
841
813
|
._1QDLF {
|
|
842
|
-
color:
|
|
814
|
+
color: var(--color-grey-500);
|
|
843
815
|
font-family: "Proxima Nova", sans-serif;
|
|
844
816
|
font-weight: 400;
|
|
845
817
|
font-size: 12px;
|
|
818
|
+
line-height: 16px;
|
|
846
819
|
}
|
|
847
820
|
|
|
848
|
-
/*********************************
|
|
849
|
-
For new colours, see _colors.scss.
|
|
850
|
-
**********************************/
|
|
851
|
-
/* stylelint-disable color-no-hex */
|
|
852
|
-
/*
|
|
853
|
-
These are the colour variables to be used around the webapp.
|
|
854
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
855
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
856
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
857
|
-
Please ask a designer if you have questions about which colours to use.
|
|
858
|
-
*/
|
|
859
821
|
._2wiMV {
|
|
860
822
|
line-height: normal;
|
|
861
823
|
padding: 0;
|
|
862
824
|
width: auto;
|
|
863
825
|
float: none;
|
|
864
|
-
color:
|
|
826
|
+
color: var(--color-grey-500);
|
|
865
827
|
font-family: "Proxima Nova", sans-serif;
|
|
866
828
|
font-weight: 600;
|
|
867
829
|
font-size: 14px;
|
|
@@ -897,7 +859,7 @@ Just for future references:
|
|
|
897
859
|
padding: 0;
|
|
898
860
|
width: auto;
|
|
899
861
|
float: none;
|
|
900
|
-
color:
|
|
862
|
+
color: var(--color-grey-500);
|
|
901
863
|
font-family: "Proxima Nova", sans-serif;
|
|
902
864
|
font-weight: 600;
|
|
903
865
|
font-size: 14px;
|
|
@@ -906,10 +868,11 @@ Just for future references:
|
|
|
906
868
|
}
|
|
907
869
|
|
|
908
870
|
._1jEiW {
|
|
909
|
-
color:
|
|
871
|
+
color: var(--color-grey-500);
|
|
910
872
|
font-family: "Proxima Nova", sans-serif;
|
|
911
873
|
font-weight: 400;
|
|
912
874
|
font-size: 12px;
|
|
875
|
+
line-height: 16px;
|
|
913
876
|
margin-left: 48px;
|
|
914
877
|
display: block;
|
|
915
878
|
}
|
|
@@ -929,7 +892,7 @@ Just for future references:
|
|
|
929
892
|
._3tNyE::before {
|
|
930
893
|
content: "";
|
|
931
894
|
display: block;
|
|
932
|
-
background:
|
|
895
|
+
background: var(--color-grey-200);
|
|
933
896
|
transition: all ease-in-out 150ms;
|
|
934
897
|
box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.03);
|
|
935
898
|
border-radius: 26px;
|
|
@@ -944,8 +907,8 @@ Just for future references:
|
|
|
944
907
|
left: 2px;
|
|
945
908
|
right: 21px;
|
|
946
909
|
top: 2px;
|
|
947
|
-
background:
|
|
948
|
-
border: 1px solid
|
|
910
|
+
background: var(--color-white);
|
|
911
|
+
border: 1px solid var(--color-grey-200);
|
|
949
912
|
border-radius: 24px;
|
|
950
913
|
height: 14px;
|
|
951
914
|
width: 14px;
|
|
@@ -955,7 +918,7 @@ Just for future references:
|
|
|
955
918
|
|
|
956
919
|
/* special states */
|
|
957
920
|
._1ui8X [type=checkbox]:focus-visible + ._3tNyE {
|
|
958
|
-
outline:
|
|
921
|
+
outline: var(--color-eggplant-400) solid 1px;
|
|
959
922
|
}
|
|
960
923
|
|
|
961
924
|
._1ui8X [type=checkbox]:disabled + ._3tNyE {
|
|
@@ -969,113 +932,80 @@ Just for future references:
|
|
|
969
932
|
|
|
970
933
|
/* checked states */
|
|
971
934
|
._1ui8X [type=checkbox]:checked + ._3tNyE::before {
|
|
972
|
-
background:
|
|
935
|
+
background: var(--color-mint-400);
|
|
973
936
|
}
|
|
974
937
|
|
|
975
938
|
._1ui8X [type=checkbox]:checked + ._3tNyE::after {
|
|
976
|
-
border-color:
|
|
939
|
+
border-color: var(--color-mint-400);
|
|
977
940
|
left: 21px;
|
|
978
941
|
right: 2px;
|
|
979
942
|
}
|
|
980
|
-
|
|
981
|
-
For new colours, see _colors.scss.
|
|
982
|
-
**********************************/
|
|
983
|
-
/* stylelint-disable color-no-hex */
|
|
984
|
-
/*
|
|
985
|
-
These are the colour variables to be used around the webapp.
|
|
986
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
987
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
988
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
989
|
-
Please ask a designer if you have questions about which colours to use.
|
|
990
|
-
*/
|
|
991
|
-
._of22N {
|
|
943
|
+
._2ZgmC {
|
|
992
944
|
display: flex;
|
|
993
945
|
font-size: 12px;
|
|
994
946
|
font-weight: 600;
|
|
995
947
|
font-family: "Proxima Nova", sans-serif;
|
|
996
|
-
color:
|
|
948
|
+
color: var(--color-grey-500);
|
|
997
949
|
padding: 20px 17px 8px 17px;
|
|
998
950
|
}
|
|
999
951
|
|
|
1000
|
-
.
|
|
952
|
+
._3slLU {
|
|
1001
953
|
display: flex;
|
|
1002
954
|
align-items: center;
|
|
1003
955
|
line-height: 21px;
|
|
1004
956
|
}
|
|
1005
|
-
.
|
|
957
|
+
._3slLU:not(._3slLU:first-child) {
|
|
1006
958
|
padding-left: 16px;
|
|
1007
959
|
}
|
|
1008
|
-
.
|
|
960
|
+
._3slLU:not(._3slLU:last-child) {
|
|
1009
961
|
padding-right: 16px;
|
|
1010
962
|
}
|
|
1011
|
-
.
|
|
963
|
+
._1-26z {
|
|
1012
964
|
cursor: pointer;
|
|
1013
965
|
}
|
|
1014
|
-
.
|
|
966
|
+
._1vCLo {
|
|
1015
967
|
justify-content: flex-end;
|
|
1016
968
|
}
|
|
1017
969
|
|
|
1018
|
-
.
|
|
970
|
+
._3slLU:focus:not(:focus-visible) {
|
|
1019
971
|
/* Remove the focus indicator on mouse-focus for browsers
|
|
1020
972
|
that do support :focus-visible */
|
|
1021
973
|
outline: none;
|
|
1022
974
|
}
|
|
1023
975
|
|
|
1024
|
-
.
|
|
976
|
+
._2i1wY {
|
|
1025
977
|
width: 40px;
|
|
1026
978
|
box-sizing: content-box;
|
|
1027
979
|
}
|
|
1028
980
|
|
|
1029
|
-
.
|
|
981
|
+
._BLrNe {
|
|
1030
982
|
display: inline-block;
|
|
1031
983
|
padding: 0 8px;
|
|
1032
984
|
line-height: 1em;
|
|
1033
985
|
}
|
|
1034
986
|
|
|
1035
|
-
.
|
|
1036
|
-
border: 1px solid
|
|
987
|
+
._CT4Lp {
|
|
988
|
+
border: 1px solid var(--color-grey-200);
|
|
1037
989
|
border-radius: 8px;
|
|
1038
990
|
font-family: "Proxima Nova", sans-serif;
|
|
1039
991
|
font-size: 14px;
|
|
1040
992
|
}
|
|
1041
993
|
|
|
1042
|
-
.
|
|
1043
|
-
background:
|
|
994
|
+
._398L3 {
|
|
995
|
+
background: var(--color-grey-100);
|
|
1044
996
|
font-weight: 600;
|
|
1045
997
|
}
|
|
1046
998
|
|
|
1047
|
-
.
|
|
999
|
+
._2smmY {
|
|
1048
1000
|
margin-top: 20px;
|
|
1049
1001
|
font-family: "Proxima Nova", sans-serif;
|
|
1050
1002
|
}
|
|
1051
|
-
|
|
1052
|
-
For new colours, see _colors.scss.
|
|
1053
|
-
**********************************/
|
|
1054
|
-
/* stylelint-disable color-no-hex */
|
|
1055
|
-
/*
|
|
1056
|
-
These are the colour variables to be used around the webapp.
|
|
1057
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1058
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1059
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1060
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1061
|
-
*/
|
|
1062
|
-
._orjDM {
|
|
1003
|
+
._2Ybjx {
|
|
1063
1004
|
padding: 16px;
|
|
1064
1005
|
}
|
|
1065
|
-
.
|
|
1006
|
+
._1cXj6 {
|
|
1066
1007
|
text-align: right;
|
|
1067
1008
|
}
|
|
1068
|
-
/*********************************
|
|
1069
|
-
For new colours, see _colors.scss.
|
|
1070
|
-
**********************************/
|
|
1071
|
-
/* stylelint-disable color-no-hex */
|
|
1072
|
-
/*
|
|
1073
|
-
These are the colour variables to be used around the webapp.
|
|
1074
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1075
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1076
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1077
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1078
|
-
*/
|
|
1079
1009
|
._2puqJ {
|
|
1080
1010
|
position: fixed;
|
|
1081
1011
|
top: 0px;
|
|
@@ -1112,8 +1042,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1112
1042
|
|
|
1113
1043
|
._wQQ_2 {
|
|
1114
1044
|
position: initial;
|
|
1115
|
-
border: 1px solid
|
|
1116
|
-
background:
|
|
1045
|
+
border: 1px solid var(--color-grey-200);
|
|
1046
|
+
background: var(--color-white);
|
|
1117
1047
|
overflow: auto;
|
|
1118
1048
|
outline: none;
|
|
1119
1049
|
padding: 32px;
|
|
@@ -1133,21 +1063,10 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1133
1063
|
._2c2QP {
|
|
1134
1064
|
opacity: 0;
|
|
1135
1065
|
}
|
|
1136
|
-
/*********************************
|
|
1137
|
-
For new colours, see _colors.scss.
|
|
1138
|
-
**********************************/
|
|
1139
|
-
/* stylelint-disable color-no-hex */
|
|
1140
|
-
/*
|
|
1141
|
-
These are the colour variables to be used around the webapp.
|
|
1142
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1143
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1144
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1145
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1146
|
-
*/
|
|
1147
1066
|
._36nxW {
|
|
1148
1067
|
font-size: 24px;
|
|
1149
1068
|
line-height: 28px;
|
|
1150
|
-
color:
|
|
1069
|
+
color: var(--color-grey-500);
|
|
1151
1070
|
font-weight: 600;
|
|
1152
1071
|
font-family: "Proxima Nova", sans-serif;
|
|
1153
1072
|
}
|
|
@@ -1155,20 +1074,9 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1155
1074
|
._2XwRD {
|
|
1156
1075
|
font-size: 20px;
|
|
1157
1076
|
line-height: 24px;
|
|
1158
|
-
color:
|
|
1077
|
+
color: var(--color-grey-400);
|
|
1159
1078
|
font-family: "Proxima Nova", sans-serif;
|
|
1160
1079
|
}
|
|
1161
|
-
/*********************************
|
|
1162
|
-
For new colours, see _colors.scss.
|
|
1163
|
-
**********************************/
|
|
1164
|
-
/* stylelint-disable color-no-hex */
|
|
1165
|
-
/*
|
|
1166
|
-
These are the colour variables to be used around the webapp.
|
|
1167
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1168
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1169
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1170
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1171
|
-
*/
|
|
1172
1080
|
/**
|
|
1173
1081
|
* This is for adding a shadow when the body is scrollable.
|
|
1174
1082
|
* It is using ::before and ::after to accomplish that => https://www.kizu.ru/shadowscroll/
|
|
@@ -1203,17 +1111,6 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1203
1111
|
margin: -30px 0 0;
|
|
1204
1112
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
|
|
1205
1113
|
}
|
|
1206
|
-
/*********************************
|
|
1207
|
-
For new colours, see _colors.scss.
|
|
1208
|
-
**********************************/
|
|
1209
|
-
/* stylelint-disable color-no-hex */
|
|
1210
|
-
/*
|
|
1211
|
-
These are the colour variables to be used around the webapp.
|
|
1212
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1213
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1214
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1215
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1216
|
-
*/
|
|
1217
1114
|
._LKOr5 {
|
|
1218
1115
|
flex: 1;
|
|
1219
1116
|
display: flex;
|
|
@@ -1225,17 +1122,6 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1225
1122
|
._Qktd- {
|
|
1226
1123
|
margin-left: -12px;
|
|
1227
1124
|
}
|
|
1228
|
-
/*********************************
|
|
1229
|
-
For new colours, see _colors.scss.
|
|
1230
|
-
**********************************/
|
|
1231
|
-
/* stylelint-disable color-no-hex */
|
|
1232
|
-
/*
|
|
1233
|
-
These are the colour variables to be used around the webapp.
|
|
1234
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1235
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1236
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1237
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1238
|
-
*/
|
|
1239
1125
|
._v1b-5 {
|
|
1240
1126
|
flex: 1;
|
|
1241
1127
|
display: flex;
|
|
@@ -1273,21 +1159,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1273
1159
|
left: auto;
|
|
1274
1160
|
display: inline-block;
|
|
1275
1161
|
margin-top: 2px;
|
|
1276
|
-
color:
|
|
1162
|
+
color: var(--color-grey-300);
|
|
1277
1163
|
cursor: pointer;
|
|
1278
1164
|
background-image: none;
|
|
1279
1165
|
width: 0;
|
|
1280
1166
|
height: 0;
|
|
1281
1167
|
border-top: 7px solid transparent;
|
|
1282
1168
|
border-bottom: 7px solid transparent;
|
|
1283
|
-
border-right: 10px solid
|
|
1169
|
+
border-right: 10px solid var(--color-grey-500);
|
|
1284
1170
|
margin-right: 1.5em;
|
|
1285
1171
|
}
|
|
1286
1172
|
._20uqc:hover {
|
|
1287
1173
|
opacity: 0.8;
|
|
1288
1174
|
}
|
|
1289
1175
|
._20uqc:hover {
|
|
1290
|
-
border-right-color:
|
|
1176
|
+
border-right-color: var(--color-grey-400);
|
|
1291
1177
|
}
|
|
1292
1178
|
|
|
1293
1179
|
._3C53z {
|
|
@@ -1297,21 +1183,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1297
1183
|
left: auto;
|
|
1298
1184
|
display: inline-block;
|
|
1299
1185
|
margin-top: 2px;
|
|
1300
|
-
color:
|
|
1186
|
+
color: var(--color-grey-300);
|
|
1301
1187
|
cursor: pointer;
|
|
1302
1188
|
background-image: none;
|
|
1303
1189
|
width: 0;
|
|
1304
1190
|
height: 0;
|
|
1305
1191
|
border-top: 7px solid transparent;
|
|
1306
1192
|
border-bottom: 7px solid transparent;
|
|
1307
|
-
border-left: 10px solid
|
|
1193
|
+
border-left: 10px solid var(--color-grey-500);
|
|
1308
1194
|
}
|
|
1309
1195
|
._3C53z:hover {
|
|
1310
1196
|
opacity: 0.8;
|
|
1311
1197
|
}
|
|
1312
1198
|
._3C53z:hover {
|
|
1313
1199
|
opacity: 0.8;
|
|
1314
|
-
border-left-color:
|
|
1200
|
+
border-left-color: var(--color-grey-400);
|
|
1315
1201
|
}
|
|
1316
1202
|
|
|
1317
1203
|
._M_eHz {
|
|
@@ -1342,7 +1228,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1342
1228
|
._1FXNw > div {
|
|
1343
1229
|
font-weight: 600;
|
|
1344
1230
|
font-size: 20px;
|
|
1345
|
-
color:
|
|
1231
|
+
color: var(--color-grey-500);
|
|
1346
1232
|
}
|
|
1347
1233
|
|
|
1348
1234
|
._3KcRU {
|
|
@@ -1357,7 +1243,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1357
1243
|
._c1Y-X {
|
|
1358
1244
|
display: table-cell;
|
|
1359
1245
|
padding: 0.5em;
|
|
1360
|
-
color:
|
|
1246
|
+
color: var(--color-grey-400);
|
|
1361
1247
|
text-align: center;
|
|
1362
1248
|
font-size: 0.875em;
|
|
1363
1249
|
}
|
|
@@ -1384,7 +1270,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1384
1270
|
cursor: pointer;
|
|
1385
1271
|
}
|
|
1386
1272
|
._1AWH2:not(._1J9dh):not(._3vJkw):not(._1DR0N):not(._276GV):hover {
|
|
1387
|
-
background:
|
|
1273
|
+
background: var(--color-grey-100);
|
|
1388
1274
|
}
|
|
1389
1275
|
|
|
1390
1276
|
._2M5xr {
|
|
@@ -1392,31 +1278,31 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1392
1278
|
}
|
|
1393
1279
|
|
|
1394
1280
|
._3N6fj {
|
|
1395
|
-
color:
|
|
1281
|
+
color: var(--color-tangerine-400);
|
|
1396
1282
|
font-weight: 700;
|
|
1397
1283
|
}
|
|
1398
1284
|
|
|
1399
1285
|
._1DR0N:not(._3vJkw):not(._276GV) {
|
|
1400
|
-
background-color:
|
|
1401
|
-
color:
|
|
1286
|
+
background-color: var(--color-tangerine-200);
|
|
1287
|
+
color: var(--color-tangerine-400);
|
|
1402
1288
|
}
|
|
1403
1289
|
|
|
1404
1290
|
._1DR0N:not(._3vJkw):not(._276GV):hover {
|
|
1405
|
-
background-color:
|
|
1406
|
-
color:
|
|
1291
|
+
background-color: var(--color-tangerine-400);
|
|
1292
|
+
color: var(--color-white);
|
|
1407
1293
|
}
|
|
1408
1294
|
|
|
1409
1295
|
._1DR0N._3N6fj:hover {
|
|
1410
|
-
color:
|
|
1296
|
+
color: var(--color-white);
|
|
1411
1297
|
}
|
|
1412
1298
|
|
|
1413
1299
|
._3vJkw {
|
|
1414
|
-
color:
|
|
1300
|
+
color: var(--color-grey-200);
|
|
1415
1301
|
cursor: default;
|
|
1416
1302
|
}
|
|
1417
1303
|
|
|
1418
1304
|
._276GV:not(._3vJkw) {
|
|
1419
|
-
color:
|
|
1305
|
+
color: var(--color-grey-300);
|
|
1420
1306
|
cursor: default;
|
|
1421
1307
|
}
|
|
1422
1308
|
|
|
@@ -1428,7 +1314,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1428
1314
|
position: absolute;
|
|
1429
1315
|
left: 0;
|
|
1430
1316
|
z-index: 1;
|
|
1431
|
-
background:
|
|
1317
|
+
background: var(--color-white);
|
|
1432
1318
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
1433
1319
|
}
|
|
1434
1320
|
|
|
@@ -1436,24 +1322,13 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1436
1322
|
display: table-cell;
|
|
1437
1323
|
padding: 0.5em;
|
|
1438
1324
|
min-width: 1em;
|
|
1439
|
-
border-right: 1px solid
|
|
1440
|
-
color:
|
|
1325
|
+
border-right: 1px solid var(--color-grey-200);
|
|
1326
|
+
color: var(--color-grey-300);
|
|
1441
1327
|
vertical-align: middle;
|
|
1442
1328
|
text-align: right;
|
|
1443
1329
|
font-size: 0.75em;
|
|
1444
1330
|
cursor: pointer;
|
|
1445
1331
|
}
|
|
1446
|
-
/*********************************
|
|
1447
|
-
For new colours, see _colors.scss.
|
|
1448
|
-
**********************************/
|
|
1449
|
-
/* stylelint-disable color-no-hex */
|
|
1450
|
-
/*
|
|
1451
|
-
These are the colour variables to be used around the webapp.
|
|
1452
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1453
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1454
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1455
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1456
|
-
*/
|
|
1457
1332
|
._okDvi {
|
|
1458
1333
|
flex: 1;
|
|
1459
1334
|
display: flex;
|
|
@@ -1491,21 +1366,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1491
1366
|
left: auto;
|
|
1492
1367
|
display: inline-block;
|
|
1493
1368
|
margin-top: 2px;
|
|
1494
|
-
color:
|
|
1369
|
+
color: var(--color-grey-300);
|
|
1495
1370
|
cursor: pointer;
|
|
1496
1371
|
background-image: none;
|
|
1497
1372
|
width: 0;
|
|
1498
1373
|
height: 0;
|
|
1499
1374
|
border-top: 7px solid transparent;
|
|
1500
1375
|
border-bottom: 7px solid transparent;
|
|
1501
|
-
border-right: 10px solid
|
|
1376
|
+
border-right: 10px solid var(--color-grey-500);
|
|
1502
1377
|
margin-right: 1.5em;
|
|
1503
1378
|
}
|
|
1504
1379
|
._3gjq8:hover {
|
|
1505
1380
|
opacity: 0.8;
|
|
1506
1381
|
}
|
|
1507
1382
|
._3gjq8:hover {
|
|
1508
|
-
border-right-color:
|
|
1383
|
+
border-right-color: var(--color-grey-400);
|
|
1509
1384
|
}
|
|
1510
1385
|
|
|
1511
1386
|
._1m-Kd {
|
|
@@ -1515,21 +1390,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1515
1390
|
left: auto;
|
|
1516
1391
|
display: inline-block;
|
|
1517
1392
|
margin-top: 2px;
|
|
1518
|
-
color:
|
|
1393
|
+
color: var(--color-grey-300);
|
|
1519
1394
|
cursor: pointer;
|
|
1520
1395
|
background-image: none;
|
|
1521
1396
|
width: 0;
|
|
1522
1397
|
height: 0;
|
|
1523
1398
|
border-top: 7px solid transparent;
|
|
1524
1399
|
border-bottom: 7px solid transparent;
|
|
1525
|
-
border-left: 10px solid
|
|
1400
|
+
border-left: 10px solid var(--color-grey-500);
|
|
1526
1401
|
}
|
|
1527
1402
|
._1m-Kd:hover {
|
|
1528
1403
|
opacity: 0.8;
|
|
1529
1404
|
}
|
|
1530
1405
|
._1m-Kd:hover {
|
|
1531
1406
|
opacity: 0.8;
|
|
1532
|
-
border-left-color:
|
|
1407
|
+
border-left-color: var(--color-grey-400);
|
|
1533
1408
|
}
|
|
1534
1409
|
|
|
1535
1410
|
._Fq6Xh {
|
|
@@ -1560,7 +1435,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1560
1435
|
._36X9Y > div {
|
|
1561
1436
|
font-weight: 600;
|
|
1562
1437
|
font-size: 20px;
|
|
1563
|
-
color:
|
|
1438
|
+
color: var(--color-grey-500);
|
|
1564
1439
|
}
|
|
1565
1440
|
|
|
1566
1441
|
._1aWPn {
|
|
@@ -1575,7 +1450,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1575
1450
|
._t-ctd {
|
|
1576
1451
|
display: table-cell;
|
|
1577
1452
|
padding: 0.5em;
|
|
1578
|
-
color:
|
|
1453
|
+
color: var(--color-grey-400);
|
|
1579
1454
|
text-align: center;
|
|
1580
1455
|
font-size: 0.875em;
|
|
1581
1456
|
}
|
|
@@ -1602,7 +1477,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1602
1477
|
cursor: pointer;
|
|
1603
1478
|
}
|
|
1604
1479
|
._3nNcG:not(._1O7OT):not(._1M4ZF):not(._2PEs8):not(._1PIJa):hover {
|
|
1605
|
-
background:
|
|
1480
|
+
background: var(--color-grey-100);
|
|
1606
1481
|
}
|
|
1607
1482
|
|
|
1608
1483
|
._2T_z1 {
|
|
@@ -1610,31 +1485,31 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1610
1485
|
}
|
|
1611
1486
|
|
|
1612
1487
|
._1hVM6 {
|
|
1613
|
-
color:
|
|
1488
|
+
color: var(--color-tangerine-400);
|
|
1614
1489
|
font-weight: 700;
|
|
1615
1490
|
}
|
|
1616
1491
|
|
|
1617
1492
|
._2PEs8:not(._1M4ZF):not(._1PIJa) {
|
|
1618
|
-
background-color:
|
|
1619
|
-
color:
|
|
1493
|
+
background-color: var(--color-tangerine-200);
|
|
1494
|
+
color: var(--color-tangerine-400);
|
|
1620
1495
|
}
|
|
1621
1496
|
|
|
1622
1497
|
._2PEs8:not(._1M4ZF):not(._1PIJa):hover {
|
|
1623
|
-
background-color:
|
|
1624
|
-
color:
|
|
1498
|
+
background-color: var(--color-tangerine-400);
|
|
1499
|
+
color: var(--color-white);
|
|
1625
1500
|
}
|
|
1626
1501
|
|
|
1627
1502
|
._2PEs8._1hVM6:hover {
|
|
1628
|
-
color:
|
|
1503
|
+
color: var(--color-white);
|
|
1629
1504
|
}
|
|
1630
1505
|
|
|
1631
1506
|
._1M4ZF {
|
|
1632
|
-
color:
|
|
1507
|
+
color: var(--color-grey-200);
|
|
1633
1508
|
cursor: default;
|
|
1634
1509
|
}
|
|
1635
1510
|
|
|
1636
1511
|
._1PIJa:not(._1M4ZF) {
|
|
1637
|
-
color:
|
|
1512
|
+
color: var(--color-grey-300);
|
|
1638
1513
|
cursor: default;
|
|
1639
1514
|
}
|
|
1640
1515
|
|
|
@@ -1646,7 +1521,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1646
1521
|
position: absolute;
|
|
1647
1522
|
left: 0;
|
|
1648
1523
|
z-index: 1;
|
|
1649
|
-
background:
|
|
1524
|
+
background: var(--color-white);
|
|
1650
1525
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
1651
1526
|
}
|
|
1652
1527
|
|
|
@@ -1654,8 +1529,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1654
1529
|
display: table-cell;
|
|
1655
1530
|
padding: 0.5em;
|
|
1656
1531
|
min-width: 1em;
|
|
1657
|
-
border-right: 1px solid
|
|
1658
|
-
color:
|
|
1532
|
+
border-right: 1px solid var(--color-grey-200);
|
|
1533
|
+
color: var(--color-grey-300);
|
|
1659
1534
|
vertical-align: middle;
|
|
1660
1535
|
text-align: right;
|
|
1661
1536
|
font-size: 0.75em;
|
|
@@ -1677,8 +1552,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1677
1552
|
}
|
|
1678
1553
|
|
|
1679
1554
|
._2PEs8:not(._1M4ZF) {
|
|
1680
|
-
background-color:
|
|
1681
|
-
color:
|
|
1555
|
+
background-color: var(--color-tangerine-200);
|
|
1556
|
+
color: var(--color-tangerine-400);
|
|
1682
1557
|
}
|
|
1683
1558
|
._2PEs8:first-of-type {
|
|
1684
1559
|
border-top-left-radius: 50%;
|
|
@@ -1690,11 +1565,11 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1690
1565
|
}
|
|
1691
1566
|
|
|
1692
1567
|
._3Nwep:hover {
|
|
1693
|
-
background:
|
|
1568
|
+
background: var(--color-grey-100);
|
|
1694
1569
|
}
|
|
1695
1570
|
._3Nwep:hover ._2PEs8:not(._1M4ZF) {
|
|
1696
|
-
background-color:
|
|
1697
|
-
color:
|
|
1571
|
+
background-color: var(--color-tangerine-400);
|
|
1572
|
+
color: var(--color-white);
|
|
1698
1573
|
}
|
|
1699
1574
|
._3Nwep:hover ._3nNcG:first-of-type {
|
|
1700
1575
|
border-top-left-radius: 50%;
|
|
@@ -1704,23 +1579,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1704
1579
|
border-top-right-radius: 50%;
|
|
1705
1580
|
border-bottom-right-radius: 50%;
|
|
1706
1581
|
}
|
|
1707
|
-
/*********************************
|
|
1708
|
-
For new colours, see _colors.scss.
|
|
1709
|
-
**********************************/
|
|
1710
|
-
/* stylelint-disable color-no-hex */
|
|
1711
|
-
/*
|
|
1712
|
-
These are the colour variables to be used around the webapp.
|
|
1713
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1714
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1715
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1716
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1717
|
-
*/
|
|
1718
1582
|
._h724f {
|
|
1719
1583
|
line-height: normal;
|
|
1720
1584
|
padding: 0;
|
|
1721
1585
|
width: auto;
|
|
1722
1586
|
float: none;
|
|
1723
|
-
color:
|
|
1587
|
+
color: var(--color-grey-500);
|
|
1724
1588
|
font-family: "Proxima Nova", sans-serif;
|
|
1725
1589
|
font-weight: 600;
|
|
1726
1590
|
font-size: 14px;
|
|
@@ -1732,51 +1596,19 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1732
1596
|
white-space: nowrap;
|
|
1733
1597
|
text-overflow: ellipsis;
|
|
1734
1598
|
}
|
|
1735
|
-
/*********************************
|
|
1736
|
-
For new colours, see _colors.scss.
|
|
1737
|
-
**********************************/
|
|
1738
|
-
/* stylelint-disable color-no-hex */
|
|
1739
|
-
/*
|
|
1740
|
-
These are the colour variables to be used around the webapp.
|
|
1741
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1742
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1743
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1744
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1745
|
-
*/
|
|
1746
1599
|
._1DWBq {
|
|
1747
|
-
color:
|
|
1600
|
+
color: var(--color-grey-500);
|
|
1748
1601
|
font-family: "Proxima Nova", sans-serif;
|
|
1749
1602
|
font-weight: 400;
|
|
1750
1603
|
font-size: 12px;
|
|
1604
|
+
line-height: 16px;
|
|
1751
1605
|
}
|
|
1752
|
-
/*********************************
|
|
1753
|
-
For new colours, see _colors.scss.
|
|
1754
|
-
**********************************/
|
|
1755
|
-
/* stylelint-disable color-no-hex */
|
|
1756
|
-
/*
|
|
1757
|
-
These are the colour variables to be used around the webapp.
|
|
1758
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1759
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1760
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1761
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1762
|
-
*/
|
|
1763
1606
|
._nZ2MD {
|
|
1764
|
-
color:
|
|
1607
|
+
color: var(--color-radish-400);
|
|
1765
1608
|
font-family: "Proxima Nova", sans-serif;
|
|
1766
1609
|
font-weight: 400;
|
|
1767
1610
|
font-size: 12px;
|
|
1768
1611
|
}
|
|
1769
|
-
/*********************************
|
|
1770
|
-
For new colours, see _colors.scss.
|
|
1771
|
-
**********************************/
|
|
1772
|
-
/* stylelint-disable color-no-hex */
|
|
1773
|
-
/*
|
|
1774
|
-
These are the colour variables to be used around the webapp.
|
|
1775
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1776
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1777
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1778
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1779
|
-
*/
|
|
1780
1612
|
._ybKOk {
|
|
1781
1613
|
position: relative;
|
|
1782
1614
|
display: flex;
|
|
@@ -1795,7 +1627,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1795
1627
|
position: absolute;
|
|
1796
1628
|
line-height: 22px;
|
|
1797
1629
|
padding: 8px;
|
|
1798
|
-
color:
|
|
1630
|
+
color: var(--color-grey-500);
|
|
1799
1631
|
min-width: 8px;
|
|
1800
1632
|
pointer-events: none;
|
|
1801
1633
|
font-size: 14px;
|
|
@@ -1811,14 +1643,14 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1811
1643
|
text-align: left;
|
|
1812
1644
|
}
|
|
1813
1645
|
._eX5OL svg {
|
|
1814
|
-
color:
|
|
1646
|
+
color: var(--color-grey-400);
|
|
1815
1647
|
}
|
|
1816
1648
|
|
|
1817
1649
|
.__YH01 {
|
|
1818
1650
|
position: absolute;
|
|
1819
1651
|
line-height: 22px;
|
|
1820
1652
|
padding: 8px;
|
|
1821
|
-
color:
|
|
1653
|
+
color: var(--color-grey-500);
|
|
1822
1654
|
min-width: 8px;
|
|
1823
1655
|
pointer-events: none;
|
|
1824
1656
|
font-size: 14px;
|
|
@@ -1835,23 +1667,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1835
1667
|
text-align: right;
|
|
1836
1668
|
}
|
|
1837
1669
|
.__YH01 svg {
|
|
1838
|
-
color:
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
For new colours, see _colors.scss.
|
|
1842
|
-
**********************************/
|
|
1843
|
-
/* stylelint-disable color-no-hex */
|
|
1844
|
-
/*
|
|
1845
|
-
These are the colour variables to be used around the webapp.
|
|
1846
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1847
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1848
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1849
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1850
|
-
*/
|
|
1851
|
-
._kIngZ {
|
|
1670
|
+
color: var(--color-grey-400);
|
|
1671
|
+
}
|
|
1672
|
+
._qYNve {
|
|
1852
1673
|
width: 100%;
|
|
1853
1674
|
}
|
|
1854
|
-
.
|
|
1675
|
+
._qYNve input {
|
|
1855
1676
|
border: 1px solid transparent;
|
|
1856
1677
|
display: flex;
|
|
1857
1678
|
justify-content: flex-end;
|
|
@@ -1862,46 +1683,46 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1862
1683
|
font-family: "Proxima Nova", sans-serif;
|
|
1863
1684
|
border-radius: 0;
|
|
1864
1685
|
}
|
|
1865
|
-
.
|
|
1866
|
-
border-color:
|
|
1867
|
-
box-shadow: 0 0 8px
|
|
1686
|
+
._qYNve input:focus {
|
|
1687
|
+
border-color: var(--color-eggplant-400);
|
|
1688
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
1868
1689
|
outline: none;
|
|
1869
1690
|
}
|
|
1870
|
-
.
|
|
1871
|
-
background:
|
|
1691
|
+
._qYNve input:hover {
|
|
1692
|
+
background: var(--color-grey-100);
|
|
1872
1693
|
}
|
|
1873
|
-
.
|
|
1694
|
+
._3w6bw {
|
|
1874
1695
|
text-align: right;
|
|
1875
1696
|
}
|
|
1876
|
-
.
|
|
1697
|
+
._2y-_5 {
|
|
1877
1698
|
/* Firefox */
|
|
1878
1699
|
}
|
|
1879
|
-
.
|
|
1880
|
-
.
|
|
1700
|
+
._2y-_5 input::-webkit-outer-spin-button,
|
|
1701
|
+
._2y-_5 input::-webkit-inner-spin-button {
|
|
1881
1702
|
-webkit-appearance: none;
|
|
1882
1703
|
margin: 0;
|
|
1883
1704
|
}
|
|
1884
|
-
.
|
|
1705
|
+
._2y-_5 input[type=number] {
|
|
1885
1706
|
-moz-appearance: textfield;
|
|
1886
1707
|
}
|
|
1887
1708
|
|
|
1888
|
-
.
|
|
1889
|
-
border-color:
|
|
1709
|
+
._1Mx8j._1Mx8j {
|
|
1710
|
+
border-color: var(--color-radish-400);
|
|
1890
1711
|
}
|
|
1891
1712
|
|
|
1892
|
-
.
|
|
1713
|
+
._2BlhN._2BlhN {
|
|
1893
1714
|
border-top-left-radius: 8px;
|
|
1894
1715
|
}
|
|
1895
1716
|
|
|
1896
|
-
.
|
|
1717
|
+
._1qDoN._1qDoN {
|
|
1897
1718
|
border-top-right-radius: 8px;
|
|
1898
1719
|
}
|
|
1899
1720
|
|
|
1900
|
-
.
|
|
1721
|
+
._2NUlb._2NUlb {
|
|
1901
1722
|
border-bottom-left-radius: 8px;
|
|
1902
1723
|
}
|
|
1903
1724
|
|
|
1904
|
-
.
|
|
1725
|
+
._3Mm-v._3Mm-v {
|
|
1905
1726
|
border-bottom-right-radius: 8px;
|
|
1906
1727
|
}
|
|
1907
1728
|
._3CaV0 {
|
|
@@ -1910,22 +1731,11 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1910
1731
|
._2i-Ll > div {
|
|
1911
1732
|
min-width: 0;
|
|
1912
1733
|
}
|
|
1913
|
-
/*********************************
|
|
1914
|
-
For new colours, see _colors.scss.
|
|
1915
|
-
**********************************/
|
|
1916
|
-
/* stylelint-disable color-no-hex */
|
|
1917
|
-
/*
|
|
1918
|
-
These are the colour variables to be used around the webapp.
|
|
1919
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1920
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1921
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1922
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1923
|
-
*/
|
|
1924
1734
|
._BkzdC {
|
|
1925
1735
|
border-radius: 4px;
|
|
1926
1736
|
padding: 7px;
|
|
1927
1737
|
box-shadow: none;
|
|
1928
|
-
border: 1px solid
|
|
1738
|
+
border: 1px solid var(--color-grey-200);
|
|
1929
1739
|
flex: 1;
|
|
1930
1740
|
display: flex;
|
|
1931
1741
|
flex-direction: column;
|
|
@@ -1935,7 +1745,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1935
1745
|
line-height: 22px;
|
|
1936
1746
|
font-size: 14px;
|
|
1937
1747
|
font-family: "Proxima Nova", sans-serif;
|
|
1938
|
-
color:
|
|
1748
|
+
color: var(--color-grey-500);
|
|
1939
1749
|
margin: 0;
|
|
1940
1750
|
border: none;
|
|
1941
1751
|
resize: none;
|
|
@@ -1947,65 +1757,54 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1947
1757
|
outline: none;
|
|
1948
1758
|
}
|
|
1949
1759
|
._BkzdC textarea:disabled {
|
|
1950
|
-
background-color:
|
|
1760
|
+
background-color: var(--color-grey-100);
|
|
1951
1761
|
}
|
|
1952
1762
|
._Rop31 {
|
|
1953
|
-
border: 1px solid
|
|
1954
|
-
box-shadow: 0 0 8px
|
|
1763
|
+
border: 1px solid var(--color-eggplant-400);
|
|
1764
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
1955
1765
|
outline: none;
|
|
1956
1766
|
}
|
|
1957
1767
|
._2x3Cm {
|
|
1958
|
-
background-color:
|
|
1768
|
+
background-color: var(--color-grey-100);
|
|
1959
1769
|
}
|
|
1960
1770
|
._3zOwV {
|
|
1961
|
-
border-color:
|
|
1771
|
+
border-color: var(--color-radish-400) !important;
|
|
1962
1772
|
}
|
|
1963
1773
|
._rQqnL {
|
|
1964
1774
|
margin-top: 5px;
|
|
1965
1775
|
}
|
|
1966
|
-
/*********************************
|
|
1967
|
-
For new colours, see _colors.scss.
|
|
1968
|
-
**********************************/
|
|
1969
|
-
/* stylelint-disable color-no-hex */
|
|
1970
|
-
/*
|
|
1971
|
-
These are the colour variables to be used around the webapp.
|
|
1972
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1973
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1974
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1975
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1976
|
-
*/
|
|
1977
1776
|
._20YOA {
|
|
1978
1777
|
padding: 7px;
|
|
1979
1778
|
line-height: 22px;
|
|
1980
1779
|
border-radius: 4px;
|
|
1981
1780
|
font-size: 14px;
|
|
1982
1781
|
font-family: "Proxima Nova", sans-serif;
|
|
1983
|
-
color:
|
|
1782
|
+
color: var(--color-grey-500);
|
|
1984
1783
|
box-shadow: none;
|
|
1985
|
-
border: 1px solid
|
|
1784
|
+
border: 1px solid var(--color-grey-200);
|
|
1986
1785
|
margin: 0;
|
|
1987
1786
|
flex: 1;
|
|
1988
1787
|
min-width: 90px;
|
|
1989
1788
|
}
|
|
1990
1789
|
._20YOA:focus {
|
|
1991
|
-
border: 1px solid
|
|
1992
|
-
box-shadow: 0 0 8px
|
|
1790
|
+
border: 1px solid var(--color-eggplant-400);
|
|
1791
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
1993
1792
|
outline: none;
|
|
1994
1793
|
}
|
|
1995
1794
|
._20YOA:disabled {
|
|
1996
|
-
background-color:
|
|
1997
|
-
color:
|
|
1795
|
+
background-color: var(--color-grey-100);
|
|
1796
|
+
color: var(--color-grey-400);
|
|
1998
1797
|
}
|
|
1999
1798
|
|
|
2000
1799
|
._3kUSh {
|
|
2001
|
-
border-color:
|
|
1800
|
+
border-color: var(--color-radish-400) !important;
|
|
2002
1801
|
}
|
|
2003
1802
|
|
|
2004
1803
|
._3IU3Q {
|
|
2005
1804
|
border-left: 0 !important;
|
|
2006
1805
|
border-top-left-radius: 0 !important;
|
|
2007
1806
|
border-bottom-left-radius: 0 !important;
|
|
2008
|
-
color:
|
|
1807
|
+
color: var(--color-grey-400);
|
|
2009
1808
|
}
|
|
2010
1809
|
|
|
2011
1810
|
._QXJOD {
|
|
@@ -2013,17 +1812,6 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2013
1812
|
border-top-right-radius: 0 !important;
|
|
2014
1813
|
border-bottom-right-radius: 0 !important;
|
|
2015
1814
|
}
|
|
2016
|
-
/*********************************
|
|
2017
|
-
For new colours, see _colors.scss.
|
|
2018
|
-
**********************************/
|
|
2019
|
-
/* stylelint-disable color-no-hex */
|
|
2020
|
-
/*
|
|
2021
|
-
These are the colour variables to be used around the webapp.
|
|
2022
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2023
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2024
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2025
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2026
|
-
*/
|
|
2027
1815
|
._2sg0c {
|
|
2028
1816
|
position: relative;
|
|
2029
1817
|
}
|
|
@@ -2047,8 +1835,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2047
1835
|
width: 14px;
|
|
2048
1836
|
background-color: transparent;
|
|
2049
1837
|
border-radius: 4px;
|
|
2050
|
-
border: 1px solid
|
|
2051
|
-
box-shadow: inset 0 1px 4px -2px
|
|
1838
|
+
border: 1px solid var(--color-grey-200);
|
|
1839
|
+
box-shadow: inset 0 1px 4px -2px var(--color-grey-200);
|
|
2052
1840
|
}
|
|
2053
1841
|
._2mA8e::after {
|
|
2054
1842
|
position: absolute;
|
|
@@ -2069,34 +1857,23 @@ input:checked ~ ._2mA8e::after {
|
|
|
2069
1857
|
top: 1px;
|
|
2070
1858
|
width: 4px;
|
|
2071
1859
|
height: 8px;
|
|
2072
|
-
border: solid
|
|
1860
|
+
border: solid var(--color-white);
|
|
2073
1861
|
border-width: 0 2px 2px 0;
|
|
2074
1862
|
background-color: transparent;
|
|
2075
1863
|
border-radius: 0;
|
|
2076
1864
|
}
|
|
2077
1865
|
input:focus-visible + ._2mA8e {
|
|
2078
|
-
outline:
|
|
1866
|
+
outline: var(--color-eggplant-400) solid 1px;
|
|
2079
1867
|
}
|
|
2080
1868
|
input:disabled + ._2mA8e {
|
|
2081
|
-
background-color:
|
|
2082
|
-
border: 1px solid
|
|
1869
|
+
background-color: var(--color-grey-100);
|
|
1870
|
+
border: 1px solid var(--color-grey-200);
|
|
2083
1871
|
}
|
|
2084
1872
|
input:disabled + ._2mA8e::after {
|
|
2085
1873
|
box-shadow: none;
|
|
2086
1874
|
border: solid #9f9f9f !important;
|
|
2087
1875
|
border-width: 0 2px 2px 0 !important;
|
|
2088
1876
|
}
|
|
2089
|
-
/*********************************
|
|
2090
|
-
For new colours, see _colors.scss.
|
|
2091
|
-
**********************************/
|
|
2092
|
-
/* stylelint-disable color-no-hex */
|
|
2093
|
-
/*
|
|
2094
|
-
These are the colour variables to be used around the webapp.
|
|
2095
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2096
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2097
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2098
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2099
|
-
*/
|
|
2100
1877
|
._g6T-p {
|
|
2101
1878
|
position: relative;
|
|
2102
1879
|
}
|
|
@@ -2116,17 +1893,17 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2116
1893
|
display: flex;
|
|
2117
1894
|
align-items: center;
|
|
2118
1895
|
justify-content: center;
|
|
2119
|
-
background-color:
|
|
1896
|
+
background-color: var(--color-white);
|
|
2120
1897
|
font-size: 14px;
|
|
2121
1898
|
font-weight: 600;
|
|
2122
1899
|
padding: 8px;
|
|
2123
|
-
border: 1px solid
|
|
1900
|
+
border: 1px solid var(--color-grey-200);
|
|
2124
1901
|
border-radius: 25px;
|
|
2125
1902
|
min-height: 38px;
|
|
2126
1903
|
min-width: 60px;
|
|
2127
1904
|
text-align: center;
|
|
2128
1905
|
vertical-align: middle;
|
|
2129
|
-
color:
|
|
1906
|
+
color: var(--color-grey-500);
|
|
2130
1907
|
-webkit-user-select: none;
|
|
2131
1908
|
-moz-user-select: none;
|
|
2132
1909
|
-ms-user-select: none;
|
|
@@ -2136,50 +1913,39 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2136
1913
|
box-sizing: border-box;
|
|
2137
1914
|
}
|
|
2138
1915
|
input:hover ~ ._1i2AX {
|
|
2139
|
-
background-color:
|
|
2140
|
-
border-color:
|
|
1916
|
+
background-color: var(--color-grey-200);
|
|
1917
|
+
border-color: var(--color-grey-200);
|
|
2141
1918
|
}
|
|
2142
1919
|
input:checked:hover ~ ._1i2AX {
|
|
2143
|
-
background-color:
|
|
2144
|
-
border-color:
|
|
1920
|
+
background-color: var(--color-tangerine-500);
|
|
1921
|
+
border-color: var(--color-tangerine-500);
|
|
2145
1922
|
}
|
|
2146
1923
|
input:checked ~ ._1i2AX {
|
|
2147
|
-
background-color:
|
|
2148
|
-
border-color:
|
|
2149
|
-
color:
|
|
1924
|
+
background-color: var(--color-tangerine-400);
|
|
1925
|
+
border-color: var(--color-tangerine-400);
|
|
1926
|
+
color: var(--color-white);
|
|
2150
1927
|
}
|
|
2151
1928
|
input:disabled + ._1i2AX {
|
|
2152
|
-
background-color:
|
|
2153
|
-
border-color:
|
|
2154
|
-
color:
|
|
1929
|
+
background-color: var(--color-grey-100);
|
|
1930
|
+
border-color: var(--color-grey-100);
|
|
1931
|
+
color: var(--color-grey-400);
|
|
2155
1932
|
}
|
|
2156
1933
|
input:disabled:checked + ._1i2AX {
|
|
2157
|
-
background-color:
|
|
2158
|
-
border-color:
|
|
2159
|
-
color:
|
|
1934
|
+
background-color: var(--color-tangerine-500);
|
|
1935
|
+
border-color: var(--color-tangerine-500);
|
|
1936
|
+
color: var(--color-white);
|
|
2160
1937
|
}
|
|
2161
1938
|
input:focus-visible + ._1i2AX {
|
|
2162
|
-
border: 1px solid
|
|
2163
|
-
box-shadow: 0 0 8px
|
|
1939
|
+
border: 1px solid var(--color-eggplant-400);
|
|
1940
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2164
1941
|
outline: none;
|
|
2165
1942
|
}
|
|
2166
|
-
/*********************************
|
|
2167
|
-
For new colours, see _colors.scss.
|
|
2168
|
-
**********************************/
|
|
2169
|
-
/* stylelint-disable color-no-hex */
|
|
2170
|
-
/*
|
|
2171
|
-
These are the colour variables to be used around the webapp.
|
|
2172
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2173
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2174
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2175
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2176
|
-
*/
|
|
2177
1943
|
._1WGz2 {
|
|
2178
1944
|
line-height: normal;
|
|
2179
1945
|
padding: 0;
|
|
2180
1946
|
width: auto;
|
|
2181
1947
|
float: none;
|
|
2182
|
-
color:
|
|
1948
|
+
color: var(--color-grey-500);
|
|
2183
1949
|
font-family: "Proxima Nova", sans-serif;
|
|
2184
1950
|
font-weight: 600;
|
|
2185
1951
|
font-size: 14px;
|
|
@@ -2197,29 +1963,18 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2197
1963
|
padding: 0;
|
|
2198
1964
|
width: auto;
|
|
2199
1965
|
float: none;
|
|
2200
|
-
color:
|
|
1966
|
+
color: var(--color-grey-500);
|
|
2201
1967
|
font-family: "Proxima Nova", sans-serif;
|
|
2202
1968
|
font-weight: 600;
|
|
2203
1969
|
font-size: 14px;
|
|
2204
1970
|
min-height: 16px;
|
|
2205
1971
|
}
|
|
2206
|
-
/*********************************
|
|
2207
|
-
For new colours, see _colors.scss.
|
|
2208
|
-
**********************************/
|
|
2209
|
-
/* stylelint-disable color-no-hex */
|
|
2210
|
-
/*
|
|
2211
|
-
These are the colour variables to be used around the webapp.
|
|
2212
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2213
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2214
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2215
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2216
|
-
*/
|
|
2217
1972
|
._1Tw96 {
|
|
2218
1973
|
line-height: normal;
|
|
2219
1974
|
padding: 0;
|
|
2220
1975
|
width: auto;
|
|
2221
1976
|
float: none;
|
|
2222
|
-
color:
|
|
1977
|
+
color: var(--color-grey-500);
|
|
2223
1978
|
font-family: "Proxima Nova", sans-serif;
|
|
2224
1979
|
font-weight: 600;
|
|
2225
1980
|
font-size: 14px;
|
|
@@ -2236,7 +1991,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2236
1991
|
display: block;
|
|
2237
1992
|
text-align: center;
|
|
2238
1993
|
height: 100%;
|
|
2239
|
-
color:
|
|
1994
|
+
color: var(--color-grey-400);
|
|
2240
1995
|
}
|
|
2241
1996
|
._2OGKE input {
|
|
2242
1997
|
border: 0px;
|
|
@@ -2250,12 +2005,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2250
2005
|
position: absolute;
|
|
2251
2006
|
}
|
|
2252
2007
|
input:checked ~ ._23M9k {
|
|
2253
|
-
border-color:
|
|
2254
|
-
box-shadow: 0 0 8px
|
|
2008
|
+
border-color: var(--color-eggplant-300);
|
|
2009
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2255
2010
|
cursor: default;
|
|
2256
2011
|
}
|
|
2257
2012
|
._23M9k {
|
|
2258
|
-
border: 1px solid
|
|
2013
|
+
border: 1px solid var(--color-grey-200);
|
|
2259
2014
|
border-radius: 4px;
|
|
2260
2015
|
padding: 16px;
|
|
2261
2016
|
display: block;
|
|
@@ -2267,30 +2022,19 @@ input:checked ~ ._23M9k {
|
|
|
2267
2022
|
word-break: break-word;
|
|
2268
2023
|
}
|
|
2269
2024
|
._23M9k:hover {
|
|
2270
|
-
box-shadow: 0 0 8px
|
|
2025
|
+
box-shadow: 0 0 8px var(--color-grey-200);
|
|
2271
2026
|
}
|
|
2272
2027
|
._1r-Wg {
|
|
2273
2028
|
line-height: normal;
|
|
2274
2029
|
padding: 0;
|
|
2275
2030
|
width: auto;
|
|
2276
2031
|
float: none;
|
|
2277
|
-
color:
|
|
2032
|
+
color: var(--color-grey-500);
|
|
2278
2033
|
font-family: "Proxima Nova", sans-serif;
|
|
2279
2034
|
font-weight: 600;
|
|
2280
2035
|
font-size: 14px;
|
|
2281
2036
|
min-height: 16px;
|
|
2282
2037
|
}
|
|
2283
|
-
/*********************************
|
|
2284
|
-
For new colours, see _colors.scss.
|
|
2285
|
-
**********************************/
|
|
2286
|
-
/* stylelint-disable color-no-hex */
|
|
2287
|
-
/*
|
|
2288
|
-
These are the colour variables to be used around the webapp.
|
|
2289
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2290
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2291
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2292
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2293
|
-
*/
|
|
2294
2038
|
._1Clmp {
|
|
2295
2039
|
position: relative;
|
|
2296
2040
|
}
|
|
@@ -2314,8 +2058,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2314
2058
|
width: 14px;
|
|
2315
2059
|
background-color: transparent;
|
|
2316
2060
|
border-radius: 50%;
|
|
2317
|
-
border: 1px solid
|
|
2318
|
-
box-shadow: inset 0 1px 4px -2px
|
|
2061
|
+
border: 1px solid var(--color-grey-200);
|
|
2062
|
+
box-shadow: inset 0 1px 4px -2px var(--color-grey-200);
|
|
2319
2063
|
}
|
|
2320
2064
|
._1tMq-::after {
|
|
2321
2065
|
position: absolute;
|
|
@@ -2335,16 +2079,16 @@ input:checked ~ ._1tMq-::after {
|
|
|
2335
2079
|
top: 5px;
|
|
2336
2080
|
width: 4px;
|
|
2337
2081
|
height: 4px;
|
|
2338
|
-
background-color:
|
|
2082
|
+
background-color: var(--color-white);
|
|
2339
2083
|
border: none;
|
|
2340
2084
|
border-radius: 50%;
|
|
2341
2085
|
}
|
|
2342
2086
|
input:focus-visible + ._1tMq- {
|
|
2343
|
-
outline:
|
|
2087
|
+
outline: var(--color-eggplant-400) solid 1px;
|
|
2344
2088
|
}
|
|
2345
2089
|
input:disabled + ._1tMq- {
|
|
2346
|
-
background-color:
|
|
2347
|
-
border: 1px solid
|
|
2090
|
+
background-color: var(--color-grey-100);
|
|
2091
|
+
border: 1px solid var(--color-grey-200);
|
|
2348
2092
|
}
|
|
2349
2093
|
input:disabled + ._1tMq-::after {
|
|
2350
2094
|
box-shadow: none;
|
|
@@ -2354,49 +2098,38 @@ input:disabled + ._1tMq-::after {
|
|
|
2354
2098
|
left: 4px;
|
|
2355
2099
|
top: 4px;
|
|
2356
2100
|
}
|
|
2357
|
-
/*********************************
|
|
2358
|
-
For new colours, see _colors.scss.
|
|
2359
|
-
**********************************/
|
|
2360
|
-
/* stylelint-disable color-no-hex */
|
|
2361
|
-
/*
|
|
2362
|
-
These are the colour variables to be used around the webapp.
|
|
2363
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2364
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2365
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2366
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2367
|
-
*/
|
|
2368
2101
|
._18Rzv {
|
|
2369
2102
|
padding: 7px;
|
|
2370
2103
|
line-height: 22px;
|
|
2371
2104
|
border-radius: 4px;
|
|
2372
2105
|
font-size: 14px;
|
|
2373
2106
|
font-family: "Proxima Nova", sans-serif;
|
|
2374
|
-
color:
|
|
2107
|
+
color: var(--color-grey-500);
|
|
2375
2108
|
box-shadow: none;
|
|
2376
|
-
border: 1px solid
|
|
2109
|
+
border: 1px solid var(--color-grey-200);
|
|
2377
2110
|
margin: 0;
|
|
2378
2111
|
flex: 1;
|
|
2379
2112
|
min-width: 90px;
|
|
2380
2113
|
}
|
|
2381
2114
|
._18Rzv:focus {
|
|
2382
|
-
border: 1px solid
|
|
2383
|
-
box-shadow: 0 0 8px
|
|
2115
|
+
border: 1px solid var(--color-eggplant-400);
|
|
2116
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2384
2117
|
outline: none;
|
|
2385
2118
|
}
|
|
2386
2119
|
._18Rzv:disabled {
|
|
2387
|
-
background-color:
|
|
2388
|
-
color:
|
|
2120
|
+
background-color: var(--color-grey-100);
|
|
2121
|
+
color: var(--color-grey-400);
|
|
2389
2122
|
}
|
|
2390
2123
|
|
|
2391
2124
|
._3eD7t {
|
|
2392
|
-
border-color:
|
|
2125
|
+
border-color: var(--color-radish-400) !important;
|
|
2393
2126
|
}
|
|
2394
2127
|
|
|
2395
2128
|
._2evrG {
|
|
2396
2129
|
border-left: 0 !important;
|
|
2397
2130
|
border-top-left-radius: 0 !important;
|
|
2398
2131
|
border-bottom-left-radius: 0 !important;
|
|
2399
|
-
color:
|
|
2132
|
+
color: var(--color-grey-400);
|
|
2400
2133
|
}
|
|
2401
2134
|
|
|
2402
2135
|
._-MgeO {
|
|
@@ -2417,94 +2150,61 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2417
2150
|
right: 7px;
|
|
2418
2151
|
top: 7px;
|
|
2419
2152
|
}
|
|
2420
|
-
/*********************************
|
|
2421
|
-
For new colours, see _colors.scss.
|
|
2422
|
-
**********************************/
|
|
2423
|
-
/* stylelint-disable color-no-hex */
|
|
2424
|
-
/*
|
|
2425
|
-
These are the colour variables to be used around the webapp.
|
|
2426
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2427
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2428
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2429
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2430
|
-
*/
|
|
2431
2153
|
._U0krC {
|
|
2432
|
-
color:
|
|
2154
|
+
color: var(--color-grey-200);
|
|
2433
2155
|
font-family: "Proxima Nova", sans-serif;
|
|
2434
2156
|
}
|
|
2435
2157
|
|
|
2436
2158
|
._2XIl4 {
|
|
2437
|
-
color:
|
|
2159
|
+
color: var(--color-grey-400);
|
|
2438
2160
|
font-family: "Proxima Nova", sans-serif;
|
|
2439
2161
|
}
|
|
2440
2162
|
._1cDCR {
|
|
2441
2163
|
flex: 1;
|
|
2442
2164
|
display: "flex";
|
|
2443
2165
|
}
|
|
2444
|
-
/*********************************
|
|
2445
|
-
For new colours, see _colors.scss.
|
|
2446
|
-
**********************************/
|
|
2447
|
-
/* stylelint-disable color-no-hex */
|
|
2448
|
-
/*
|
|
2449
|
-
These are the colour variables to be used around the webapp.
|
|
2450
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2451
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2452
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2453
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2454
|
-
*/
|
|
2455
2166
|
._uC4zU {
|
|
2456
2167
|
font-family: "Proxima Nova", sans-serif;
|
|
2457
2168
|
font-weight: 16px;
|
|
2458
2169
|
font-size: 14px;
|
|
2459
|
-
color:
|
|
2170
|
+
color: var(--color-grey-400);
|
|
2460
2171
|
display: flex;
|
|
2461
2172
|
flex-direction: column;
|
|
2462
2173
|
justify-content: center;
|
|
2463
2174
|
padding: 8px 12px;
|
|
2464
2175
|
}
|
|
2465
|
-
/*********************************
|
|
2466
|
-
For new colours, see _colors.scss.
|
|
2467
|
-
**********************************/
|
|
2468
|
-
/* stylelint-disable color-no-hex */
|
|
2469
|
-
/*
|
|
2470
|
-
These are the colour variables to be used around the webapp.
|
|
2471
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2472
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2473
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2474
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2475
|
-
*/
|
|
2476
2176
|
._1btTx, ._1Sc9D {
|
|
2477
2177
|
padding: 7px;
|
|
2478
2178
|
line-height: 22px;
|
|
2479
2179
|
border-radius: 4px;
|
|
2480
2180
|
font-size: 14px;
|
|
2481
2181
|
font-family: "Proxima Nova", sans-serif;
|
|
2482
|
-
color:
|
|
2182
|
+
color: var(--color-grey-500);
|
|
2483
2183
|
box-shadow: none;
|
|
2484
|
-
border: 1px solid
|
|
2184
|
+
border: 1px solid var(--color-grey-200);
|
|
2485
2185
|
margin: 0;
|
|
2486
2186
|
flex: 1;
|
|
2487
2187
|
min-width: 90px;
|
|
2488
2188
|
}
|
|
2489
2189
|
._1btTx:focus, ._1Sc9D:focus {
|
|
2490
|
-
border: 1px solid
|
|
2491
|
-
box-shadow: 0 0 8px
|
|
2190
|
+
border: 1px solid var(--color-eggplant-400);
|
|
2191
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2492
2192
|
outline: none;
|
|
2493
2193
|
}
|
|
2494
2194
|
._1btTx:disabled, ._1Sc9D:disabled {
|
|
2495
|
-
background-color:
|
|
2496
|
-
color:
|
|
2195
|
+
background-color: var(--color-grey-100);
|
|
2196
|
+
color: var(--color-grey-400);
|
|
2497
2197
|
}
|
|
2498
2198
|
|
|
2499
2199
|
._2feYp, ._2SNat {
|
|
2500
|
-
border-color:
|
|
2200
|
+
border-color: var(--color-radish-400) !important;
|
|
2501
2201
|
}
|
|
2502
2202
|
|
|
2503
2203
|
._E18JV, ._jLolW {
|
|
2504
2204
|
border-left: 0 !important;
|
|
2505
2205
|
border-top-left-radius: 0 !important;
|
|
2506
2206
|
border-bottom-left-radius: 0 !important;
|
|
2507
|
-
color:
|
|
2207
|
+
color: var(--color-grey-400);
|
|
2508
2208
|
}
|
|
2509
2209
|
|
|
2510
2210
|
._27J43, ._3eTNi {
|
|
@@ -2518,17 +2218,6 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2518
2218
|
padding-bottom: 6px;
|
|
2519
2219
|
width: 100%;
|
|
2520
2220
|
}
|
|
2521
|
-
/*********************************
|
|
2522
|
-
For new colours, see _colors.scss.
|
|
2523
|
-
**********************************/
|
|
2524
|
-
/* stylelint-disable color-no-hex */
|
|
2525
|
-
/*
|
|
2526
|
-
These are the colour variables to be used around the webapp.
|
|
2527
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2528
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2529
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2530
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2531
|
-
*/
|
|
2532
2221
|
._1Ini2 {
|
|
2533
2222
|
flex: 1;
|
|
2534
2223
|
display: flex;
|
|
@@ -2566,21 +2255,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2566
2255
|
left: auto;
|
|
2567
2256
|
display: inline-block;
|
|
2568
2257
|
margin-top: 2px;
|
|
2569
|
-
color:
|
|
2258
|
+
color: var(--color-grey-300);
|
|
2570
2259
|
cursor: pointer;
|
|
2571
2260
|
background-image: none;
|
|
2572
2261
|
width: 0;
|
|
2573
2262
|
height: 0;
|
|
2574
2263
|
border-top: 7px solid transparent;
|
|
2575
2264
|
border-bottom: 7px solid transparent;
|
|
2576
|
-
border-right: 10px solid
|
|
2265
|
+
border-right: 10px solid var(--color-grey-500);
|
|
2577
2266
|
margin-right: 1.5em;
|
|
2578
2267
|
}
|
|
2579
2268
|
._6kNi3:hover {
|
|
2580
2269
|
opacity: 0.8;
|
|
2581
2270
|
}
|
|
2582
2271
|
._6kNi3:hover {
|
|
2583
|
-
border-right-color:
|
|
2272
|
+
border-right-color: var(--color-grey-400);
|
|
2584
2273
|
}
|
|
2585
2274
|
|
|
2586
2275
|
._13W_e {
|
|
@@ -2590,21 +2279,21 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2590
2279
|
left: auto;
|
|
2591
2280
|
display: inline-block;
|
|
2592
2281
|
margin-top: 2px;
|
|
2593
|
-
color:
|
|
2282
|
+
color: var(--color-grey-300);
|
|
2594
2283
|
cursor: pointer;
|
|
2595
2284
|
background-image: none;
|
|
2596
2285
|
width: 0;
|
|
2597
2286
|
height: 0;
|
|
2598
2287
|
border-top: 7px solid transparent;
|
|
2599
2288
|
border-bottom: 7px solid transparent;
|
|
2600
|
-
border-left: 10px solid
|
|
2289
|
+
border-left: 10px solid var(--color-grey-500);
|
|
2601
2290
|
}
|
|
2602
2291
|
._13W_e:hover {
|
|
2603
2292
|
opacity: 0.8;
|
|
2604
2293
|
}
|
|
2605
2294
|
._13W_e:hover {
|
|
2606
2295
|
opacity: 0.8;
|
|
2607
|
-
border-left-color:
|
|
2296
|
+
border-left-color: var(--color-grey-400);
|
|
2608
2297
|
}
|
|
2609
2298
|
|
|
2610
2299
|
._1FeSY {
|
|
@@ -2635,7 +2324,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2635
2324
|
._AMbAo > div {
|
|
2636
2325
|
font-weight: 600;
|
|
2637
2326
|
font-size: 20px;
|
|
2638
|
-
color:
|
|
2327
|
+
color: var(--color-grey-500);
|
|
2639
2328
|
}
|
|
2640
2329
|
|
|
2641
2330
|
._1LEst {
|
|
@@ -2650,7 +2339,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2650
2339
|
._1C5ry {
|
|
2651
2340
|
display: table-cell;
|
|
2652
2341
|
padding: 0.5em;
|
|
2653
|
-
color:
|
|
2342
|
+
color: var(--color-grey-400);
|
|
2654
2343
|
text-align: center;
|
|
2655
2344
|
font-size: 0.875em;
|
|
2656
2345
|
}
|
|
@@ -2677,7 +2366,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2677
2366
|
cursor: pointer;
|
|
2678
2367
|
}
|
|
2679
2368
|
._mG73F:not(._wJ6Cb):not(._2pgnH):not(._MtLaz):not(._CRqyX):hover {
|
|
2680
|
-
background:
|
|
2369
|
+
background: var(--color-grey-100);
|
|
2681
2370
|
}
|
|
2682
2371
|
|
|
2683
2372
|
._2KG9- {
|
|
@@ -2685,31 +2374,31 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2685
2374
|
}
|
|
2686
2375
|
|
|
2687
2376
|
._2JA2y {
|
|
2688
|
-
color:
|
|
2377
|
+
color: var(--color-tangerine-400);
|
|
2689
2378
|
font-weight: 700;
|
|
2690
2379
|
}
|
|
2691
2380
|
|
|
2692
2381
|
._MtLaz:not(._2pgnH):not(._CRqyX) {
|
|
2693
|
-
background-color:
|
|
2694
|
-
color:
|
|
2382
|
+
background-color: var(--color-tangerine-200);
|
|
2383
|
+
color: var(--color-tangerine-400);
|
|
2695
2384
|
}
|
|
2696
2385
|
|
|
2697
2386
|
._MtLaz:not(._2pgnH):not(._CRqyX):hover {
|
|
2698
|
-
background-color:
|
|
2699
|
-
color:
|
|
2387
|
+
background-color: var(--color-tangerine-400);
|
|
2388
|
+
color: var(--color-white);
|
|
2700
2389
|
}
|
|
2701
2390
|
|
|
2702
2391
|
._MtLaz._2JA2y:hover {
|
|
2703
|
-
color:
|
|
2392
|
+
color: var(--color-white);
|
|
2704
2393
|
}
|
|
2705
2394
|
|
|
2706
2395
|
._2pgnH {
|
|
2707
|
-
color:
|
|
2396
|
+
color: var(--color-grey-200);
|
|
2708
2397
|
cursor: default;
|
|
2709
2398
|
}
|
|
2710
2399
|
|
|
2711
2400
|
._CRqyX:not(._2pgnH) {
|
|
2712
|
-
color:
|
|
2401
|
+
color: var(--color-grey-300);
|
|
2713
2402
|
cursor: default;
|
|
2714
2403
|
}
|
|
2715
2404
|
|
|
@@ -2721,7 +2410,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2721
2410
|
position: absolute;
|
|
2722
2411
|
left: 0;
|
|
2723
2412
|
z-index: 1;
|
|
2724
|
-
background:
|
|
2413
|
+
background: var(--color-white);
|
|
2725
2414
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
2726
2415
|
}
|
|
2727
2416
|
|
|
@@ -2729,57 +2418,46 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2729
2418
|
display: table-cell;
|
|
2730
2419
|
padding: 0.5em;
|
|
2731
2420
|
min-width: 1em;
|
|
2732
|
-
border-right: 1px solid
|
|
2733
|
-
color:
|
|
2421
|
+
border-right: 1px solid var(--color-grey-200);
|
|
2422
|
+
color: var(--color-grey-300);
|
|
2734
2423
|
vertical-align: middle;
|
|
2735
2424
|
text-align: right;
|
|
2736
2425
|
font-size: 0.75em;
|
|
2737
2426
|
cursor: pointer;
|
|
2738
2427
|
}
|
|
2739
2428
|
|
|
2740
|
-
/*********************************
|
|
2741
|
-
For new colours, see _colors.scss.
|
|
2742
|
-
**********************************/
|
|
2743
|
-
/* stylelint-disable color-no-hex */
|
|
2744
|
-
/*
|
|
2745
|
-
These are the colour variables to be used around the webapp.
|
|
2746
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2747
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2748
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2749
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2750
|
-
*/
|
|
2751
2429
|
._25rf7, ._3qVhi input, ._3qVhi {
|
|
2752
2430
|
padding: 7px;
|
|
2753
2431
|
line-height: 22px;
|
|
2754
2432
|
border-radius: 4px;
|
|
2755
2433
|
font-size: 14px;
|
|
2756
2434
|
font-family: "Proxima Nova", sans-serif;
|
|
2757
|
-
color:
|
|
2435
|
+
color: var(--color-grey-500);
|
|
2758
2436
|
box-shadow: none;
|
|
2759
|
-
border: 1px solid
|
|
2437
|
+
border: 1px solid var(--color-grey-200);
|
|
2760
2438
|
margin: 0;
|
|
2761
2439
|
flex: 1;
|
|
2762
2440
|
min-width: 90px;
|
|
2763
2441
|
}
|
|
2764
2442
|
._25rf7:focus, ._3qVhi input:focus, ._3qVhi:focus {
|
|
2765
|
-
border: 1px solid
|
|
2766
|
-
box-shadow: 0 0 8px
|
|
2443
|
+
border: 1px solid var(--color-eggplant-400);
|
|
2444
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2767
2445
|
outline: none;
|
|
2768
2446
|
}
|
|
2769
2447
|
._25rf7:disabled, ._3qVhi input:disabled, ._3qVhi:disabled {
|
|
2770
|
-
background-color:
|
|
2771
|
-
color:
|
|
2448
|
+
background-color: var(--color-grey-100);
|
|
2449
|
+
color: var(--color-grey-400);
|
|
2772
2450
|
}
|
|
2773
2451
|
|
|
2774
2452
|
._2M9Ud {
|
|
2775
|
-
border-color:
|
|
2453
|
+
border-color: var(--color-radish-400) !important;
|
|
2776
2454
|
}
|
|
2777
2455
|
|
|
2778
2456
|
._3TUb2 {
|
|
2779
2457
|
border-left: 0 !important;
|
|
2780
2458
|
border-top-left-radius: 0 !important;
|
|
2781
2459
|
border-bottom-left-radius: 0 !important;
|
|
2782
|
-
color:
|
|
2460
|
+
color: var(--color-grey-400);
|
|
2783
2461
|
}
|
|
2784
2462
|
|
|
2785
2463
|
._foqL0 {
|
|
@@ -2795,10 +2473,10 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2795
2473
|
align-items: center;
|
|
2796
2474
|
}
|
|
2797
2475
|
._3df9R {
|
|
2798
|
-
border-color:
|
|
2476
|
+
border-color: var(--color-radish-400) !important;
|
|
2799
2477
|
}
|
|
2800
2478
|
._2Nkht {
|
|
2801
|
-
background-color:
|
|
2479
|
+
background-color: var(--color-grey-100);
|
|
2802
2480
|
}
|
|
2803
2481
|
._3qVhi input {
|
|
2804
2482
|
border: none;
|
|
@@ -2808,7 +2486,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2808
2486
|
}
|
|
2809
2487
|
._3qVhi input:focus {
|
|
2810
2488
|
border: none;
|
|
2811
|
-
box-shadow: inset 0 -2px 0
|
|
2489
|
+
box-shadow: inset 0 -2px 0 var(--color-tangerine-400);
|
|
2812
2490
|
outline: none;
|
|
2813
2491
|
border-radius: 0;
|
|
2814
2492
|
border-top-right-radius: 4px;
|
|
@@ -2829,39 +2507,27 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2829
2507
|
}
|
|
2830
2508
|
|
|
2831
2509
|
._mG73F._MtLaz.from {
|
|
2832
|
-
background-color:
|
|
2833
|
-
color:
|
|
2510
|
+
background-color: var(--color-tangerine-400);
|
|
2511
|
+
color: var(--color-white);
|
|
2834
2512
|
border-top-left-radius: 50%;
|
|
2835
2513
|
border-bottom-left-radius: 50%;
|
|
2836
2514
|
}
|
|
2837
2515
|
|
|
2838
2516
|
._mG73F._MtLaz.to {
|
|
2839
|
-
background-color:
|
|
2840
|
-
color:
|
|
2517
|
+
background-color: var(--color-tangerine-400);
|
|
2518
|
+
color: var(--color-white);
|
|
2841
2519
|
border-top-right-radius: 50%;
|
|
2842
2520
|
border-bottom-right-radius: 50%;
|
|
2843
2521
|
}
|
|
2844
2522
|
|
|
2845
2523
|
._MtLaz:not(._2pgnH) {
|
|
2846
|
-
background-color:
|
|
2847
|
-
color:
|
|
2848
|
-
}
|
|
2849
|
-
/*********************************
|
|
2850
|
-
For new colours, see _colors.scss.
|
|
2851
|
-
**********************************/
|
|
2852
|
-
/* stylelint-disable color-no-hex */
|
|
2853
|
-
/*
|
|
2854
|
-
These are the colour variables to be used around the webapp.
|
|
2855
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2856
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2857
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2858
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2859
|
-
*/
|
|
2524
|
+
background-color: var(--color-tangerine-200);
|
|
2525
|
+
color: var(--color-tangerine-400);
|
|
2526
|
+
}
|
|
2860
2527
|
._vgLin {
|
|
2861
2528
|
padding: 16px 12px 16px 12px;
|
|
2862
|
-
background:
|
|
2863
|
-
margin
|
|
2864
|
-
margin-right: 1px;
|
|
2529
|
+
background: var(--color-grey-100);
|
|
2530
|
+
margin: 1px;
|
|
2865
2531
|
position: relative;
|
|
2866
2532
|
border-radius: 3px;
|
|
2867
2533
|
box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
|
|
@@ -2871,22 +2537,22 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2871
2537
|
font-weight: 600;
|
|
2872
2538
|
font-size: 14px;
|
|
2873
2539
|
line-height: 16px;
|
|
2874
|
-
color:
|
|
2540
|
+
color: var(--color-grey-500);
|
|
2875
2541
|
}
|
|
2876
2542
|
|
|
2877
2543
|
._3n6S7 {
|
|
2878
2544
|
font-size: 14px;
|
|
2879
2545
|
line-height: 16px;
|
|
2880
2546
|
flex-grow: 1;
|
|
2881
|
-
color:
|
|
2547
|
+
color: var(--color-grey-500);
|
|
2882
2548
|
}
|
|
2883
2549
|
._3n6S7 a {
|
|
2884
2550
|
text-decoration: underline;
|
|
2885
|
-
color:
|
|
2551
|
+
color: var(--color-grey-500);
|
|
2886
2552
|
}
|
|
2887
2553
|
._3n6S7 a:hover {
|
|
2888
2554
|
cursor: pointer;
|
|
2889
|
-
color:
|
|
2555
|
+
color: var(--color-grey-600);
|
|
2890
2556
|
}
|
|
2891
2557
|
|
|
2892
2558
|
._2pMYs {
|
|
@@ -2894,43 +2560,43 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2894
2560
|
}
|
|
2895
2561
|
|
|
2896
2562
|
._ON6Eg {
|
|
2897
|
-
background:
|
|
2898
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2563
|
+
background: rgb(var(--color-blueberry-100-rgb));
|
|
2564
|
+
box-shadow: 0 0 0 1px rgba(var(--color-blueberry-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-blueberry-500-rgb), 0.25);
|
|
2899
2565
|
}
|
|
2900
2566
|
._ON6Eg ._1-D-E {
|
|
2901
|
-
color:
|
|
2567
|
+
color: rgb(var(--color-blueberry-500-rgb));
|
|
2902
2568
|
}
|
|
2903
2569
|
|
|
2904
2570
|
._1FFZh {
|
|
2905
|
-
background:
|
|
2906
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2571
|
+
background: rgb(var(--color-mint-100-rgb));
|
|
2572
|
+
box-shadow: 0 0 0 1px rgba(var(--color-mint-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-mint-500-rgb), 0.25);
|
|
2907
2573
|
}
|
|
2908
2574
|
._1FFZh ._1-D-E {
|
|
2909
|
-
color:
|
|
2575
|
+
color: rgb(var(--color-mint-500-rgb));
|
|
2910
2576
|
}
|
|
2911
2577
|
|
|
2912
2578
|
._2R34O {
|
|
2913
|
-
background:
|
|
2914
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2579
|
+
background: rgb(var(--color-radish-100-rgb));
|
|
2580
|
+
box-shadow: 0 0 0 1px rgba(var(--color-radish-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-radish-500-rgb), 0.25);
|
|
2915
2581
|
}
|
|
2916
2582
|
._2R34O ._1-D-E {
|
|
2917
|
-
color:
|
|
2583
|
+
color: rgb(var(--color-radish-500-rgb));
|
|
2918
2584
|
}
|
|
2919
2585
|
|
|
2920
2586
|
._3Cfhe {
|
|
2921
|
-
background:
|
|
2922
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2587
|
+
background: rgb(var(--color-banana-100-rgb));
|
|
2588
|
+
box-shadow: 0 0 0 1px rgba(var(--color-banana-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-banana-500-rgb), 0.25);
|
|
2923
2589
|
}
|
|
2924
2590
|
._3Cfhe ._1-D-E {
|
|
2925
|
-
color:
|
|
2591
|
+
color: rgb(var(--color-banana-500-rgb));
|
|
2926
2592
|
}
|
|
2927
2593
|
|
|
2928
2594
|
._1SIOw {
|
|
2929
|
-
background:
|
|
2930
|
-
box-shadow: 0 0 0 1px rgba(
|
|
2595
|
+
background: rgb(var(--color-eggplant-100-rgb));
|
|
2596
|
+
box-shadow: 0 0 0 1px rgba(var(--color-eggplant-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-eggplant-500-rgb), 0.25);
|
|
2931
2597
|
}
|
|
2932
2598
|
._1SIOw ._1-D-E {
|
|
2933
|
-
color:
|
|
2599
|
+
color: rgb(var(--color-eggplant-500-rgb));
|
|
2934
2600
|
}
|
|
2935
2601
|
|
|
2936
2602
|
._3SNQ1 {
|
|
@@ -2953,39 +2619,17 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2953
2619
|
align-items: center;
|
|
2954
2620
|
min-height: 38px;
|
|
2955
2621
|
}
|
|
2956
|
-
/*********************************
|
|
2957
|
-
For new colours, see _colors.scss.
|
|
2958
|
-
**********************************/
|
|
2959
|
-
/* stylelint-disable color-no-hex */
|
|
2960
|
-
/*
|
|
2961
|
-
These are the colour variables to be used around the webapp.
|
|
2962
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2963
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2964
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2965
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2966
|
-
*/
|
|
2967
2622
|
._1jqm8 {
|
|
2968
2623
|
font-size: 12px;
|
|
2969
2624
|
line-height: 12px;
|
|
2970
|
-
color:
|
|
2971
|
-
}
|
|
2972
|
-
/*********************************
|
|
2973
|
-
For new colours, see _colors.scss.
|
|
2974
|
-
**********************************/
|
|
2975
|
-
/* stylelint-disable color-no-hex */
|
|
2976
|
-
/*
|
|
2977
|
-
These are the colour variables to be used around the webapp.
|
|
2978
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2979
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2980
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2981
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2982
|
-
*/
|
|
2625
|
+
color: var(--color-grey-500);
|
|
2626
|
+
}
|
|
2983
2627
|
._2f81N {
|
|
2984
2628
|
display: inline-flex;
|
|
2985
|
-
background-color:
|
|
2629
|
+
background-color: var(--color-tangerine-400);
|
|
2986
2630
|
height: 20px;
|
|
2987
2631
|
min-width: 20px;
|
|
2988
|
-
color:
|
|
2632
|
+
color: var(--color-white);
|
|
2989
2633
|
text-align: center;
|
|
2990
2634
|
line-height: 20px;
|
|
2991
2635
|
border-radius: 20px;
|
|
@@ -2994,41 +2638,30 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2994
2638
|
font-weight: normal;
|
|
2995
2639
|
padding: 0 6px;
|
|
2996
2640
|
align-items: center;
|
|
2997
|
-
border: 1px solid
|
|
2641
|
+
border: 1px solid var(--color-white);
|
|
2998
2642
|
}
|
|
2999
2643
|
._2f81N svg {
|
|
3000
|
-
fill:
|
|
2644
|
+
fill: var(--color-white);
|
|
3001
2645
|
}
|
|
3002
2646
|
._2g1GI {
|
|
3003
|
-
background-color:
|
|
2647
|
+
background-color: var(--color-banana-400);
|
|
3004
2648
|
}
|
|
3005
2649
|
._2zLnM {
|
|
3006
|
-
background-color:
|
|
2650
|
+
background-color: var(--color-radish-400);
|
|
3007
2651
|
}
|
|
3008
2652
|
._27QOo {
|
|
3009
|
-
background-color:
|
|
2653
|
+
background-color: var(--color-mint-400);
|
|
3010
2654
|
}
|
|
3011
2655
|
._2gmsM {
|
|
3012
|
-
background-color:
|
|
3013
|
-
}
|
|
3014
|
-
/*********************************
|
|
3015
|
-
For new colours, see _colors.scss.
|
|
3016
|
-
**********************************/
|
|
3017
|
-
/* stylelint-disable color-no-hex */
|
|
3018
|
-
/*
|
|
3019
|
-
These are the colour variables to be used around the webapp.
|
|
3020
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
3021
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
3022
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
3023
|
-
Please ask a designer if you have questions about which colours to use.
|
|
3024
|
-
*/
|
|
2656
|
+
background-color: var(--color-blueberry-400);
|
|
2657
|
+
}
|
|
3025
2658
|
._2wJGB {
|
|
3026
2659
|
display: flex;
|
|
3027
2660
|
justify-content: center;
|
|
3028
2661
|
align-items: center;
|
|
3029
2662
|
text-align: center;
|
|
3030
2663
|
font-family: "Proxima Nova", sans-serif;
|
|
3031
|
-
color:
|
|
2664
|
+
color: var(--color-white);
|
|
3032
2665
|
border-radius: 50%;
|
|
3033
2666
|
width: 20px;
|
|
3034
2667
|
height: 20px;
|
|
@@ -3036,7 +2669,7 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
3036
2669
|
overflow: hidden;
|
|
3037
2670
|
}
|
|
3038
2671
|
._2wJGB svg {
|
|
3039
|
-
fill:
|
|
2672
|
+
fill: var(--color-white);
|
|
3040
2673
|
}
|
|
3041
2674
|
._2wJGB img {
|
|
3042
2675
|
height: inherit;
|
|
@@ -3086,17 +2719,6 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
3086
2719
|
width: 80%;
|
|
3087
2720
|
padding-top: 25%;
|
|
3088
2721
|
}
|
|
3089
|
-
/*********************************
|
|
3090
|
-
For new colours, see _colors.scss.
|
|
3091
|
-
**********************************/
|
|
3092
|
-
/* stylelint-disable color-no-hex */
|
|
3093
|
-
/*
|
|
3094
|
-
These are the colour variables to be used around the webapp.
|
|
3095
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
3096
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
3097
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
3098
|
-
Please ask a designer if you have questions about which colours to use.
|
|
3099
|
-
*/
|
|
3100
2722
|
._1fIeV {
|
|
3101
2723
|
font-size: 12px;
|
|
3102
2724
|
font-weight: 600;
|
|
@@ -3108,40 +2730,29 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
3108
2730
|
text-transform: uppercase;
|
|
3109
2731
|
}
|
|
3110
2732
|
._V4byU {
|
|
3111
|
-
background-color:
|
|
3112
|
-
color:
|
|
2733
|
+
background-color: var(--color-tangerine-200);
|
|
2734
|
+
color: var(--color-tangerine-600);
|
|
3113
2735
|
}
|
|
3114
2736
|
._37gN9 {
|
|
3115
|
-
background-color:
|
|
3116
|
-
color:
|
|
2737
|
+
background-color: var(--color-mint-200);
|
|
2738
|
+
color: var(--color-mint-600);
|
|
3117
2739
|
}
|
|
3118
2740
|
._Tw7tp {
|
|
3119
|
-
background-color:
|
|
3120
|
-
color:
|
|
2741
|
+
background-color: var(--color-eggplant-200);
|
|
2742
|
+
color: var(--color-eggplant-600);
|
|
3121
2743
|
}
|
|
3122
2744
|
._t94VZ {
|
|
3123
|
-
background-color:
|
|
3124
|
-
color:
|
|
2745
|
+
background-color: var(--color-banana-200);
|
|
2746
|
+
color: var(--color-banana-600);
|
|
3125
2747
|
}
|
|
3126
2748
|
._3SmeO {
|
|
3127
|
-
background-color:
|
|
3128
|
-
color:
|
|
2749
|
+
background-color: var(--color-blueberry-200);
|
|
2750
|
+
color: var(--color-blueberry-600);
|
|
3129
2751
|
}
|
|
3130
2752
|
._2eoX0 {
|
|
3131
|
-
background-color:
|
|
3132
|
-
color:
|
|
3133
|
-
}
|
|
3134
|
-
/*********************************
|
|
3135
|
-
For new colours, see _colors.scss.
|
|
3136
|
-
**********************************/
|
|
3137
|
-
/* stylelint-disable color-no-hex */
|
|
3138
|
-
/*
|
|
3139
|
-
These are the colour variables to be used around the webapp.
|
|
3140
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
3141
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
3142
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
3143
|
-
Please ask a designer if you have questions about which colours to use.
|
|
3144
|
-
*/
|
|
2753
|
+
background-color: var(--color-radish-200);
|
|
2754
|
+
color: var(--color-radish-600);
|
|
2755
|
+
}
|
|
3145
2756
|
._23q4Y {
|
|
3146
2757
|
font-size: 14px;
|
|
3147
2758
|
font-weight: 600;
|
|
@@ -3156,73 +2767,56 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
3156
2767
|
text-transform: capitalize;
|
|
3157
2768
|
}
|
|
3158
2769
|
._niDEM {
|
|
3159
|
-
background-color:
|
|
3160
|
-
color:
|
|
2770
|
+
background-color: var(--color-grey-200);
|
|
2771
|
+
color: var(--color-grey-600);
|
|
3161
2772
|
}
|
|
3162
2773
|
._IwDRB {
|
|
3163
|
-
background-color:
|
|
3164
|
-
color:
|
|
2774
|
+
background-color: var(--color-mint-200);
|
|
2775
|
+
color: var(--color-mint-600);
|
|
3165
2776
|
}
|
|
3166
2777
|
._MPji- {
|
|
3167
|
-
background-color:
|
|
3168
|
-
color:
|
|
2778
|
+
background-color: var(--color-radish-200);
|
|
2779
|
+
color: var(--color-radish-600);
|
|
3169
2780
|
}
|
|
3170
2781
|
._3S2m8 {
|
|
3171
|
-
background-color:
|
|
3172
|
-
color:
|
|
2782
|
+
background-color: var(--color-banana-200);
|
|
2783
|
+
color: var(--color-banana-600);
|
|
3173
2784
|
}
|
|
3174
2785
|
._2G3ML {
|
|
3175
|
-
background-color:
|
|
3176
|
-
color:
|
|
3177
|
-
}
|
|
3178
|
-
/*********************************
|
|
3179
|
-
For new colours, see _colors.scss.
|
|
3180
|
-
**********************************/
|
|
3181
|
-
/* stylelint-disable color-no-hex */
|
|
3182
|
-
/*
|
|
3183
|
-
These are the colour variables to be used around the webapp.
|
|
3184
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
3185
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
3186
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
3187
|
-
Please ask a designer if you have questions about which colours to use.
|
|
3188
|
-
*/
|
|
3189
|
-
/* stylelint-disable color-no-hex */
|
|
3190
|
-
/*
|
|
3191
|
-
These are the colour variables to be used around the webapp.
|
|
3192
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
3193
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
3194
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
3195
|
-
Please ask a designer if you have questions about which colours to use.
|
|
3196
|
-
*/
|
|
2786
|
+
background-color: var(--color-blueberry-200);
|
|
2787
|
+
color: var(--color-blueberry-600);
|
|
2788
|
+
}
|
|
3197
2789
|
._29ZIp {
|
|
3198
2790
|
position: relative;
|
|
3199
2791
|
}
|
|
3200
2792
|
._3Q8NT {
|
|
3201
2793
|
box-sizing: border-box;
|
|
3202
2794
|
background: white;
|
|
3203
|
-
border: 1px solid
|
|
2795
|
+
border: 1px solid var(--color-grey-200);
|
|
3204
2796
|
border-radius: 8px;
|
|
3205
2797
|
width: 100%;
|
|
3206
2798
|
height: 100%;
|
|
3207
2799
|
padding: 24px 20px;
|
|
3208
|
-
color:
|
|
2800
|
+
color: var(--color-grey-500);
|
|
3209
2801
|
}
|
|
3210
2802
|
._2Fah6 {
|
|
3211
2803
|
cursor: pointer;
|
|
3212
2804
|
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.05);
|
|
3213
2805
|
transition: all ease-in-out 150ms;
|
|
2806
|
+
font: inherit;
|
|
2807
|
+
text-align: inherit;
|
|
3214
2808
|
}
|
|
3215
2809
|
._2Fah6:not(._SGno0):hover {
|
|
3216
2810
|
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
3217
|
-
background-color:
|
|
2811
|
+
background-color: var(--color-grey-100);
|
|
3218
2812
|
}
|
|
3219
2813
|
._2Fah6:focus {
|
|
3220
|
-
box-shadow: 0 0 8px
|
|
2814
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
3221
2815
|
outline: none;
|
|
3222
2816
|
}
|
|
3223
2817
|
._1zqRN {
|
|
3224
|
-
border-color:
|
|
3225
|
-
box-shadow: 0 0 8px
|
|
2818
|
+
border-color: var(--color-eggplant-400);
|
|
2819
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
3226
2820
|
}
|
|
3227
2821
|
._3Hwms {
|
|
3228
2822
|
min-height: 56px;
|
|
@@ -3232,14 +2826,4 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
3232
2826
|
z-index: 1;
|
|
3233
2827
|
right: 8px;
|
|
3234
2828
|
top: 8px;
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
|
-
button {
|
|
3238
|
-
background: none;
|
|
3239
|
-
color: inherit;
|
|
3240
|
-
border: none;
|
|
3241
|
-
padding: 0;
|
|
3242
|
-
font: inherit;
|
|
3243
|
-
cursor: pointer;
|
|
3244
|
-
text-align: inherit;
|
|
3245
2829
|
}
|