@7shifts/sous-chef 2.15.5 → 2.15.7
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/forms/Label/domain.d.ts +1 -0
- package/dist/forms/Label/useLabelTooltip.d.ts +7 -0
- package/dist/forms/SelectField/SelectField.d.ts +1 -0
- package/dist/forms/SelectField/useSelectField.d.ts +1 -1
- package/dist/index.css +842 -815
- package/dist/index.js +2549 -2493
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2559 -2503
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -51,6 +51,10 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
51
51
|
margin: 0;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
._umc73 {
|
|
55
|
+
min-width: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
54
58
|
._kf0KG {
|
|
55
59
|
align-items: center;
|
|
56
60
|
}
|
|
@@ -809,6 +813,8 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
809
813
|
width: 40px;
|
|
810
814
|
padding: 16px;
|
|
811
815
|
box-sizing: content-box;
|
|
816
|
+
flex-flow: row nowrap;
|
|
817
|
+
justify-content: flex-end;
|
|
812
818
|
}
|
|
813
819
|
/*********************************
|
|
814
820
|
For new colours, see _colors.scss.
|
|
@@ -862,6 +868,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
862
868
|
min-height: 16px;
|
|
863
869
|
}
|
|
864
870
|
|
|
871
|
+
._fu5zH {
|
|
872
|
+
overflow: hidden;
|
|
873
|
+
white-space: nowrap;
|
|
874
|
+
text-overflow: ellipsis;
|
|
875
|
+
}
|
|
876
|
+
|
|
865
877
|
/**
|
|
866
878
|
This component is built with acessibility in mind.
|
|
867
879
|
The `<input type="checkbox" />` is not removed from screen or changed its `apparence`. It would mess up with the `outline`.
|
|
@@ -1064,16 +1076,62 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
1064
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.
|
|
1065
1077
|
Please ask a designer if you have questions about which colours to use.
|
|
1066
1078
|
*/
|
|
1067
|
-
.
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1079
|
+
._2puqJ {
|
|
1080
|
+
position: fixed;
|
|
1081
|
+
top: 0px;
|
|
1082
|
+
bottom: 0px;
|
|
1083
|
+
left: 0px;
|
|
1084
|
+
right: 0px;
|
|
1085
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
1086
|
+
display: flex;
|
|
1087
|
+
align-items: center;
|
|
1088
|
+
flex-direction: column;
|
|
1089
|
+
}
|
|
1090
|
+
._2puqJ::after {
|
|
1091
|
+
width: 100%;
|
|
1092
|
+
flex-basis: 20px;
|
|
1093
|
+
flex-shrink: 0;
|
|
1094
|
+
content: "";
|
|
1095
|
+
}
|
|
1096
|
+
._2puqJ::before {
|
|
1097
|
+
width: 100%;
|
|
1098
|
+
min-height: 20px;
|
|
1099
|
+
max-height: 80px;
|
|
1100
|
+
flex: 1;
|
|
1101
|
+
content: "";
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
._1167h {
|
|
1105
|
+
opacity: 1;
|
|
1106
|
+
transform: translateX(0);
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
._t_t7L {
|
|
1110
|
+
opacity: 0;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
._wQQ_2 {
|
|
1114
|
+
position: initial;
|
|
1115
|
+
border: 1px solid #C8C8C8;
|
|
1116
|
+
background: #fff;
|
|
1117
|
+
overflow: auto;
|
|
1118
|
+
outline: none;
|
|
1119
|
+
padding: 32px;
|
|
1120
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
|
1121
|
+
min-height: 200px;
|
|
1122
|
+
display: flex;
|
|
1123
|
+
flex-direction: column;
|
|
1124
|
+
}
|
|
1125
|
+
._wQQ_2 > form {
|
|
1126
|
+
display: contents;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
._3jwux {
|
|
1130
|
+
opacity: 1;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
._2c2QP {
|
|
1134
|
+
opacity: 0;
|
|
1077
1135
|
}
|
|
1078
1136
|
/*********************************
|
|
1079
1137
|
For new colours, see _colors.scss.
|
|
@@ -1086,11 +1144,19 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
1086
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.
|
|
1087
1145
|
Please ask a designer if you have questions about which colours to use.
|
|
1088
1146
|
*/
|
|
1089
|
-
.
|
|
1147
|
+
._36nxW {
|
|
1148
|
+
font-size: 24px;
|
|
1149
|
+
line-height: 28px;
|
|
1090
1150
|
color: #464646;
|
|
1151
|
+
font-weight: 600;
|
|
1152
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
._2XwRD {
|
|
1156
|
+
font-size: 20px;
|
|
1157
|
+
line-height: 24px;
|
|
1158
|
+
color: #767676;
|
|
1091
1159
|
font-family: "Proxima Nova", sans-serif;
|
|
1092
|
-
font-weight: 400;
|
|
1093
|
-
font-size: 12px;
|
|
1094
1160
|
}
|
|
1095
1161
|
/*********************************
|
|
1096
1162
|
For new colours, see _colors.scss.
|
|
@@ -1103,11 +1169,39 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
1103
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.
|
|
1104
1170
|
Please ask a designer if you have questions about which colours to use.
|
|
1105
1171
|
*/
|
|
1106
|
-
|
|
1107
|
-
|
|
1172
|
+
/**
|
|
1173
|
+
* This is for adding a shadow when the body is scrollable.
|
|
1174
|
+
* It is using ::before and ::after to accomplish that => https://www.kizu.ru/shadowscroll/
|
|
1175
|
+
* There is a cleaner solution using background-attachment (https://lea.verou.me/2012/04/background-attachment-local/) but I had some issues in Chrome using that approach
|
|
1176
|
+
*/
|
|
1177
|
+
._2J-ku {
|
|
1178
|
+
overflow: auto;
|
|
1179
|
+
margin-top: 24px;
|
|
1108
1180
|
font-family: "Proxima Nova", sans-serif;
|
|
1109
|
-
font-
|
|
1110
|
-
|
|
1181
|
+
font-size: 14px;
|
|
1182
|
+
line-height: 16px;
|
|
1183
|
+
position: relative;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
._2ErCP {
|
|
1187
|
+
z-index: 1;
|
|
1188
|
+
background: #fff no-repeat;
|
|
1189
|
+
background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
|
|
1190
|
+
background-position: 0 0, 0 100%;
|
|
1191
|
+
background-size: 100% 14px;
|
|
1192
|
+
}
|
|
1193
|
+
._2ErCP::before, ._2ErCP::after {
|
|
1194
|
+
content: "";
|
|
1195
|
+
position: relative;
|
|
1196
|
+
z-index: -1;
|
|
1197
|
+
display: block;
|
|
1198
|
+
height: 30px;
|
|
1199
|
+
margin: 0 0 -30px;
|
|
1200
|
+
background: linear-gradient(to bottom, #fff, #fff 30%, rgba(255, 255, 255, 0));
|
|
1201
|
+
}
|
|
1202
|
+
._2ErCP::after {
|
|
1203
|
+
margin: -30px 0 0;
|
|
1204
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
|
|
1111
1205
|
}
|
|
1112
1206
|
/*********************************
|
|
1113
1207
|
For new colours, see _colors.scss.
|
|
@@ -1120,65 +1214,16 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
1120
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.
|
|
1121
1215
|
Please ask a designer if you have questions about which colours to use.
|
|
1122
1216
|
*/
|
|
1123
|
-
.
|
|
1124
|
-
position: relative;
|
|
1125
|
-
display: flex;
|
|
1217
|
+
._LKOr5 {
|
|
1126
1218
|
flex: 1;
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
._2COk3 input {
|
|
1130
|
-
padding-left: 21px;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
|
-
._1xXXN input {
|
|
1134
|
-
padding-right: 21px;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
._eX5OL {
|
|
1138
|
-
position: absolute;
|
|
1139
|
-
line-height: 22px;
|
|
1140
|
-
padding: 8px;
|
|
1141
|
-
color: #464646;
|
|
1142
|
-
min-width: 8px;
|
|
1143
|
-
pointer-events: none;
|
|
1144
|
-
font-size: 14px;
|
|
1145
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1146
|
-
box-sizing: content-box;
|
|
1147
1219
|
display: flex;
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
top:
|
|
1151
|
-
bottom: 0;
|
|
1152
|
-
margin-top: auto;
|
|
1153
|
-
margin-bottom: auto;
|
|
1154
|
-
text-align: left;
|
|
1155
|
-
}
|
|
1156
|
-
._eX5OL svg {
|
|
1157
|
-
color: #767676;
|
|
1220
|
+
flex-direction: column;
|
|
1221
|
+
justify-content: flex-end;
|
|
1222
|
+
padding-top: 40px;
|
|
1158
1223
|
}
|
|
1159
1224
|
|
|
1160
|
-
.
|
|
1161
|
-
|
|
1162
|
-
line-height: 22px;
|
|
1163
|
-
padding: 8px;
|
|
1164
|
-
color: #464646;
|
|
1165
|
-
min-width: 8px;
|
|
1166
|
-
pointer-events: none;
|
|
1167
|
-
font-size: 14px;
|
|
1168
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1169
|
-
box-sizing: content-box;
|
|
1170
|
-
display: flex;
|
|
1171
|
-
align-items: center;
|
|
1172
|
-
height: 22px;
|
|
1173
|
-
top: 0;
|
|
1174
|
-
bottom: 0;
|
|
1175
|
-
margin-top: auto;
|
|
1176
|
-
margin-bottom: auto;
|
|
1177
|
-
right: 0;
|
|
1178
|
-
text-align: right;
|
|
1179
|
-
}
|
|
1180
|
-
.__YH01 svg {
|
|
1181
|
-
color: #767676;
|
|
1225
|
+
._Qktd- {
|
|
1226
|
+
margin-left: -12px;
|
|
1182
1227
|
}
|
|
1183
1228
|
/*********************************
|
|
1184
1229
|
For new colours, see _colors.scss.
|
|
@@ -1191,76 +1236,688 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
1191
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.
|
|
1192
1237
|
Please ask a designer if you have questions about which colours to use.
|
|
1193
1238
|
*/
|
|
1194
|
-
.
|
|
1195
|
-
|
|
1196
|
-
}
|
|
1197
|
-
._kIngZ input {
|
|
1198
|
-
border: 1px solid transparent;
|
|
1239
|
+
._v1b-5 {
|
|
1240
|
+
flex: 1;
|
|
1199
1241
|
display: flex;
|
|
1200
|
-
justify-content: flex-end;
|
|
1201
|
-
background: transparent;
|
|
1202
|
-
padding: 16px;
|
|
1203
|
-
width: 100%;
|
|
1204
|
-
font-size: 14px;
|
|
1205
1242
|
font-family: "Proxima Nova", sans-serif;
|
|
1206
|
-
border-radius: 0;
|
|
1207
|
-
}
|
|
1208
|
-
._kIngZ input:focus {
|
|
1209
|
-
border-color: #6d87dd;
|
|
1210
|
-
box-shadow: 0 0 8px #a7b7ea;
|
|
1211
|
-
outline: none;
|
|
1212
|
-
}
|
|
1213
|
-
._kIngZ input:hover {
|
|
1214
|
-
background: #F3F3F3;
|
|
1215
|
-
}
|
|
1216
|
-
._3_QIj {
|
|
1217
|
-
text-align: right;
|
|
1218
|
-
}
|
|
1219
|
-
._2Kyuc {
|
|
1220
|
-
/* Firefox */
|
|
1221
|
-
}
|
|
1222
|
-
._2Kyuc input::-webkit-outer-spin-button,
|
|
1223
|
-
._2Kyuc input::-webkit-inner-spin-button {
|
|
1224
|
-
-webkit-appearance: none;
|
|
1225
|
-
margin: 0;
|
|
1226
|
-
}
|
|
1227
|
-
._2Kyuc input[type=number] {
|
|
1228
|
-
-moz-appearance: textfield;
|
|
1229
1243
|
}
|
|
1230
1244
|
|
|
1231
|
-
.
|
|
1232
|
-
|
|
1245
|
+
._3mrLu {
|
|
1246
|
+
position: relative;
|
|
1247
|
+
flex-direction: row;
|
|
1248
|
+
padding-bottom: 1em;
|
|
1249
|
+
-webkit-user-select: none;
|
|
1250
|
+
-moz-user-select: none;
|
|
1251
|
+
-ms-user-select: none;
|
|
1252
|
+
user-select: none;
|
|
1233
1253
|
}
|
|
1234
1254
|
|
|
1235
|
-
.
|
|
1236
|
-
|
|
1255
|
+
._1J9dh ._8FcQE {
|
|
1256
|
+
cursor: default;
|
|
1237
1257
|
}
|
|
1238
1258
|
|
|
1239
|
-
.
|
|
1240
|
-
|
|
1259
|
+
._1SPuq,
|
|
1260
|
+
._24FJ6 {
|
|
1261
|
+
font-family: inherit;
|
|
1241
1262
|
}
|
|
1242
1263
|
|
|
1243
|
-
.
|
|
1244
|
-
|
|
1264
|
+
._Oxdm9 {
|
|
1265
|
+
display: none;
|
|
1266
|
+
visibility: hidden;
|
|
1245
1267
|
}
|
|
1246
1268
|
|
|
1247
|
-
.
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
.
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1269
|
+
._20uqc {
|
|
1270
|
+
position: absolute;
|
|
1271
|
+
top: 1em;
|
|
1272
|
+
right: 1.5em;
|
|
1273
|
+
left: auto;
|
|
1274
|
+
display: inline-block;
|
|
1275
|
+
margin-top: 2px;
|
|
1276
|
+
color: #949494;
|
|
1277
|
+
cursor: pointer;
|
|
1278
|
+
background-image: none;
|
|
1279
|
+
width: 0;
|
|
1280
|
+
height: 0;
|
|
1281
|
+
border-top: 7px solid transparent;
|
|
1282
|
+
border-bottom: 7px solid transparent;
|
|
1283
|
+
border-right: 10px solid #464646;
|
|
1284
|
+
margin-right: 1.5em;
|
|
1285
|
+
}
|
|
1286
|
+
._20uqc:hover {
|
|
1287
|
+
opacity: 0.8;
|
|
1288
|
+
}
|
|
1289
|
+
._20uqc:hover {
|
|
1290
|
+
border-right-color: #767676;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
._3C53z {
|
|
1294
|
+
position: absolute;
|
|
1295
|
+
top: 1em;
|
|
1296
|
+
right: 1.5em;
|
|
1297
|
+
left: auto;
|
|
1298
|
+
display: inline-block;
|
|
1299
|
+
margin-top: 2px;
|
|
1300
|
+
color: #949494;
|
|
1301
|
+
cursor: pointer;
|
|
1302
|
+
background-image: none;
|
|
1303
|
+
width: 0;
|
|
1304
|
+
height: 0;
|
|
1305
|
+
border-top: 7px solid transparent;
|
|
1306
|
+
border-bottom: 7px solid transparent;
|
|
1307
|
+
border-left: 10px solid #464646;
|
|
1308
|
+
}
|
|
1309
|
+
._3C53z:hover {
|
|
1310
|
+
opacity: 0.8;
|
|
1311
|
+
}
|
|
1312
|
+
._3C53z:hover {
|
|
1313
|
+
opacity: 0.8;
|
|
1314
|
+
border-left-color: #767676;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
._M_eHz {
|
|
1318
|
+
display: flex;
|
|
1319
|
+
flex-wrap: wrap;
|
|
1320
|
+
justify-content: center;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
._3RPpJ {
|
|
1324
|
+
display: table;
|
|
1325
|
+
margin: 0 1em;
|
|
1326
|
+
margin-top: 1em;
|
|
1327
|
+
border-spacing: 0;
|
|
1328
|
+
border-collapse: collapse;
|
|
1329
|
+
-webkit-user-select: none;
|
|
1330
|
+
-moz-user-select: none;
|
|
1331
|
+
-ms-user-select: none;
|
|
1332
|
+
user-select: none;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
._1FXNw {
|
|
1336
|
+
display: table-caption;
|
|
1337
|
+
margin-bottom: 0.5em;
|
|
1338
|
+
padding: 0 0.5em;
|
|
1339
|
+
text-align: left;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
._1FXNw > div {
|
|
1343
|
+
font-weight: 600;
|
|
1344
|
+
font-size: 20px;
|
|
1345
|
+
color: #464646;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
._3KcRU {
|
|
1349
|
+
display: table-header-group;
|
|
1350
|
+
margin-top: 1em;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
._1fO_e {
|
|
1354
|
+
display: table-row;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
._c1Y-X {
|
|
1358
|
+
display: table-cell;
|
|
1359
|
+
padding: 0.5em;
|
|
1360
|
+
color: #767676;
|
|
1361
|
+
text-align: center;
|
|
1362
|
+
font-size: 0.875em;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
._c1Y-X abbr[title] {
|
|
1366
|
+
border-bottom: none;
|
|
1367
|
+
text-decoration: none;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
._34mA1 {
|
|
1371
|
+
display: table-row-group;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
._1PmqZ {
|
|
1375
|
+
display: table-row;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
._1AWH2 {
|
|
1379
|
+
display: table-cell;
|
|
1380
|
+
padding: 0.5em;
|
|
1381
|
+
border-radius: 50%;
|
|
1382
|
+
vertical-align: middle;
|
|
1383
|
+
text-align: center;
|
|
1384
|
+
cursor: pointer;
|
|
1385
|
+
}
|
|
1386
|
+
._1AWH2:not(._1J9dh):not(._3vJkw):not(._1DR0N):not(._276GV):hover {
|
|
1387
|
+
background: #F3F3F3;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
._2M5xr {
|
|
1391
|
+
padding-top: 0.5em;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
._3N6fj {
|
|
1395
|
+
color: #fb7448;
|
|
1396
|
+
font-weight: 700;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
._1DR0N:not(._3vJkw):not(._276GV) {
|
|
1400
|
+
background-color: #fdd5c8;
|
|
1401
|
+
color: #fb7448;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
._1DR0N:not(._3vJkw):not(._276GV):hover {
|
|
1405
|
+
background-color: #fb7448;
|
|
1406
|
+
color: #fff;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
._1DR0N._3N6fj:hover {
|
|
1410
|
+
color: #fff;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
._3vJkw {
|
|
1414
|
+
color: #C8C8C8;
|
|
1415
|
+
cursor: default;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
._276GV:not(._3vJkw) {
|
|
1419
|
+
color: #949494;
|
|
1420
|
+
cursor: default;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
._3Zqgu {
|
|
1424
|
+
position: relative;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
._20Ncd {
|
|
1428
|
+
position: absolute;
|
|
1429
|
+
left: 0;
|
|
1430
|
+
z-index: 1;
|
|
1431
|
+
background: #fff;
|
|
1432
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
._2hb-S {
|
|
1436
|
+
display: table-cell;
|
|
1437
|
+
padding: 0.5em;
|
|
1438
|
+
min-width: 1em;
|
|
1439
|
+
border-right: 1px solid #C8C8C8;
|
|
1440
|
+
color: #949494;
|
|
1441
|
+
vertical-align: middle;
|
|
1442
|
+
text-align: right;
|
|
1443
|
+
font-size: 0.75em;
|
|
1444
|
+
cursor: pointer;
|
|
1445
|
+
}
|
|
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
|
+
._okDvi {
|
|
1458
|
+
flex: 1;
|
|
1459
|
+
display: flex;
|
|
1460
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
._17XdD {
|
|
1464
|
+
position: relative;
|
|
1465
|
+
flex-direction: row;
|
|
1466
|
+
padding-bottom: 1em;
|
|
1467
|
+
-webkit-user-select: none;
|
|
1468
|
+
-moz-user-select: none;
|
|
1469
|
+
-ms-user-select: none;
|
|
1470
|
+
user-select: none;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
._1O7OT ._3noGA {
|
|
1474
|
+
cursor: default;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
._1Hl3Q,
|
|
1478
|
+
._m0Vs9 {
|
|
1479
|
+
font-family: inherit;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
._1ULWH {
|
|
1483
|
+
display: none;
|
|
1484
|
+
visibility: hidden;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
._3gjq8 {
|
|
1488
|
+
position: absolute;
|
|
1489
|
+
top: 1em;
|
|
1490
|
+
right: 1.5em;
|
|
1491
|
+
left: auto;
|
|
1492
|
+
display: inline-block;
|
|
1493
|
+
margin-top: 2px;
|
|
1494
|
+
color: #949494;
|
|
1495
|
+
cursor: pointer;
|
|
1496
|
+
background-image: none;
|
|
1497
|
+
width: 0;
|
|
1498
|
+
height: 0;
|
|
1499
|
+
border-top: 7px solid transparent;
|
|
1500
|
+
border-bottom: 7px solid transparent;
|
|
1501
|
+
border-right: 10px solid #464646;
|
|
1502
|
+
margin-right: 1.5em;
|
|
1503
|
+
}
|
|
1504
|
+
._3gjq8:hover {
|
|
1505
|
+
opacity: 0.8;
|
|
1506
|
+
}
|
|
1507
|
+
._3gjq8:hover {
|
|
1508
|
+
border-right-color: #767676;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
._1m-Kd {
|
|
1512
|
+
position: absolute;
|
|
1513
|
+
top: 1em;
|
|
1514
|
+
right: 1.5em;
|
|
1515
|
+
left: auto;
|
|
1516
|
+
display: inline-block;
|
|
1517
|
+
margin-top: 2px;
|
|
1518
|
+
color: #949494;
|
|
1519
|
+
cursor: pointer;
|
|
1520
|
+
background-image: none;
|
|
1521
|
+
width: 0;
|
|
1522
|
+
height: 0;
|
|
1523
|
+
border-top: 7px solid transparent;
|
|
1524
|
+
border-bottom: 7px solid transparent;
|
|
1525
|
+
border-left: 10px solid #464646;
|
|
1526
|
+
}
|
|
1527
|
+
._1m-Kd:hover {
|
|
1528
|
+
opacity: 0.8;
|
|
1529
|
+
}
|
|
1530
|
+
._1m-Kd:hover {
|
|
1531
|
+
opacity: 0.8;
|
|
1532
|
+
border-left-color: #767676;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
._Fq6Xh {
|
|
1536
|
+
display: flex;
|
|
1537
|
+
flex-wrap: wrap;
|
|
1538
|
+
justify-content: center;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
._3i0Oo {
|
|
1542
|
+
display: table;
|
|
1543
|
+
margin: 0 1em;
|
|
1544
|
+
margin-top: 1em;
|
|
1545
|
+
border-spacing: 0;
|
|
1546
|
+
border-collapse: collapse;
|
|
1547
|
+
-webkit-user-select: none;
|
|
1548
|
+
-moz-user-select: none;
|
|
1549
|
+
-ms-user-select: none;
|
|
1550
|
+
user-select: none;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
._36X9Y {
|
|
1554
|
+
display: table-caption;
|
|
1555
|
+
margin-bottom: 0.5em;
|
|
1556
|
+
padding: 0 0.5em;
|
|
1557
|
+
text-align: left;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
._36X9Y > div {
|
|
1561
|
+
font-weight: 600;
|
|
1562
|
+
font-size: 20px;
|
|
1563
|
+
color: #464646;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
._1aWPn {
|
|
1567
|
+
display: table-header-group;
|
|
1568
|
+
margin-top: 1em;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
._3HXCK {
|
|
1572
|
+
display: table-row;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
._t-ctd {
|
|
1576
|
+
display: table-cell;
|
|
1577
|
+
padding: 0.5em;
|
|
1578
|
+
color: #767676;
|
|
1579
|
+
text-align: center;
|
|
1580
|
+
font-size: 0.875em;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
._t-ctd abbr[title] {
|
|
1584
|
+
border-bottom: none;
|
|
1585
|
+
text-decoration: none;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
._XAbiR {
|
|
1589
|
+
display: table-row-group;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
._3Nwep {
|
|
1593
|
+
display: table-row;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
._3nNcG {
|
|
1597
|
+
display: table-cell;
|
|
1598
|
+
padding: 0.5em;
|
|
1599
|
+
border-radius: 50%;
|
|
1600
|
+
vertical-align: middle;
|
|
1601
|
+
text-align: center;
|
|
1602
|
+
cursor: pointer;
|
|
1603
|
+
}
|
|
1604
|
+
._3nNcG:not(._1O7OT):not(._1M4ZF):not(._2PEs8):not(._1PIJa):hover {
|
|
1605
|
+
background: #F3F3F3;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
._2T_z1 {
|
|
1609
|
+
padding-top: 0.5em;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
._1hVM6 {
|
|
1613
|
+
color: #fb7448;
|
|
1614
|
+
font-weight: 700;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
._2PEs8:not(._1M4ZF):not(._1PIJa) {
|
|
1618
|
+
background-color: #fdd5c8;
|
|
1619
|
+
color: #fb7448;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
._2PEs8:not(._1M4ZF):not(._1PIJa):hover {
|
|
1623
|
+
background-color: #fb7448;
|
|
1624
|
+
color: #fff;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
._2PEs8._1hVM6:hover {
|
|
1628
|
+
color: #fff;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
._1M4ZF {
|
|
1632
|
+
color: #C8C8C8;
|
|
1633
|
+
cursor: default;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
._1PIJa:not(._1M4ZF) {
|
|
1637
|
+
color: #949494;
|
|
1638
|
+
cursor: default;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
._1L-hI {
|
|
1642
|
+
position: relative;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
._dDPZb {
|
|
1646
|
+
position: absolute;
|
|
1647
|
+
left: 0;
|
|
1648
|
+
z-index: 1;
|
|
1649
|
+
background: #fff;
|
|
1650
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
._1alhT {
|
|
1654
|
+
display: table-cell;
|
|
1655
|
+
padding: 0.5em;
|
|
1656
|
+
min-width: 1em;
|
|
1657
|
+
border-right: 1px solid #C8C8C8;
|
|
1658
|
+
color: #949494;
|
|
1659
|
+
vertical-align: middle;
|
|
1660
|
+
text-align: right;
|
|
1661
|
+
font-size: 0.75em;
|
|
1662
|
+
cursor: pointer;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
._3i0Oo {
|
|
1666
|
+
border-collapse: separate;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
._1alhT {
|
|
1670
|
+
outline: none;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
._3nNcG {
|
|
1674
|
+
outline: none;
|
|
1675
|
+
border: 1px solid transparent;
|
|
1676
|
+
border-radius: 0;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
._2PEs8:not(._1M4ZF) {
|
|
1680
|
+
background-color: #fdd5c8;
|
|
1681
|
+
color: #fb7448;
|
|
1682
|
+
}
|
|
1683
|
+
._2PEs8:first-of-type {
|
|
1684
|
+
border-top-left-radius: 50%;
|
|
1685
|
+
border-bottom-left-radius: 50%;
|
|
1686
|
+
}
|
|
1687
|
+
._2PEs8:last-of-type {
|
|
1688
|
+
border-top-right-radius: 50%;
|
|
1689
|
+
border-bottom-right-radius: 50%;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
._3Nwep:hover {
|
|
1693
|
+
background: #F3F3F3;
|
|
1694
|
+
}
|
|
1695
|
+
._3Nwep:hover ._2PEs8:not(._1M4ZF) {
|
|
1696
|
+
background-color: #fb7448;
|
|
1697
|
+
color: #fff;
|
|
1698
|
+
}
|
|
1699
|
+
._3Nwep:hover ._3nNcG:first-of-type {
|
|
1700
|
+
border-top-left-radius: 50%;
|
|
1701
|
+
border-bottom-left-radius: 50%;
|
|
1702
|
+
}
|
|
1703
|
+
._3Nwep:hover ._3nNcG:last-of-type {
|
|
1704
|
+
border-top-right-radius: 50%;
|
|
1705
|
+
border-bottom-right-radius: 50%;
|
|
1706
|
+
}
|
|
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
|
+
._h724f {
|
|
1719
|
+
line-height: normal;
|
|
1720
|
+
padding: 0;
|
|
1721
|
+
width: auto;
|
|
1722
|
+
float: none;
|
|
1723
|
+
color: #464646;
|
|
1724
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1725
|
+
font-weight: 600;
|
|
1726
|
+
font-size: 14px;
|
|
1727
|
+
min-height: 16px;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
._1VUoF {
|
|
1731
|
+
overflow: hidden;
|
|
1732
|
+
white-space: nowrap;
|
|
1733
|
+
text-overflow: ellipsis;
|
|
1734
|
+
}
|
|
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
|
+
._1DWBq {
|
|
1747
|
+
color: #464646;
|
|
1748
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1749
|
+
font-weight: 400;
|
|
1750
|
+
font-size: 12px;
|
|
1751
|
+
}
|
|
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
|
+
._nZ2MD {
|
|
1764
|
+
color: #e76767;
|
|
1765
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1766
|
+
font-weight: 400;
|
|
1767
|
+
font-size: 12px;
|
|
1768
|
+
}
|
|
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
|
+
._ybKOk {
|
|
1781
|
+
position: relative;
|
|
1782
|
+
display: flex;
|
|
1783
|
+
flex: 1;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
._2COk3 input {
|
|
1787
|
+
padding-left: 21px;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
._1xXXN input {
|
|
1791
|
+
padding-right: 21px;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
._eX5OL {
|
|
1795
|
+
position: absolute;
|
|
1796
|
+
line-height: 22px;
|
|
1797
|
+
padding: 8px;
|
|
1798
|
+
color: #464646;
|
|
1799
|
+
min-width: 8px;
|
|
1800
|
+
pointer-events: none;
|
|
1801
|
+
font-size: 14px;
|
|
1802
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1803
|
+
box-sizing: content-box;
|
|
1804
|
+
display: flex;
|
|
1805
|
+
align-items: center;
|
|
1806
|
+
height: 22px;
|
|
1807
|
+
top: 0;
|
|
1808
|
+
bottom: 0;
|
|
1809
|
+
margin-top: auto;
|
|
1810
|
+
margin-bottom: auto;
|
|
1811
|
+
text-align: left;
|
|
1812
|
+
}
|
|
1813
|
+
._eX5OL svg {
|
|
1814
|
+
color: #767676;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.__YH01 {
|
|
1818
|
+
position: absolute;
|
|
1819
|
+
line-height: 22px;
|
|
1820
|
+
padding: 8px;
|
|
1821
|
+
color: #464646;
|
|
1822
|
+
min-width: 8px;
|
|
1823
|
+
pointer-events: none;
|
|
1824
|
+
font-size: 14px;
|
|
1825
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1826
|
+
box-sizing: content-box;
|
|
1827
|
+
display: flex;
|
|
1828
|
+
align-items: center;
|
|
1829
|
+
height: 22px;
|
|
1830
|
+
top: 0;
|
|
1831
|
+
bottom: 0;
|
|
1832
|
+
margin-top: auto;
|
|
1833
|
+
margin-bottom: auto;
|
|
1834
|
+
right: 0;
|
|
1835
|
+
text-align: right;
|
|
1836
|
+
}
|
|
1837
|
+
.__YH01 svg {
|
|
1838
|
+
color: #767676;
|
|
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 {
|
|
1852
|
+
width: 100%;
|
|
1853
|
+
}
|
|
1854
|
+
._kIngZ input {
|
|
1855
|
+
border: 1px solid transparent;
|
|
1856
|
+
display: flex;
|
|
1857
|
+
justify-content: flex-end;
|
|
1858
|
+
background: transparent;
|
|
1859
|
+
padding: 16px;
|
|
1860
|
+
width: 100%;
|
|
1861
|
+
font-size: 14px;
|
|
1862
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1863
|
+
border-radius: 0;
|
|
1864
|
+
}
|
|
1865
|
+
._kIngZ input:focus {
|
|
1866
|
+
border-color: #6d87dd;
|
|
1867
|
+
box-shadow: 0 0 8px #a7b7ea;
|
|
1868
|
+
outline: none;
|
|
1869
|
+
}
|
|
1870
|
+
._kIngZ input:hover {
|
|
1871
|
+
background: #F3F3F3;
|
|
1872
|
+
}
|
|
1873
|
+
._3_QIj {
|
|
1874
|
+
text-align: right;
|
|
1875
|
+
}
|
|
1876
|
+
._2Kyuc {
|
|
1877
|
+
/* Firefox */
|
|
1878
|
+
}
|
|
1879
|
+
._2Kyuc input::-webkit-outer-spin-button,
|
|
1880
|
+
._2Kyuc input::-webkit-inner-spin-button {
|
|
1881
|
+
-webkit-appearance: none;
|
|
1882
|
+
margin: 0;
|
|
1883
|
+
}
|
|
1884
|
+
._2Kyuc input[type=number] {
|
|
1885
|
+
-moz-appearance: textfield;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
._y9SBQ._y9SBQ {
|
|
1889
|
+
border-color: #e76767;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
._32mWH._32mWH {
|
|
1893
|
+
border-top-left-radius: 8px;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
._3Jg2-._3Jg2- {
|
|
1897
|
+
border-top-right-radius: 8px;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
._1F5fj._1F5fj {
|
|
1901
|
+
border-bottom-left-radius: 8px;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
._1fTTW._1fTTW {
|
|
1905
|
+
border-bottom-right-radius: 8px;
|
|
1906
|
+
}
|
|
1907
|
+
._3CaV0 {
|
|
1908
|
+
max-width: 500px;
|
|
1909
|
+
}
|
|
1910
|
+
/*********************************
|
|
1911
|
+
For new colours, see _colors.scss.
|
|
1912
|
+
**********************************/
|
|
1913
|
+
/* stylelint-disable color-no-hex */
|
|
1914
|
+
/*
|
|
1915
|
+
These are the colour variables to be used around the webapp.
|
|
1916
|
+
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1917
|
+
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1918
|
+
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1919
|
+
Please ask a designer if you have questions about which colours to use.
|
|
1920
|
+
*/
|
|
1264
1921
|
._BkzdC {
|
|
1265
1922
|
border-radius: 4px;
|
|
1266
1923
|
padding: 7px;
|
|
@@ -1526,6 +2183,12 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1526
2183
|
min-height: 16px;
|
|
1527
2184
|
}
|
|
1528
2185
|
|
|
2186
|
+
._mQ9Rd {
|
|
2187
|
+
overflow: hidden;
|
|
2188
|
+
white-space: nowrap;
|
|
2189
|
+
text-overflow: ellipsis;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
1529
2192
|
._RXyG_ {
|
|
1530
2193
|
line-height: normal;
|
|
1531
2194
|
padding: 0;
|
|
@@ -1771,227 +2434,9 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
1771
2434
|
}
|
|
1772
2435
|
|
|
1773
2436
|
._1Sc9D {
|
|
1774
|
-
padding-top: 8px;
|
|
1775
|
-
padding-bottom: 6px;
|
|
1776
|
-
width: 100%;
|
|
1777
|
-
}
|
|
1778
|
-
/*********************************
|
|
1779
|
-
For new colours, see _colors.scss.
|
|
1780
|
-
**********************************/
|
|
1781
|
-
/* stylelint-disable color-no-hex */
|
|
1782
|
-
/*
|
|
1783
|
-
These are the colour variables to be used around the webapp.
|
|
1784
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
1785
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
1786
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
1787
|
-
Please ask a designer if you have questions about which colours to use.
|
|
1788
|
-
*/
|
|
1789
|
-
._v1b-5 {
|
|
1790
|
-
flex: 1;
|
|
1791
|
-
display: flex;
|
|
1792
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
._3mrLu {
|
|
1796
|
-
position: relative;
|
|
1797
|
-
flex-direction: row;
|
|
1798
|
-
padding-bottom: 1em;
|
|
1799
|
-
-webkit-user-select: none;
|
|
1800
|
-
-moz-user-select: none;
|
|
1801
|
-
-ms-user-select: none;
|
|
1802
|
-
user-select: none;
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
._1J9dh ._8FcQE {
|
|
1806
|
-
cursor: default;
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
|
-
._1SPuq,
|
|
1810
|
-
._24FJ6 {
|
|
1811
|
-
font-family: inherit;
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
._Oxdm9 {
|
|
1815
|
-
display: none;
|
|
1816
|
-
visibility: hidden;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
._20uqc {
|
|
1820
|
-
position: absolute;
|
|
1821
|
-
top: 1em;
|
|
1822
|
-
right: 1.5em;
|
|
1823
|
-
left: auto;
|
|
1824
|
-
display: inline-block;
|
|
1825
|
-
margin-top: 2px;
|
|
1826
|
-
color: #949494;
|
|
1827
|
-
cursor: pointer;
|
|
1828
|
-
background-image: none;
|
|
1829
|
-
width: 0;
|
|
1830
|
-
height: 0;
|
|
1831
|
-
border-top: 7px solid transparent;
|
|
1832
|
-
border-bottom: 7px solid transparent;
|
|
1833
|
-
border-right: 10px solid #464646;
|
|
1834
|
-
margin-right: 1.5em;
|
|
1835
|
-
}
|
|
1836
|
-
._20uqc:hover {
|
|
1837
|
-
opacity: 0.8;
|
|
1838
|
-
}
|
|
1839
|
-
._20uqc:hover {
|
|
1840
|
-
border-right-color: #767676;
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
._3C53z {
|
|
1844
|
-
position: absolute;
|
|
1845
|
-
top: 1em;
|
|
1846
|
-
right: 1.5em;
|
|
1847
|
-
left: auto;
|
|
1848
|
-
display: inline-block;
|
|
1849
|
-
margin-top: 2px;
|
|
1850
|
-
color: #949494;
|
|
1851
|
-
cursor: pointer;
|
|
1852
|
-
background-image: none;
|
|
1853
|
-
width: 0;
|
|
1854
|
-
height: 0;
|
|
1855
|
-
border-top: 7px solid transparent;
|
|
1856
|
-
border-bottom: 7px solid transparent;
|
|
1857
|
-
border-left: 10px solid #464646;
|
|
1858
|
-
}
|
|
1859
|
-
._3C53z:hover {
|
|
1860
|
-
opacity: 0.8;
|
|
1861
|
-
}
|
|
1862
|
-
._3C53z:hover {
|
|
1863
|
-
opacity: 0.8;
|
|
1864
|
-
border-left-color: #767676;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
._M_eHz {
|
|
1868
|
-
display: flex;
|
|
1869
|
-
flex-wrap: wrap;
|
|
1870
|
-
justify-content: center;
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
|
-
._3RPpJ {
|
|
1874
|
-
display: table;
|
|
1875
|
-
margin: 0 1em;
|
|
1876
|
-
margin-top: 1em;
|
|
1877
|
-
border-spacing: 0;
|
|
1878
|
-
border-collapse: collapse;
|
|
1879
|
-
-webkit-user-select: none;
|
|
1880
|
-
-moz-user-select: none;
|
|
1881
|
-
-ms-user-select: none;
|
|
1882
|
-
user-select: none;
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
._1FXNw {
|
|
1886
|
-
display: table-caption;
|
|
1887
|
-
margin-bottom: 0.5em;
|
|
1888
|
-
padding: 0 0.5em;
|
|
1889
|
-
text-align: left;
|
|
1890
|
-
}
|
|
1891
|
-
|
|
1892
|
-
._1FXNw > div {
|
|
1893
|
-
font-weight: 600;
|
|
1894
|
-
font-size: 20px;
|
|
1895
|
-
color: #464646;
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
._3KcRU {
|
|
1899
|
-
display: table-header-group;
|
|
1900
|
-
margin-top: 1em;
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
._1fO_e {
|
|
1904
|
-
display: table-row;
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
._c1Y-X {
|
|
1908
|
-
display: table-cell;
|
|
1909
|
-
padding: 0.5em;
|
|
1910
|
-
color: #767676;
|
|
1911
|
-
text-align: center;
|
|
1912
|
-
font-size: 0.875em;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
._c1Y-X abbr[title] {
|
|
1916
|
-
border-bottom: none;
|
|
1917
|
-
text-decoration: none;
|
|
1918
|
-
}
|
|
1919
|
-
|
|
1920
|
-
._34mA1 {
|
|
1921
|
-
display: table-row-group;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
._1PmqZ {
|
|
1925
|
-
display: table-row;
|
|
1926
|
-
}
|
|
1927
|
-
|
|
1928
|
-
._1AWH2 {
|
|
1929
|
-
display: table-cell;
|
|
1930
|
-
padding: 0.5em;
|
|
1931
|
-
border-radius: 50%;
|
|
1932
|
-
vertical-align: middle;
|
|
1933
|
-
text-align: center;
|
|
1934
|
-
cursor: pointer;
|
|
1935
|
-
}
|
|
1936
|
-
._1AWH2:not(._1J9dh):not(._3vJkw):not(._1DR0N):not(._276GV):hover {
|
|
1937
|
-
background: #F3F3F3;
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
._2M5xr {
|
|
1941
|
-
padding-top: 0.5em;
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
._3N6fj {
|
|
1945
|
-
color: #fb7448;
|
|
1946
|
-
font-weight: 700;
|
|
1947
|
-
}
|
|
1948
|
-
|
|
1949
|
-
._1DR0N:not(._3vJkw):not(._276GV) {
|
|
1950
|
-
background-color: #fdd5c8;
|
|
1951
|
-
color: #fb7448;
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
._1DR0N:not(._3vJkw):not(._276GV):hover {
|
|
1955
|
-
background-color: #fb7448;
|
|
1956
|
-
color: #fff;
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
._1DR0N._3N6fj:hover {
|
|
1960
|
-
color: #fff;
|
|
1961
|
-
}
|
|
1962
|
-
|
|
1963
|
-
._3vJkw {
|
|
1964
|
-
color: #C8C8C8;
|
|
1965
|
-
cursor: default;
|
|
1966
|
-
}
|
|
1967
|
-
|
|
1968
|
-
._276GV:not(._3vJkw) {
|
|
1969
|
-
color: #949494;
|
|
1970
|
-
cursor: default;
|
|
1971
|
-
}
|
|
1972
|
-
|
|
1973
|
-
._3Zqgu {
|
|
1974
|
-
position: relative;
|
|
1975
|
-
}
|
|
1976
|
-
|
|
1977
|
-
._20Ncd {
|
|
1978
|
-
position: absolute;
|
|
1979
|
-
left: 0;
|
|
1980
|
-
z-index: 1;
|
|
1981
|
-
background: #fff;
|
|
1982
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
1983
|
-
}
|
|
1984
|
-
|
|
1985
|
-
._2hb-S {
|
|
1986
|
-
display: table-cell;
|
|
1987
|
-
padding: 0.5em;
|
|
1988
|
-
min-width: 1em;
|
|
1989
|
-
border-right: 1px solid #C8C8C8;
|
|
1990
|
-
color: #949494;
|
|
1991
|
-
vertical-align: middle;
|
|
1992
|
-
text-align: right;
|
|
1993
|
-
font-size: 0.75em;
|
|
1994
|
-
cursor: pointer;
|
|
2437
|
+
padding-top: 8px;
|
|
2438
|
+
padding-bottom: 6px;
|
|
2439
|
+
width: 100%;
|
|
1995
2440
|
}
|
|
1996
2441
|
/*********************************
|
|
1997
2442
|
For new colours, see _colors.scss.
|
|
@@ -2242,346 +2687,85 @@ Please ask a designer if you have questions about which colours to use.
|
|
|
2242
2687
|
outline: none;
|
|
2243
2688
|
}
|
|
2244
2689
|
._25rf7:disabled, ._3qVhi input:disabled, ._3qVhi:disabled {
|
|
2245
|
-
background-color: #F3F3F3;
|
|
2246
|
-
color: #767676;
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
._2M9Ud {
|
|
2250
|
-
border-color: #e76767 !important;
|
|
2251
|
-
}
|
|
2252
|
-
|
|
2253
|
-
._3TUb2 {
|
|
2254
|
-
border-left: 0 !important;
|
|
2255
|
-
border-top-left-radius: 0 !important;
|
|
2256
|
-
border-bottom-left-radius: 0 !important;
|
|
2257
|
-
color: #767676;
|
|
2258
|
-
}
|
|
2259
|
-
|
|
2260
|
-
._foqL0 {
|
|
2261
|
-
border-right: 0 !important;
|
|
2262
|
-
border-top-right-radius: 0 !important;
|
|
2263
|
-
border-bottom-right-radius: 0 !important;
|
|
2264
|
-
}
|
|
2265
|
-
|
|
2266
|
-
._3qVhi {
|
|
2267
|
-
padding-bottom: 0px;
|
|
2268
|
-
padding-top: 0px;
|
|
2269
|
-
display: flex;
|
|
2270
|
-
align-items: center;
|
|
2271
|
-
}
|
|
2272
|
-
._3df9R {
|
|
2273
|
-
border-color: #e76767 !important;
|
|
2274
|
-
}
|
|
2275
|
-
._2Nkht {
|
|
2276
|
-
background-color: #F3F3F3;
|
|
2277
|
-
}
|
|
2278
|
-
._3qVhi input {
|
|
2279
|
-
border: none;
|
|
2280
|
-
min-width: 20px;
|
|
2281
|
-
width: 20px;
|
|
2282
|
-
flex: 1;
|
|
2283
|
-
}
|
|
2284
|
-
._3qVhi input:focus {
|
|
2285
|
-
border: none;
|
|
2286
|
-
box-shadow: inset 0 -2px 0 #fb7448;
|
|
2287
|
-
outline: none;
|
|
2288
|
-
border-radius: 0;
|
|
2289
|
-
border-top-right-radius: 4px;
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
._wU6A4 {
|
|
2293
|
-
border-collapse: separate;
|
|
2294
|
-
}
|
|
2295
|
-
|
|
2296
|
-
._3u72O {
|
|
2297
|
-
outline: none;
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
._mG73F {
|
|
2301
|
-
outline: none;
|
|
2302
|
-
border: 1px solid transparent;
|
|
2303
|
-
border-radius: 0;
|
|
2304
|
-
}
|
|
2305
|
-
|
|
2306
|
-
._mG73F._MtLaz.from {
|
|
2307
|
-
background-color: #fb7448;
|
|
2308
|
-
color: #fff;
|
|
2309
|
-
border-top-left-radius: 50%;
|
|
2310
|
-
border-bottom-left-radius: 50%;
|
|
2311
|
-
}
|
|
2312
|
-
|
|
2313
|
-
._mG73F._MtLaz.to {
|
|
2314
|
-
background-color: #fb7448;
|
|
2315
|
-
color: #fff;
|
|
2316
|
-
border-top-right-radius: 50%;
|
|
2317
|
-
border-bottom-right-radius: 50%;
|
|
2318
|
-
}
|
|
2319
|
-
|
|
2320
|
-
._MtLaz:not(._2pgnH) {
|
|
2321
|
-
background-color: #fdd5c8;
|
|
2322
|
-
color: #fb7448;
|
|
2323
|
-
}
|
|
2324
|
-
/*********************************
|
|
2325
|
-
For new colours, see _colors.scss.
|
|
2326
|
-
**********************************/
|
|
2327
|
-
/* stylelint-disable color-no-hex */
|
|
2328
|
-
/*
|
|
2329
|
-
These are the colour variables to be used around the webapp.
|
|
2330
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2331
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2332
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2333
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2334
|
-
*/
|
|
2335
|
-
._okDvi {
|
|
2336
|
-
flex: 1;
|
|
2337
|
-
display: flex;
|
|
2338
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2339
|
-
}
|
|
2340
|
-
|
|
2341
|
-
._17XdD {
|
|
2342
|
-
position: relative;
|
|
2343
|
-
flex-direction: row;
|
|
2344
|
-
padding-bottom: 1em;
|
|
2345
|
-
-webkit-user-select: none;
|
|
2346
|
-
-moz-user-select: none;
|
|
2347
|
-
-ms-user-select: none;
|
|
2348
|
-
user-select: none;
|
|
2349
|
-
}
|
|
2350
|
-
|
|
2351
|
-
._1O7OT ._3noGA {
|
|
2352
|
-
cursor: default;
|
|
2353
|
-
}
|
|
2354
|
-
|
|
2355
|
-
._1Hl3Q,
|
|
2356
|
-
._m0Vs9 {
|
|
2357
|
-
font-family: inherit;
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
._1ULWH {
|
|
2361
|
-
display: none;
|
|
2362
|
-
visibility: hidden;
|
|
2363
|
-
}
|
|
2364
|
-
|
|
2365
|
-
._3gjq8 {
|
|
2366
|
-
position: absolute;
|
|
2367
|
-
top: 1em;
|
|
2368
|
-
right: 1.5em;
|
|
2369
|
-
left: auto;
|
|
2370
|
-
display: inline-block;
|
|
2371
|
-
margin-top: 2px;
|
|
2372
|
-
color: #949494;
|
|
2373
|
-
cursor: pointer;
|
|
2374
|
-
background-image: none;
|
|
2375
|
-
width: 0;
|
|
2376
|
-
height: 0;
|
|
2377
|
-
border-top: 7px solid transparent;
|
|
2378
|
-
border-bottom: 7px solid transparent;
|
|
2379
|
-
border-right: 10px solid #464646;
|
|
2380
|
-
margin-right: 1.5em;
|
|
2381
|
-
}
|
|
2382
|
-
._3gjq8:hover {
|
|
2383
|
-
opacity: 0.8;
|
|
2384
|
-
}
|
|
2385
|
-
._3gjq8:hover {
|
|
2386
|
-
border-right-color: #767676;
|
|
2387
|
-
}
|
|
2388
|
-
|
|
2389
|
-
._1m-Kd {
|
|
2390
|
-
position: absolute;
|
|
2391
|
-
top: 1em;
|
|
2392
|
-
right: 1.5em;
|
|
2393
|
-
left: auto;
|
|
2394
|
-
display: inline-block;
|
|
2395
|
-
margin-top: 2px;
|
|
2396
|
-
color: #949494;
|
|
2397
|
-
cursor: pointer;
|
|
2398
|
-
background-image: none;
|
|
2399
|
-
width: 0;
|
|
2400
|
-
height: 0;
|
|
2401
|
-
border-top: 7px solid transparent;
|
|
2402
|
-
border-bottom: 7px solid transparent;
|
|
2403
|
-
border-left: 10px solid #464646;
|
|
2404
|
-
}
|
|
2405
|
-
._1m-Kd:hover {
|
|
2406
|
-
opacity: 0.8;
|
|
2407
|
-
}
|
|
2408
|
-
._1m-Kd:hover {
|
|
2409
|
-
opacity: 0.8;
|
|
2410
|
-
border-left-color: #767676;
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
._Fq6Xh {
|
|
2414
|
-
display: flex;
|
|
2415
|
-
flex-wrap: wrap;
|
|
2416
|
-
justify-content: center;
|
|
2417
|
-
}
|
|
2418
|
-
|
|
2419
|
-
._3i0Oo {
|
|
2420
|
-
display: table;
|
|
2421
|
-
margin: 0 1em;
|
|
2422
|
-
margin-top: 1em;
|
|
2423
|
-
border-spacing: 0;
|
|
2424
|
-
border-collapse: collapse;
|
|
2425
|
-
-webkit-user-select: none;
|
|
2426
|
-
-moz-user-select: none;
|
|
2427
|
-
-ms-user-select: none;
|
|
2428
|
-
user-select: none;
|
|
2429
|
-
}
|
|
2430
|
-
|
|
2431
|
-
._36X9Y {
|
|
2432
|
-
display: table-caption;
|
|
2433
|
-
margin-bottom: 0.5em;
|
|
2434
|
-
padding: 0 0.5em;
|
|
2435
|
-
text-align: left;
|
|
2436
|
-
}
|
|
2437
|
-
|
|
2438
|
-
._36X9Y > div {
|
|
2439
|
-
font-weight: 600;
|
|
2440
|
-
font-size: 20px;
|
|
2441
|
-
color: #464646;
|
|
2442
|
-
}
|
|
2443
|
-
|
|
2444
|
-
._1aWPn {
|
|
2445
|
-
display: table-header-group;
|
|
2446
|
-
margin-top: 1em;
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
._3HXCK {
|
|
2450
|
-
display: table-row;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
._t-ctd {
|
|
2454
|
-
display: table-cell;
|
|
2455
|
-
padding: 0.5em;
|
|
2456
|
-
color: #767676;
|
|
2457
|
-
text-align: center;
|
|
2458
|
-
font-size: 0.875em;
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
._t-ctd abbr[title] {
|
|
2462
|
-
border-bottom: none;
|
|
2463
|
-
text-decoration: none;
|
|
2464
|
-
}
|
|
2465
|
-
|
|
2466
|
-
._XAbiR {
|
|
2467
|
-
display: table-row-group;
|
|
2468
|
-
}
|
|
2469
|
-
|
|
2470
|
-
._3Nwep {
|
|
2471
|
-
display: table-row;
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
._3nNcG {
|
|
2475
|
-
display: table-cell;
|
|
2476
|
-
padding: 0.5em;
|
|
2477
|
-
border-radius: 50%;
|
|
2478
|
-
vertical-align: middle;
|
|
2479
|
-
text-align: center;
|
|
2480
|
-
cursor: pointer;
|
|
2481
|
-
}
|
|
2482
|
-
._3nNcG:not(._1O7OT):not(._1M4ZF):not(._2PEs8):not(._1PIJa):hover {
|
|
2483
|
-
background: #F3F3F3;
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
._2T_z1 {
|
|
2487
|
-
padding-top: 0.5em;
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
._1hVM6 {
|
|
2491
|
-
color: #fb7448;
|
|
2492
|
-
font-weight: 700;
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
._2PEs8:not(._1M4ZF):not(._1PIJa) {
|
|
2496
|
-
background-color: #fdd5c8;
|
|
2497
|
-
color: #fb7448;
|
|
2690
|
+
background-color: #F3F3F3;
|
|
2691
|
+
color: #767676;
|
|
2498
2692
|
}
|
|
2499
2693
|
|
|
2500
|
-
.
|
|
2501
|
-
|
|
2502
|
-
color: #fff;
|
|
2694
|
+
._2M9Ud {
|
|
2695
|
+
border-color: #e76767 !important;
|
|
2503
2696
|
}
|
|
2504
2697
|
|
|
2505
|
-
.
|
|
2506
|
-
|
|
2698
|
+
._3TUb2 {
|
|
2699
|
+
border-left: 0 !important;
|
|
2700
|
+
border-top-left-radius: 0 !important;
|
|
2701
|
+
border-bottom-left-radius: 0 !important;
|
|
2702
|
+
color: #767676;
|
|
2507
2703
|
}
|
|
2508
2704
|
|
|
2509
|
-
.
|
|
2510
|
-
|
|
2511
|
-
|
|
2705
|
+
._foqL0 {
|
|
2706
|
+
border-right: 0 !important;
|
|
2707
|
+
border-top-right-radius: 0 !important;
|
|
2708
|
+
border-bottom-right-radius: 0 !important;
|
|
2512
2709
|
}
|
|
2513
2710
|
|
|
2514
|
-
.
|
|
2515
|
-
|
|
2516
|
-
|
|
2711
|
+
._3qVhi {
|
|
2712
|
+
padding-bottom: 0px;
|
|
2713
|
+
padding-top: 0px;
|
|
2714
|
+
display: flex;
|
|
2715
|
+
align-items: center;
|
|
2517
2716
|
}
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
position: relative;
|
|
2717
|
+
._3df9R {
|
|
2718
|
+
border-color: #e76767 !important;
|
|
2521
2719
|
}
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
position: absolute;
|
|
2525
|
-
left: 0;
|
|
2526
|
-
z-index: 1;
|
|
2527
|
-
background: #fff;
|
|
2528
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
|
|
2720
|
+
._2Nkht {
|
|
2721
|
+
background-color: #F3F3F3;
|
|
2529
2722
|
}
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2723
|
+
._3qVhi input {
|
|
2724
|
+
border: none;
|
|
2725
|
+
min-width: 20px;
|
|
2726
|
+
width: 20px;
|
|
2727
|
+
flex: 1;
|
|
2728
|
+
}
|
|
2729
|
+
._3qVhi input:focus {
|
|
2730
|
+
border: none;
|
|
2731
|
+
box-shadow: inset 0 -2px 0 #fb7448;
|
|
2732
|
+
outline: none;
|
|
2733
|
+
border-radius: 0;
|
|
2734
|
+
border-top-right-radius: 4px;
|
|
2541
2735
|
}
|
|
2542
2736
|
|
|
2543
|
-
.
|
|
2737
|
+
._wU6A4 {
|
|
2544
2738
|
border-collapse: separate;
|
|
2545
2739
|
}
|
|
2546
2740
|
|
|
2547
|
-
.
|
|
2741
|
+
._3u72O {
|
|
2548
2742
|
outline: none;
|
|
2549
2743
|
}
|
|
2550
2744
|
|
|
2551
|
-
.
|
|
2745
|
+
._mG73F {
|
|
2552
2746
|
outline: none;
|
|
2553
2747
|
border: 1px solid transparent;
|
|
2554
2748
|
border-radius: 0;
|
|
2555
2749
|
}
|
|
2556
2750
|
|
|
2557
|
-
.
|
|
2558
|
-
background-color: #
|
|
2559
|
-
color: #
|
|
2560
|
-
}
|
|
2561
|
-
._2PEs8:first-of-type {
|
|
2751
|
+
._mG73F._MtLaz.from {
|
|
2752
|
+
background-color: #fb7448;
|
|
2753
|
+
color: #fff;
|
|
2562
2754
|
border-top-left-radius: 50%;
|
|
2563
2755
|
border-bottom-left-radius: 50%;
|
|
2564
2756
|
}
|
|
2565
|
-
._2PEs8:last-of-type {
|
|
2566
|
-
border-top-right-radius: 50%;
|
|
2567
|
-
border-bottom-right-radius: 50%;
|
|
2568
|
-
}
|
|
2569
2757
|
|
|
2570
|
-
.
|
|
2571
|
-
background: #F3F3F3;
|
|
2572
|
-
}
|
|
2573
|
-
._3Nwep:hover ._2PEs8:not(._1M4ZF) {
|
|
2758
|
+
._mG73F._MtLaz.to {
|
|
2574
2759
|
background-color: #fb7448;
|
|
2575
2760
|
color: #fff;
|
|
2576
|
-
}
|
|
2577
|
-
._3Nwep:hover ._3nNcG:first-of-type {
|
|
2578
|
-
border-top-left-radius: 50%;
|
|
2579
|
-
border-bottom-left-radius: 50%;
|
|
2580
|
-
}
|
|
2581
|
-
._3Nwep:hover ._3nNcG:last-of-type {
|
|
2582
2761
|
border-top-right-radius: 50%;
|
|
2583
2762
|
border-bottom-right-radius: 50%;
|
|
2584
2763
|
}
|
|
2764
|
+
|
|
2765
|
+
._MtLaz:not(._2pgnH) {
|
|
2766
|
+
background-color: #fdd5c8;
|
|
2767
|
+
color: #fb7448;
|
|
2768
|
+
}
|
|
2585
2769
|
/*********************************
|
|
2586
2770
|
For new colours, see _colors.scss.
|
|
2587
2771
|
**********************************/
|
|
@@ -2708,163 +2892,6 @@ The smaller the number the lighter the color. So $eggplant-100 would be light pu
|
|
|
2708
2892
|
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2709
2893
|
Please ask a designer if you have questions about which colours to use.
|
|
2710
2894
|
*/
|
|
2711
|
-
._2puqJ {
|
|
2712
|
-
position: fixed;
|
|
2713
|
-
inset: 0px;
|
|
2714
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
2715
|
-
display: flex;
|
|
2716
|
-
align-items: center;
|
|
2717
|
-
flex-direction: column;
|
|
2718
|
-
}
|
|
2719
|
-
._2puqJ::after {
|
|
2720
|
-
width: 100%;
|
|
2721
|
-
flex-basis: 20px;
|
|
2722
|
-
flex-shrink: 0;
|
|
2723
|
-
content: "";
|
|
2724
|
-
}
|
|
2725
|
-
._2puqJ::before {
|
|
2726
|
-
width: 100%;
|
|
2727
|
-
min-height: 20px;
|
|
2728
|
-
max-height: 80px;
|
|
2729
|
-
flex: 1;
|
|
2730
|
-
content: "";
|
|
2731
|
-
}
|
|
2732
|
-
|
|
2733
|
-
._1167h {
|
|
2734
|
-
opacity: 1;
|
|
2735
|
-
transform: translateX(0);
|
|
2736
|
-
}
|
|
2737
|
-
|
|
2738
|
-
._t_t7L {
|
|
2739
|
-
opacity: 0;
|
|
2740
|
-
}
|
|
2741
|
-
|
|
2742
|
-
._wQQ_2 {
|
|
2743
|
-
position: initial;
|
|
2744
|
-
border: 1px solid #C8C8C8;
|
|
2745
|
-
background: #fff;
|
|
2746
|
-
overflow: auto;
|
|
2747
|
-
outline: none;
|
|
2748
|
-
padding: 32px;
|
|
2749
|
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
|
2750
|
-
min-height: 200px;
|
|
2751
|
-
display: flex;
|
|
2752
|
-
flex-direction: column;
|
|
2753
|
-
}
|
|
2754
|
-
._wQQ_2 > form {
|
|
2755
|
-
display: contents;
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
|
-
._3jwux {
|
|
2759
|
-
opacity: 1;
|
|
2760
|
-
}
|
|
2761
|
-
|
|
2762
|
-
._2c2QP {
|
|
2763
|
-
opacity: 0;
|
|
2764
|
-
}
|
|
2765
|
-
/*********************************
|
|
2766
|
-
For new colours, see _colors.scss.
|
|
2767
|
-
**********************************/
|
|
2768
|
-
/* stylelint-disable color-no-hex */
|
|
2769
|
-
/*
|
|
2770
|
-
These are the colour variables to be used around the webapp.
|
|
2771
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2772
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2773
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2774
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2775
|
-
*/
|
|
2776
|
-
._36nxW {
|
|
2777
|
-
font-size: 24px;
|
|
2778
|
-
line-height: 28px;
|
|
2779
|
-
color: #464646;
|
|
2780
|
-
font-weight: 600;
|
|
2781
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2782
|
-
}
|
|
2783
|
-
|
|
2784
|
-
._2XwRD {
|
|
2785
|
-
font-size: 20px;
|
|
2786
|
-
line-height: 24px;
|
|
2787
|
-
color: #767676;
|
|
2788
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2789
|
-
}
|
|
2790
|
-
/*********************************
|
|
2791
|
-
For new colours, see _colors.scss.
|
|
2792
|
-
**********************************/
|
|
2793
|
-
/* stylelint-disable color-no-hex */
|
|
2794
|
-
/*
|
|
2795
|
-
These are the colour variables to be used around the webapp.
|
|
2796
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2797
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2798
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2799
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2800
|
-
*/
|
|
2801
|
-
/**
|
|
2802
|
-
* This is for adding a shadow when the body is scrollable.
|
|
2803
|
-
* It is using ::before and ::after to accomplish that => https://www.kizu.ru/shadowscroll/
|
|
2804
|
-
* There is a cleaner solution using background-attachment (https://lea.verou.me/2012/04/background-attachment-local/) but I had some issues in Chrome using that approach
|
|
2805
|
-
*/
|
|
2806
|
-
._2J-ku {
|
|
2807
|
-
overflow: auto;
|
|
2808
|
-
margin-top: 24px;
|
|
2809
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2810
|
-
font-size: 14px;
|
|
2811
|
-
line-height: 16px;
|
|
2812
|
-
position: relative;
|
|
2813
|
-
}
|
|
2814
|
-
|
|
2815
|
-
._2ErCP {
|
|
2816
|
-
z-index: 1;
|
|
2817
|
-
background: #fff no-repeat;
|
|
2818
|
-
background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
|
|
2819
|
-
background-position: 0 0, 0 100%;
|
|
2820
|
-
background-size: 100% 14px;
|
|
2821
|
-
}
|
|
2822
|
-
._2ErCP::before, ._2ErCP::after {
|
|
2823
|
-
content: "";
|
|
2824
|
-
position: relative;
|
|
2825
|
-
z-index: -1;
|
|
2826
|
-
display: block;
|
|
2827
|
-
height: 30px;
|
|
2828
|
-
margin: 0 0 -30px;
|
|
2829
|
-
background: linear-gradient(to bottom, #fff, #fff 30%, rgba(255, 255, 255, 0));
|
|
2830
|
-
}
|
|
2831
|
-
._2ErCP::after {
|
|
2832
|
-
margin: -30px 0 0;
|
|
2833
|
-
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
|
|
2834
|
-
}
|
|
2835
|
-
/*********************************
|
|
2836
|
-
For new colours, see _colors.scss.
|
|
2837
|
-
**********************************/
|
|
2838
|
-
/* stylelint-disable color-no-hex */
|
|
2839
|
-
/*
|
|
2840
|
-
These are the colour variables to be used around the webapp.
|
|
2841
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2842
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2843
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2844
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2845
|
-
*/
|
|
2846
|
-
._LKOr5 {
|
|
2847
|
-
flex: 1;
|
|
2848
|
-
display: flex;
|
|
2849
|
-
flex-direction: column;
|
|
2850
|
-
justify-content: flex-end;
|
|
2851
|
-
padding-top: 40px;
|
|
2852
|
-
}
|
|
2853
|
-
|
|
2854
|
-
._Qktd- {
|
|
2855
|
-
margin-left: -12px;
|
|
2856
|
-
}
|
|
2857
|
-
/*********************************
|
|
2858
|
-
For new colours, see _colors.scss.
|
|
2859
|
-
**********************************/
|
|
2860
|
-
/* stylelint-disable color-no-hex */
|
|
2861
|
-
/*
|
|
2862
|
-
These are the colour variables to be used around the webapp.
|
|
2863
|
-
The variables are set up to describe the color and number which represents the lightness of the color.
|
|
2864
|
-
The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
|
|
2865
|
-
The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
|
|
2866
|
-
Please ask a designer if you have questions about which colours to use.
|
|
2867
|
-
*/
|
|
2868
2895
|
._2f81N {
|
|
2869
2896
|
display: inline-flex;
|
|
2870
2897
|
background-color: #fb7448;
|