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