@qrsln/lootstrap 22.3.2-beta.0 → 22.3.24-beta.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/css/lootstrap.css +576 -242
- package/dist/css/lootstrap.css.map +1 -1
- package/dist/css/lootstrap.min.css +3 -3
- package/package.json +4 -5
- package/scss/Architecture/Components/_card.scss +61 -9
- package/scss/Architecture/Components/_loader.scss +33 -38
- package/scss/Architecture/Components/_nav.scss +41 -1
- package/scss/Architecture/Components/_rating.scss +19 -84
- package/scss/Architecture/Components/_scrollbar.scss +1 -1
- package/scss/Architecture/Components/_square.scss +2 -1
- package/scss/Architecture/Components/_timeline.scss +36 -81
- package/scss/Architecture/Components/_timer.scss +15 -55
- package/scss/Architecture/Roots/_avatar.scss +24 -10
- package/scss/Architecture/Roots/_shape.scss +9 -9
- package/scss/Architecture/Utils/_border.scss +12 -12
- package/scss/Architecture/Utils/_utilities.scss +1 -1
- package/scss/_header.scss +2 -2
package/dist/css/lootstrap.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* CSS Compiled on: 2022-03-
|
|
3
|
+
* CSS Compiled on: 2022-03-24
|
|
4
4
|
*
|
|
5
|
-
* Lootstrap v22.3.
|
|
5
|
+
* Lootstrap v22.3.24-beta.0 (https://github.com/krsln/Lootstrap/)
|
|
6
6
|
* Copyright 2022 Qrsln.
|
|
7
7
|
* Licensed under MIT (https://github.com/krsln/Lootstrap/blob/master/LICENSE)
|
|
8
8
|
*/
|
|
@@ -1002,11 +1002,18 @@ progress {
|
|
|
1002
1002
|
}
|
|
1003
1003
|
.Avatar svg mask rect[fill=white],
|
|
1004
1004
|
.Avatar-group svg mask rect[fill=white] {
|
|
1005
|
-
width:
|
|
1006
|
-
height:
|
|
1005
|
+
width: 85%;
|
|
1006
|
+
height: 85%;
|
|
1007
1007
|
cy: 18;
|
|
1008
|
-
x:
|
|
1009
|
-
y:
|
|
1008
|
+
x: 7.5%;
|
|
1009
|
+
y: 7.5%;
|
|
1010
|
+
rx: 0;
|
|
1011
|
+
ry: 0
|
|
1012
|
+
}
|
|
1013
|
+
.Avatar svg mask rect[fill=white].Round,
|
|
1014
|
+
.Avatar-group svg mask rect[fill=white].Round {
|
|
1015
|
+
rx: 8;
|
|
1016
|
+
ry: 8
|
|
1010
1017
|
}
|
|
1011
1018
|
.Avatar svg g image,
|
|
1012
1019
|
.Avatar-group svg g image {
|
|
@@ -1038,11 +1045,18 @@ progress {
|
|
|
1038
1045
|
}
|
|
1039
1046
|
.Avatar svg g rect,
|
|
1040
1047
|
.Avatar-group svg g rect {
|
|
1041
|
-
width:
|
|
1042
|
-
height:
|
|
1048
|
+
width: 85%;
|
|
1049
|
+
height: 85%;
|
|
1043
1050
|
cy: 18;
|
|
1044
|
-
x:
|
|
1045
|
-
y:
|
|
1051
|
+
x: 7.5%;
|
|
1052
|
+
y: 7.5%;
|
|
1053
|
+
rx: 0;
|
|
1054
|
+
ry: 0
|
|
1055
|
+
}
|
|
1056
|
+
.Avatar svg g rect.Round,
|
|
1057
|
+
.Avatar-group svg g rect.Round {
|
|
1058
|
+
rx: 8;
|
|
1059
|
+
ry: 8
|
|
1046
1060
|
}
|
|
1047
1061
|
.Avatar.Sign-bottom svg mask circle[fill=black] {
|
|
1048
1062
|
cx: 85%;
|
|
@@ -1180,7 +1194,7 @@ progress {
|
|
|
1180
1194
|
}
|
|
1181
1195
|
.Rect {
|
|
1182
1196
|
position: relative;
|
|
1183
|
-
display:
|
|
1197
|
+
display: flex;
|
|
1184
1198
|
flex: 1 0 auto
|
|
1185
1199
|
}
|
|
1186
1200
|
.Rect:before {
|
|
@@ -1191,7 +1205,7 @@ progress {
|
|
|
1191
1205
|
.Circle,
|
|
1192
1206
|
.Sqr {
|
|
1193
1207
|
position: relative;
|
|
1194
|
-
display:
|
|
1208
|
+
display: flex;
|
|
1195
1209
|
overflow: hidden;
|
|
1196
1210
|
width: 100%
|
|
1197
1211
|
}
|
|
@@ -1209,23 +1223,22 @@ progress {
|
|
|
1209
1223
|
margin: 0;
|
|
1210
1224
|
transform: rotate(45deg)
|
|
1211
1225
|
}
|
|
1212
|
-
.Diamond .Content
|
|
1226
|
+
.Diamond .Content,
|
|
1227
|
+
.Diamond .Square-inner {
|
|
1213
1228
|
transform: rotate(-45deg)
|
|
1214
1229
|
}
|
|
1215
1230
|
.Skew-20 {
|
|
1216
|
-
margin-left: 30px;
|
|
1217
|
-
margin-right: 30px;
|
|
1218
1231
|
transform: skew(20deg)
|
|
1219
1232
|
}
|
|
1220
|
-
.Skew-20 .Content
|
|
1233
|
+
.Skew-20 .Content,
|
|
1234
|
+
.Skew-20 .Square-inner {
|
|
1221
1235
|
transform: skew(-20deg)
|
|
1222
1236
|
}
|
|
1223
1237
|
.Skew-20n {
|
|
1224
|
-
margin-left: 30px;
|
|
1225
|
-
margin-right: 30px;
|
|
1226
1238
|
transform: skew(-20deg)
|
|
1227
1239
|
}
|
|
1228
|
-
.Skew-20n .Content
|
|
1240
|
+
.Skew-20n .Content,
|
|
1241
|
+
.Skew-20n .Square-inner {
|
|
1229
1242
|
transform: skew(20deg)
|
|
1230
1243
|
}
|
|
1231
1244
|
.Ph-line,
|
|
@@ -1258,7 +1271,7 @@ progress {
|
|
|
1258
1271
|
transform: scale(1,.6)
|
|
1259
1272
|
}
|
|
1260
1273
|
.Ph-paragraph .Ph-line:last-child {
|
|
1261
|
-
width:
|
|
1274
|
+
width: 51%
|
|
1262
1275
|
}
|
|
1263
1276
|
.Ph-paragraph .Ph-line:nth-child(1n) {
|
|
1264
1277
|
-webkit-animation-delay: .7s;
|
|
@@ -1376,16 +1389,16 @@ progress {
|
|
|
1376
1389
|
background-color: transparent
|
|
1377
1390
|
}
|
|
1378
1391
|
.Ph-textual:nth-child(1n) {
|
|
1379
|
-
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12)
|
|
1392
|
+
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12) 6%,transparent calc(6% + 1px),transparent calc(6% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(6% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 39%,transparent calc(39% + 1px),transparent calc(39% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(39% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 75%,transparent calc(75% + 1px),transparent calc(75% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(75% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 91%,transparent calc(91% + 1px),transparent calc(91% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(91% + 6px),hsla(var(--ls-bg-accent-hsl),.12))
|
|
1380
1393
|
}
|
|
1381
1394
|
.Ph-textual:nth-child(2n) {
|
|
1382
|
-
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12)
|
|
1395
|
+
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12) 8%,transparent calc(8% + 1px),transparent calc(8% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(8% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 78%,transparent calc(78% + 1px),transparent calc(78% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(78% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 86%,transparent calc(86% + 1px),transparent calc(86% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(86% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 89%,transparent calc(89% + 1px),transparent calc(89% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(89% + 6px),hsla(var(--ls-bg-accent-hsl),.12))
|
|
1383
1396
|
}
|
|
1384
1397
|
.Ph-textual:nth-child(3n) {
|
|
1385
|
-
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12)
|
|
1398
|
+
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12) 15%,transparent calc(15% + 1px),transparent calc(15% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(15% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 51%,transparent calc(51% + 1px),transparent calc(51% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(51% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 73%,transparent calc(73% + 1px),transparent calc(73% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(73% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 91%,transparent calc(91% + 1px),transparent calc(91% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(91% + 6px),hsla(var(--ls-bg-accent-hsl),.12))
|
|
1386
1399
|
}
|
|
1387
1400
|
.Ph-textual:nth-child(4n) {
|
|
1388
|
-
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12)
|
|
1401
|
+
background-image: linear-gradient(90deg,hsla(var(--ls-bg-accent-hsl),.12) 5%,transparent calc(5% + 1px),transparent calc(5% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(5% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 43%,transparent calc(43% + 1px),transparent calc(43% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(43% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 76%,transparent calc(76% + 1px),transparent calc(76% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(76% + 6px),hsla(var(--ls-bg-accent-hsl),.12) 84%,transparent calc(84% + 1px),transparent calc(84% + 6px),hsla(var(--ls-bg-accent-hsl),.12) calc(84% + 6px),hsla(var(--ls-bg-accent-hsl),.12))
|
|
1389
1402
|
}
|
|
1390
1403
|
.Ph-pulse {
|
|
1391
1404
|
-webkit-animation: Keyframe-Pulsate 1.5s ease-in-out .5s infinite;
|
|
@@ -1481,28 +1494,28 @@ progress {
|
|
|
1481
1494
|
.Border-0 {
|
|
1482
1495
|
border: 0!important
|
|
1483
1496
|
}
|
|
1484
|
-
.Border-
|
|
1497
|
+
.Border-top {
|
|
1485
1498
|
border-top: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))!important
|
|
1486
1499
|
}
|
|
1487
|
-
.Border-
|
|
1500
|
+
.Border-top-0 {
|
|
1488
1501
|
border-top: 0!important
|
|
1489
1502
|
}
|
|
1490
|
-
.Border-
|
|
1503
|
+
.Border-end {
|
|
1491
1504
|
border-right: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))!important
|
|
1492
1505
|
}
|
|
1493
|
-
.Border-
|
|
1506
|
+
.Border-end-0 {
|
|
1494
1507
|
border-right: 0!important
|
|
1495
1508
|
}
|
|
1496
|
-
.Border-
|
|
1509
|
+
.Border-bottom {
|
|
1497
1510
|
border-bottom: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))!important
|
|
1498
1511
|
}
|
|
1499
|
-
.Border-
|
|
1512
|
+
.Border-bottom-0 {
|
|
1500
1513
|
border-bottom: 0!important
|
|
1501
1514
|
}
|
|
1502
|
-
.Border-
|
|
1515
|
+
.Border-start {
|
|
1503
1516
|
border-left: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))!important
|
|
1504
1517
|
}
|
|
1505
|
-
.Border-
|
|
1518
|
+
.Border-start-0 {
|
|
1506
1519
|
border-left: 0!important
|
|
1507
1520
|
}
|
|
1508
1521
|
.Border-0 {
|
|
@@ -1535,35 +1548,35 @@ progress {
|
|
|
1535
1548
|
.Rounded-pill {
|
|
1536
1549
|
border-radius: 50rem!important
|
|
1537
1550
|
}
|
|
1538
|
-
.Rounded-
|
|
1551
|
+
.Rounded-top {
|
|
1539
1552
|
border-top-left-radius: var(--ls-border-radius,.25rem);
|
|
1540
1553
|
border-top-right-radius: var(--ls-border-radius,.25rem)
|
|
1541
1554
|
}
|
|
1542
|
-
.Rounded-
|
|
1555
|
+
.Rounded-top-0 {
|
|
1543
1556
|
border-top-left-radius: 0!important;
|
|
1544
1557
|
border-top-right-radius: 0!important
|
|
1545
1558
|
}
|
|
1546
|
-
.Rounded-
|
|
1559
|
+
.Rounded-end {
|
|
1547
1560
|
border-top-right-radius: var(--ls-border-radius,.25rem);
|
|
1548
1561
|
border-bottom-right-radius: var(--ls-border-radius,.25rem)
|
|
1549
1562
|
}
|
|
1550
|
-
.Rounded-
|
|
1563
|
+
.Rounded-end-0 {
|
|
1551
1564
|
border-top-right-radius: 0!important;
|
|
1552
1565
|
border-bottom-right-radius: 0!important
|
|
1553
1566
|
}
|
|
1554
|
-
.Rounded-
|
|
1567
|
+
.Rounded-bottom {
|
|
1555
1568
|
border-bottom-right-radius: var(--ls-border-radius,.25rem);
|
|
1556
1569
|
border-bottom-left-radius: var(--ls-border-radius,.25rem)
|
|
1557
1570
|
}
|
|
1558
|
-
.Rounded-
|
|
1571
|
+
.Rounded-bottom-0 {
|
|
1559
1572
|
border-bottom-right-radius: 0!important;
|
|
1560
1573
|
border-bottom-left-radius: 0!important
|
|
1561
1574
|
}
|
|
1562
|
-
.Rounded-
|
|
1575
|
+
.Rounded-start {
|
|
1563
1576
|
border-bottom-left-radius: var(--ls-border-radius,.25rem);
|
|
1564
1577
|
border-top-left-radius: var(--ls-border-radius,.25rem)
|
|
1565
1578
|
}
|
|
1566
|
-
.Rounded-
|
|
1579
|
+
.Rounded-start-0 {
|
|
1567
1580
|
border-bottom-left-radius: 0!important;
|
|
1568
1581
|
border-top-left-radius: 0!important
|
|
1569
1582
|
}
|
|
@@ -7242,6 +7255,361 @@ progress {
|
|
|
7242
7255
|
.W-auto {
|
|
7243
7256
|
width: auto!important
|
|
7244
7257
|
}
|
|
7258
|
+
@media (min-width:480px) {
|
|
7259
|
+
.W-sm-10 {
|
|
7260
|
+
width: 10%!important
|
|
7261
|
+
}
|
|
7262
|
+
.W-sm-20 {
|
|
7263
|
+
width: 20%!important
|
|
7264
|
+
}
|
|
7265
|
+
.W-sm-30 {
|
|
7266
|
+
width: 30%!important
|
|
7267
|
+
}
|
|
7268
|
+
.W-sm-40 {
|
|
7269
|
+
width: 40%!important
|
|
7270
|
+
}
|
|
7271
|
+
.W-sm-50 {
|
|
7272
|
+
width: 50%!important
|
|
7273
|
+
}
|
|
7274
|
+
.W-sm-60 {
|
|
7275
|
+
width: 60%!important
|
|
7276
|
+
}
|
|
7277
|
+
.W-sm-70 {
|
|
7278
|
+
width: 70%!important
|
|
7279
|
+
}
|
|
7280
|
+
.W-sm-80 {
|
|
7281
|
+
width: 80%!important
|
|
7282
|
+
}
|
|
7283
|
+
.W-sm-90 {
|
|
7284
|
+
width: 90%!important
|
|
7285
|
+
}
|
|
7286
|
+
.W-sm-100 {
|
|
7287
|
+
width: 100%!important
|
|
7288
|
+
}
|
|
7289
|
+
.W-sm-5 {
|
|
7290
|
+
width: 5%!important
|
|
7291
|
+
}
|
|
7292
|
+
.W-sm-15 {
|
|
7293
|
+
width: 15%!important
|
|
7294
|
+
}
|
|
7295
|
+
.W-sm-25 {
|
|
7296
|
+
width: 25%!important
|
|
7297
|
+
}
|
|
7298
|
+
.W-sm-35 {
|
|
7299
|
+
width: 35%!important
|
|
7300
|
+
}
|
|
7301
|
+
.W-sm-45 {
|
|
7302
|
+
width: 45%!important
|
|
7303
|
+
}
|
|
7304
|
+
.W-sm-55 {
|
|
7305
|
+
width: 55%!important
|
|
7306
|
+
}
|
|
7307
|
+
.W-sm-65 {
|
|
7308
|
+
width: 65%!important
|
|
7309
|
+
}
|
|
7310
|
+
.W-sm-75 {
|
|
7311
|
+
width: 75%!important
|
|
7312
|
+
}
|
|
7313
|
+
.W-sm-85 {
|
|
7314
|
+
width: 85%!important
|
|
7315
|
+
}
|
|
7316
|
+
.W-sm-95 {
|
|
7317
|
+
width: 95%!important
|
|
7318
|
+
}
|
|
7319
|
+
.W-sm-33 {
|
|
7320
|
+
width: 33.333%!important
|
|
7321
|
+
}
|
|
7322
|
+
.W-sm-66 {
|
|
7323
|
+
width: 66.666%!important
|
|
7324
|
+
}
|
|
7325
|
+
.W-sm-auto {
|
|
7326
|
+
width: auto!important
|
|
7327
|
+
}
|
|
7328
|
+
}
|
|
7329
|
+
@media (min-width:768px) {
|
|
7330
|
+
.W-md-10 {
|
|
7331
|
+
width: 10%!important
|
|
7332
|
+
}
|
|
7333
|
+
.W-md-20 {
|
|
7334
|
+
width: 20%!important
|
|
7335
|
+
}
|
|
7336
|
+
.W-md-30 {
|
|
7337
|
+
width: 30%!important
|
|
7338
|
+
}
|
|
7339
|
+
.W-md-40 {
|
|
7340
|
+
width: 40%!important
|
|
7341
|
+
}
|
|
7342
|
+
.W-md-50 {
|
|
7343
|
+
width: 50%!important
|
|
7344
|
+
}
|
|
7345
|
+
.W-md-60 {
|
|
7346
|
+
width: 60%!important
|
|
7347
|
+
}
|
|
7348
|
+
.W-md-70 {
|
|
7349
|
+
width: 70%!important
|
|
7350
|
+
}
|
|
7351
|
+
.W-md-80 {
|
|
7352
|
+
width: 80%!important
|
|
7353
|
+
}
|
|
7354
|
+
.W-md-90 {
|
|
7355
|
+
width: 90%!important
|
|
7356
|
+
}
|
|
7357
|
+
.W-md-100 {
|
|
7358
|
+
width: 100%!important
|
|
7359
|
+
}
|
|
7360
|
+
.W-md-5 {
|
|
7361
|
+
width: 5%!important
|
|
7362
|
+
}
|
|
7363
|
+
.W-md-15 {
|
|
7364
|
+
width: 15%!important
|
|
7365
|
+
}
|
|
7366
|
+
.W-md-25 {
|
|
7367
|
+
width: 25%!important
|
|
7368
|
+
}
|
|
7369
|
+
.W-md-35 {
|
|
7370
|
+
width: 35%!important
|
|
7371
|
+
}
|
|
7372
|
+
.W-md-45 {
|
|
7373
|
+
width: 45%!important
|
|
7374
|
+
}
|
|
7375
|
+
.W-md-55 {
|
|
7376
|
+
width: 55%!important
|
|
7377
|
+
}
|
|
7378
|
+
.W-md-65 {
|
|
7379
|
+
width: 65%!important
|
|
7380
|
+
}
|
|
7381
|
+
.W-md-75 {
|
|
7382
|
+
width: 75%!important
|
|
7383
|
+
}
|
|
7384
|
+
.W-md-85 {
|
|
7385
|
+
width: 85%!important
|
|
7386
|
+
}
|
|
7387
|
+
.W-md-95 {
|
|
7388
|
+
width: 95%!important
|
|
7389
|
+
}
|
|
7390
|
+
.W-md-33 {
|
|
7391
|
+
width: 33.333%!important
|
|
7392
|
+
}
|
|
7393
|
+
.W-md-66 {
|
|
7394
|
+
width: 66.666%!important
|
|
7395
|
+
}
|
|
7396
|
+
.W-md-auto {
|
|
7397
|
+
width: auto!important
|
|
7398
|
+
}
|
|
7399
|
+
}
|
|
7400
|
+
@media (min-width:1024px) {
|
|
7401
|
+
.W-lg-10 {
|
|
7402
|
+
width: 10%!important
|
|
7403
|
+
}
|
|
7404
|
+
.W-lg-20 {
|
|
7405
|
+
width: 20%!important
|
|
7406
|
+
}
|
|
7407
|
+
.W-lg-30 {
|
|
7408
|
+
width: 30%!important
|
|
7409
|
+
}
|
|
7410
|
+
.W-lg-40 {
|
|
7411
|
+
width: 40%!important
|
|
7412
|
+
}
|
|
7413
|
+
.W-lg-50 {
|
|
7414
|
+
width: 50%!important
|
|
7415
|
+
}
|
|
7416
|
+
.W-lg-60 {
|
|
7417
|
+
width: 60%!important
|
|
7418
|
+
}
|
|
7419
|
+
.W-lg-70 {
|
|
7420
|
+
width: 70%!important
|
|
7421
|
+
}
|
|
7422
|
+
.W-lg-80 {
|
|
7423
|
+
width: 80%!important
|
|
7424
|
+
}
|
|
7425
|
+
.W-lg-90 {
|
|
7426
|
+
width: 90%!important
|
|
7427
|
+
}
|
|
7428
|
+
.W-lg-100 {
|
|
7429
|
+
width: 100%!important
|
|
7430
|
+
}
|
|
7431
|
+
.W-lg-5 {
|
|
7432
|
+
width: 5%!important
|
|
7433
|
+
}
|
|
7434
|
+
.W-lg-15 {
|
|
7435
|
+
width: 15%!important
|
|
7436
|
+
}
|
|
7437
|
+
.W-lg-25 {
|
|
7438
|
+
width: 25%!important
|
|
7439
|
+
}
|
|
7440
|
+
.W-lg-35 {
|
|
7441
|
+
width: 35%!important
|
|
7442
|
+
}
|
|
7443
|
+
.W-lg-45 {
|
|
7444
|
+
width: 45%!important
|
|
7445
|
+
}
|
|
7446
|
+
.W-lg-55 {
|
|
7447
|
+
width: 55%!important
|
|
7448
|
+
}
|
|
7449
|
+
.W-lg-65 {
|
|
7450
|
+
width: 65%!important
|
|
7451
|
+
}
|
|
7452
|
+
.W-lg-75 {
|
|
7453
|
+
width: 75%!important
|
|
7454
|
+
}
|
|
7455
|
+
.W-lg-85 {
|
|
7456
|
+
width: 85%!important
|
|
7457
|
+
}
|
|
7458
|
+
.W-lg-95 {
|
|
7459
|
+
width: 95%!important
|
|
7460
|
+
}
|
|
7461
|
+
.W-lg-33 {
|
|
7462
|
+
width: 33.333%!important
|
|
7463
|
+
}
|
|
7464
|
+
.W-lg-66 {
|
|
7465
|
+
width: 66.666%!important
|
|
7466
|
+
}
|
|
7467
|
+
.W-lg-auto {
|
|
7468
|
+
width: auto!important
|
|
7469
|
+
}
|
|
7470
|
+
}
|
|
7471
|
+
@media (min-width:1280px) {
|
|
7472
|
+
.W-xl-10 {
|
|
7473
|
+
width: 10%!important
|
|
7474
|
+
}
|
|
7475
|
+
.W-xl-20 {
|
|
7476
|
+
width: 20%!important
|
|
7477
|
+
}
|
|
7478
|
+
.W-xl-30 {
|
|
7479
|
+
width: 30%!important
|
|
7480
|
+
}
|
|
7481
|
+
.W-xl-40 {
|
|
7482
|
+
width: 40%!important
|
|
7483
|
+
}
|
|
7484
|
+
.W-xl-50 {
|
|
7485
|
+
width: 50%!important
|
|
7486
|
+
}
|
|
7487
|
+
.W-xl-60 {
|
|
7488
|
+
width: 60%!important
|
|
7489
|
+
}
|
|
7490
|
+
.W-xl-70 {
|
|
7491
|
+
width: 70%!important
|
|
7492
|
+
}
|
|
7493
|
+
.W-xl-80 {
|
|
7494
|
+
width: 80%!important
|
|
7495
|
+
}
|
|
7496
|
+
.W-xl-90 {
|
|
7497
|
+
width: 90%!important
|
|
7498
|
+
}
|
|
7499
|
+
.W-xl-100 {
|
|
7500
|
+
width: 100%!important
|
|
7501
|
+
}
|
|
7502
|
+
.W-xl-5 {
|
|
7503
|
+
width: 5%!important
|
|
7504
|
+
}
|
|
7505
|
+
.W-xl-15 {
|
|
7506
|
+
width: 15%!important
|
|
7507
|
+
}
|
|
7508
|
+
.W-xl-25 {
|
|
7509
|
+
width: 25%!important
|
|
7510
|
+
}
|
|
7511
|
+
.W-xl-35 {
|
|
7512
|
+
width: 35%!important
|
|
7513
|
+
}
|
|
7514
|
+
.W-xl-45 {
|
|
7515
|
+
width: 45%!important
|
|
7516
|
+
}
|
|
7517
|
+
.W-xl-55 {
|
|
7518
|
+
width: 55%!important
|
|
7519
|
+
}
|
|
7520
|
+
.W-xl-65 {
|
|
7521
|
+
width: 65%!important
|
|
7522
|
+
}
|
|
7523
|
+
.W-xl-75 {
|
|
7524
|
+
width: 75%!important
|
|
7525
|
+
}
|
|
7526
|
+
.W-xl-85 {
|
|
7527
|
+
width: 85%!important
|
|
7528
|
+
}
|
|
7529
|
+
.W-xl-95 {
|
|
7530
|
+
width: 95%!important
|
|
7531
|
+
}
|
|
7532
|
+
.W-xl-33 {
|
|
7533
|
+
width: 33.333%!important
|
|
7534
|
+
}
|
|
7535
|
+
.W-xl-66 {
|
|
7536
|
+
width: 66.666%!important
|
|
7537
|
+
}
|
|
7538
|
+
.W-xl-auto {
|
|
7539
|
+
width: auto!important
|
|
7540
|
+
}
|
|
7541
|
+
}
|
|
7542
|
+
@media (min-width:1440px) {
|
|
7543
|
+
.W-xxl-10 {
|
|
7544
|
+
width: 10%!important
|
|
7545
|
+
}
|
|
7546
|
+
.W-xxl-20 {
|
|
7547
|
+
width: 20%!important
|
|
7548
|
+
}
|
|
7549
|
+
.W-xxl-30 {
|
|
7550
|
+
width: 30%!important
|
|
7551
|
+
}
|
|
7552
|
+
.W-xxl-40 {
|
|
7553
|
+
width: 40%!important
|
|
7554
|
+
}
|
|
7555
|
+
.W-xxl-50 {
|
|
7556
|
+
width: 50%!important
|
|
7557
|
+
}
|
|
7558
|
+
.W-xxl-60 {
|
|
7559
|
+
width: 60%!important
|
|
7560
|
+
}
|
|
7561
|
+
.W-xxl-70 {
|
|
7562
|
+
width: 70%!important
|
|
7563
|
+
}
|
|
7564
|
+
.W-xxl-80 {
|
|
7565
|
+
width: 80%!important
|
|
7566
|
+
}
|
|
7567
|
+
.W-xxl-90 {
|
|
7568
|
+
width: 90%!important
|
|
7569
|
+
}
|
|
7570
|
+
.W-xxl-100 {
|
|
7571
|
+
width: 100%!important
|
|
7572
|
+
}
|
|
7573
|
+
.W-xxl-5 {
|
|
7574
|
+
width: 5%!important
|
|
7575
|
+
}
|
|
7576
|
+
.W-xxl-15 {
|
|
7577
|
+
width: 15%!important
|
|
7578
|
+
}
|
|
7579
|
+
.W-xxl-25 {
|
|
7580
|
+
width: 25%!important
|
|
7581
|
+
}
|
|
7582
|
+
.W-xxl-35 {
|
|
7583
|
+
width: 35%!important
|
|
7584
|
+
}
|
|
7585
|
+
.W-xxl-45 {
|
|
7586
|
+
width: 45%!important
|
|
7587
|
+
}
|
|
7588
|
+
.W-xxl-55 {
|
|
7589
|
+
width: 55%!important
|
|
7590
|
+
}
|
|
7591
|
+
.W-xxl-65 {
|
|
7592
|
+
width: 65%!important
|
|
7593
|
+
}
|
|
7594
|
+
.W-xxl-75 {
|
|
7595
|
+
width: 75%!important
|
|
7596
|
+
}
|
|
7597
|
+
.W-xxl-85 {
|
|
7598
|
+
width: 85%!important
|
|
7599
|
+
}
|
|
7600
|
+
.W-xxl-95 {
|
|
7601
|
+
width: 95%!important
|
|
7602
|
+
}
|
|
7603
|
+
.W-xxl-33 {
|
|
7604
|
+
width: 33.333%!important
|
|
7605
|
+
}
|
|
7606
|
+
.W-xxl-66 {
|
|
7607
|
+
width: 66.666%!important
|
|
7608
|
+
}
|
|
7609
|
+
.W-xxl-auto {
|
|
7610
|
+
width: auto!important
|
|
7611
|
+
}
|
|
7612
|
+
}
|
|
7245
7613
|
.MW-100 {
|
|
7246
7614
|
max-width: 100%!important
|
|
7247
7615
|
}
|
|
@@ -7944,8 +8312,8 @@ progress {
|
|
|
7944
8312
|
border-radius: 50%
|
|
7945
8313
|
}
|
|
7946
8314
|
.Card {
|
|
7947
|
-
display: block;
|
|
7948
8315
|
position: relative;
|
|
8316
|
+
display: block;
|
|
7949
8317
|
overflow: visible;
|
|
7950
8318
|
color: var(--ls-card-fg-surface,var(--ls-fg-surface));
|
|
7951
8319
|
background-color: var(--ls-card-bg-surface,var(--ls-bg-surface));
|
|
@@ -7953,15 +8321,15 @@ progress {
|
|
|
7953
8321
|
box-shadow: 0 1px 1px -1px hsla(var(--ls-card-shadow-hsl,var(--ls-shadow-hsl)),.27),0 2px 2px 0 hsla(var(--ls-card-shadow-hsl,var(--ls-shadow-hsl)),.18),0 4px 6px 0 hsla(var(--ls-card-shadow-hsl,var(--ls-shadow-hsl)),.09);
|
|
7954
8322
|
padding: 0;
|
|
7955
8323
|
margin-bottom: 1rem;
|
|
7956
|
-
border-radius: .
|
|
8324
|
+
border-radius: .25rem;
|
|
7957
8325
|
min-width: 0;
|
|
7958
8326
|
background-clip: border-box
|
|
7959
8327
|
}
|
|
7960
8328
|
.Card .Card-img {
|
|
7961
8329
|
position: relative;
|
|
7962
8330
|
overflow: hidden;
|
|
7963
|
-
border-top-left-radius: .
|
|
7964
|
-
border-top-right-radius: .
|
|
8331
|
+
border-top-left-radius: .25rem;
|
|
8332
|
+
border-top-right-radius: .25rem
|
|
7965
8333
|
}
|
|
7966
8334
|
.Card .Card-footer,
|
|
7967
8335
|
.Card .Card-header {
|
|
@@ -7976,7 +8344,7 @@ progress {
|
|
|
7976
8344
|
}
|
|
7977
8345
|
.Card .Card-footer.Card-header :first-child,
|
|
7978
8346
|
.Card .Card-header.Card-header :first-child {
|
|
7979
|
-
border-radius: calc(.
|
|
8347
|
+
border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
|
|
7980
8348
|
}
|
|
7981
8349
|
.Card .Card-footer.Card-footer,
|
|
7982
8350
|
.Card .Card-header.Card-footer {
|
|
@@ -7986,6 +8354,7 @@ progress {
|
|
|
7986
8354
|
}
|
|
7987
8355
|
.Card .Card-body,
|
|
7988
8356
|
.Card.Card-body {
|
|
8357
|
+
position: relative;
|
|
7989
8358
|
flex: 1 1 auto;
|
|
7990
8359
|
padding: 1rem 1.5rem
|
|
7991
8360
|
}
|
|
@@ -7998,6 +8367,41 @@ progress {
|
|
|
7998
8367
|
.Card.Card-body .Card-text:last-child {
|
|
7999
8368
|
margin-bottom: 0
|
|
8000
8369
|
}
|
|
8370
|
+
.Card-horizontal {
|
|
8371
|
+
position: relative;
|
|
8372
|
+
display: flex;
|
|
8373
|
+
flex-wrap: wrap
|
|
8374
|
+
}
|
|
8375
|
+
.Card-horizontal .Card-img {
|
|
8376
|
+
border-top-right-radius: 0;
|
|
8377
|
+
border-bottom-left-radius: .25rem
|
|
8378
|
+
}
|
|
8379
|
+
.Card-horizontal .Card-img:not(:empty) {
|
|
8380
|
+
width: 40%
|
|
8381
|
+
}
|
|
8382
|
+
.Card-horizontal .Card-body,
|
|
8383
|
+
.Card-horizontal.Card-body {
|
|
8384
|
+
width: 60%;
|
|
8385
|
+
padding: .5rem 1rem
|
|
8386
|
+
}
|
|
8387
|
+
@media (min-width:320px) and (max-width:480px) {
|
|
8388
|
+
.Card .Card-footer,
|
|
8389
|
+
.Card .Card-header {
|
|
8390
|
+
padding: .5rem 1.25rem
|
|
8391
|
+
}
|
|
8392
|
+
.Card .Card-body,
|
|
8393
|
+
.Card.Card-body {
|
|
8394
|
+
padding: .75rem 1.25rem;
|
|
8395
|
+
font-size: .75em
|
|
8396
|
+
}
|
|
8397
|
+
.Card-horizontal .Card-img {
|
|
8398
|
+
border-bottom-left-radius: 0;
|
|
8399
|
+
border-top-right-radius: .25rem
|
|
8400
|
+
}
|
|
8401
|
+
.Card-horizontal .Card-img:not(:empty) {
|
|
8402
|
+
flex: 0 0 100%
|
|
8403
|
+
}
|
|
8404
|
+
}
|
|
8001
8405
|
.Caret {
|
|
8002
8406
|
position: relative;
|
|
8003
8407
|
overflow: visible;
|
|
@@ -8429,41 +8833,34 @@ progress {
|
|
|
8429
8833
|
background-color: var(--ls-lst-bg-accent,var(--ls-bg-accent));
|
|
8430
8834
|
border-color: var(--ls-lst-bg-accent,var(--ls-bg-accent))
|
|
8431
8835
|
}
|
|
8432
|
-
.Loader
|
|
8433
|
-
.Timer-svg {
|
|
8836
|
+
.Loader {
|
|
8434
8837
|
display: flex;
|
|
8435
|
-
--status: "0%";
|
|
8436
|
-
--loaded: 0
|
|
8838
|
+
--ls-loader-status: "0%";
|
|
8839
|
+
--ls-loader-loaded: 0
|
|
8437
8840
|
}
|
|
8438
|
-
.Loader .
|
|
8439
|
-
.Timer-svg .Square .Square-inner .Status {
|
|
8841
|
+
.Loader .Status {
|
|
8440
8842
|
display: inline-block;
|
|
8441
8843
|
position: absolute
|
|
8442
8844
|
}
|
|
8443
|
-
.Loader .
|
|
8444
|
-
|
|
8445
|
-
content: var(--status, "0%")
|
|
8845
|
+
.Loader .Status:before {
|
|
8846
|
+
content: var(--ls-loader-status, "0%")
|
|
8446
8847
|
}
|
|
8447
|
-
.Loader
|
|
8448
|
-
.Timer-svg .Square .Square-inner svg {
|
|
8848
|
+
.Loader svg {
|
|
8449
8849
|
width: 100%;
|
|
8450
8850
|
height: auto;
|
|
8451
8851
|
top: 0;
|
|
8452
8852
|
left: 0
|
|
8453
8853
|
}
|
|
8454
|
-
.Loader
|
|
8455
|
-
.Timer-svg .Square .Square-inner svg text {
|
|
8854
|
+
.Loader svg text {
|
|
8456
8855
|
fill: currentColor;
|
|
8457
8856
|
dominant-baseline: central;
|
|
8458
8857
|
text-anchor: middle
|
|
8459
8858
|
}
|
|
8460
|
-
.Loader
|
|
8461
|
-
.Timer-svg .Square .Square-inner svg g {
|
|
8859
|
+
.Loader svg g {
|
|
8462
8860
|
transform-origin: center;
|
|
8463
8861
|
transform: rotate(-90deg)
|
|
8464
8862
|
}
|
|
8465
|
-
.Loader
|
|
8466
|
-
.Timer-svg .Square .Square-inner svg .circle {
|
|
8863
|
+
.Loader svg .circle {
|
|
8467
8864
|
fill: none;
|
|
8468
8865
|
stroke: currentColor;
|
|
8469
8866
|
stroke-width: 3%;
|
|
@@ -8471,9 +8868,8 @@ progress {
|
|
|
8471
8868
|
-webkit-animation: loader-progress 1s ease-out forwards;
|
|
8472
8869
|
animation: loader-progress 1s ease-out forwards
|
|
8473
8870
|
}
|
|
8474
|
-
.Loader
|
|
8475
|
-
|
|
8476
|
-
stroke-dasharray: var(--loaded,0),100;
|
|
8871
|
+
.Loader svg .circle:first-of-type {
|
|
8872
|
+
stroke-dasharray: var(--ls-loader-loaded,0),100;
|
|
8477
8873
|
transition: stroke-dasharray .4s cubic-bezier(.04, .24, .18, 1)
|
|
8478
8874
|
}
|
|
8479
8875
|
@-webkit-keyframes loader-progress {
|
|
@@ -8517,6 +8913,9 @@ progress {
|
|
|
8517
8913
|
.Nav-tabs {
|
|
8518
8914
|
border-bottom: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))
|
|
8519
8915
|
}
|
|
8916
|
+
.Nav-tabs .Nav-item {
|
|
8917
|
+
padding-right: 2px
|
|
8918
|
+
}
|
|
8520
8919
|
.Nav-tabs .Nav-link {
|
|
8521
8920
|
margin-bottom: -1px;
|
|
8522
8921
|
background: 0 0;
|
|
@@ -8550,6 +8949,28 @@ progress {
|
|
|
8550
8949
|
color: var(--ls-fg-accent);
|
|
8551
8950
|
background-color: var(--ls-bg-accent)
|
|
8552
8951
|
}
|
|
8952
|
+
.Nav-material .Nav-link {
|
|
8953
|
+
background: 0 0;
|
|
8954
|
+
border: 0;
|
|
8955
|
+
color: var(--ls-fg-hue);
|
|
8956
|
+
border-bottom: 2px solid transparent
|
|
8957
|
+
}
|
|
8958
|
+
.Nav-material .Nav-link:focus,
|
|
8959
|
+
.Nav-material .Nav-link:hover {
|
|
8960
|
+
color: var(--ls-fg-lighter);
|
|
8961
|
+
background-color: var(--ls-bg-lighter)
|
|
8962
|
+
}
|
|
8963
|
+
.Nav-material .Nav-link.Active,
|
|
8964
|
+
.Nav-material .Show > .Nav-link {
|
|
8965
|
+
border-color: var(--ls-bg-accent);
|
|
8966
|
+
color: var(--ls-bg-accent)
|
|
8967
|
+
}
|
|
8968
|
+
.Tab-content .Tab-pane {
|
|
8969
|
+
display: none
|
|
8970
|
+
}
|
|
8971
|
+
.Tab-content .Tab-pane.Active {
|
|
8972
|
+
display: block
|
|
8973
|
+
}
|
|
8553
8974
|
.Pagination {
|
|
8554
8975
|
display: flex;
|
|
8555
8976
|
position: relative;
|
|
@@ -8641,83 +9062,57 @@ progress {
|
|
|
8641
9062
|
overflow: visible;
|
|
8642
9063
|
cursor: pointer
|
|
8643
9064
|
}
|
|
8644
|
-
.Rating .Square
|
|
9065
|
+
.Rating .Square,
|
|
9066
|
+
.Rating RatingItem {
|
|
9067
|
+
margin: 0;
|
|
8645
9068
|
border: none;
|
|
8646
9069
|
background: 0 0
|
|
8647
9070
|
}
|
|
8648
|
-
.Rating .Square .
|
|
9071
|
+
.Rating .Square .Rating-inner,
|
|
9072
|
+
.Rating .Square .Square-inner:not(.Rating-value),
|
|
9073
|
+
.Rating RatingItem .Rating-inner,
|
|
9074
|
+
.Rating RatingItem .Square-inner:not(.Rating-value) {
|
|
8649
9075
|
color: var(--ls-fg-surface);
|
|
8650
|
-
background-color: var(--ls-bg-surface)
|
|
8651
|
-
}
|
|
8652
|
-
.Rating .Square .Square-inner:not(.Rating-value).IsFraction {
|
|
8653
|
-
background: linear-gradient(to right,var(--ls-rating-bg-color) 0,var(--ls-bg-lightest) 100%);
|
|
8654
|
-
-o-border-image: linear-gradient(to right,var(--ls-rating-bg-color) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
8655
|
-
border-image: linear-gradient(to right,var(--ls-rating-bg-color) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
8656
|
-
color: var(--ls-rating-color)
|
|
8657
|
-
}
|
|
8658
|
-
.Rating .Square .Square-inner:not(.Rating-value).IsHovered,
|
|
8659
|
-
.Rating .Square .Square-inner:not(.Rating-value).IsSelected {
|
|
8660
|
-
border-color: var(--ls-rating-bg-color);
|
|
8661
|
-
background: var(--ls-rating-bg-color);
|
|
8662
|
-
color: var(--ls-rating-color)
|
|
8663
|
-
}
|
|
8664
|
-
.Rating .Square .Square-inner:not(.Rating-value).IsHovered.IsFraction,
|
|
8665
|
-
.Rating .Square .Square-inner:not(.Rating-value).IsSelected.IsFraction {
|
|
8666
|
-
background: linear-gradient(to right,var(--ls-rating-bg-color) 0,var(--ls-bg-lightest) 100%);
|
|
8667
|
-
-o-border-image: linear-gradient(to right,var(--ls-rating-bg-color) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
8668
|
-
border-image: linear-gradient(to right,var(--ls-rating-bg-color) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
8669
|
-
color: var(--ls-rating-color)
|
|
8670
|
-
}
|
|
8671
|
-
.Rating-star {
|
|
8672
|
-
--ls-rating-mask: url("data:image/svg+xml;base64,IDxzdmcgdmlld0JveD0nMCAwIDE5MCAxOTAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBvbHlnb24gcG9pbnRzPScxMDAsMTAgNDAsMTgwIDE5MCw2MCAxMCw2MCAxNjAsMTgwJyAvPjwvc3ZnPgo=");
|
|
8673
|
-
--ls-rating-bg-color: #dbab09;
|
|
8674
|
-
--ls-rating-color: var(--ls-fg-hue)
|
|
8675
|
-
}
|
|
8676
|
-
.Rating-heart {
|
|
8677
|
-
--ls-rating-mask: url("data:image/svg+xml;base64,IDxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2aWV3Qm94PSctMSAwIDUyIDUwJz48ZyA+PHBhdGggZD0nTTI0Ljg1LDEwLjEyNmMyLjAxOC00Ljc4Myw2LjYyOC04LjEyNSwxMS45OS04LjEyNWM3LjIyMywwLDEyLjQyNSw2LjE3OSwxMy4wNzksMTMuNTQzIGMwLDAsMC4zNTMsMS44MjgtMC40MjQsNS4xMTljLTEuMDU4LDQuNDgyLTMuNTQ1LDguNDY0LTYuODk4LDExLjUwM0wyNC44NSw0OEw3LjQwMiwzMi4xNjVjLTMuMzUzLTMuMDM4LTUuODQtNy4wMjEtNi44OTgtMTEuNTAzIGMtMC43NzctMy4yOTEtMC40MjQtNS4xMTktMC40MjQtNS4xMTlDMC43MzQsOC4xNzksNS45MzYsMiwxMy4xNTksMkMxOC41MjIsMiwyMi44MzIsNS4zNDMsMjQuODUsMTAuMTI2eicvPjwvZz48L3N2Zz4K");
|
|
8678
|
-
--ls-rating-bg-color: #d73c4c;
|
|
8679
|
-
--ls-rating-color: var(--ls-fg-hue)
|
|
8680
|
-
}
|
|
8681
|
-
.Rating-text {
|
|
8682
|
-
--ls-rating-bg-color: var(--ls-bg-accent);
|
|
8683
|
-
--ls-rating-color: var(--ls-fg-accent)
|
|
8684
|
-
}
|
|
8685
|
-
.Rating-text .Square .Square-inner:not(.Rating-value) {
|
|
9076
|
+
background-color: var(--ls-bg-surface);
|
|
8686
9077
|
margin: 1px;
|
|
8687
|
-
border: 4px solid var(--ls-bg-lightest)
|
|
8688
|
-
|
|
8689
|
-
|
|
8690
|
-
|
|
8691
|
-
.Rating
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
mask: var(--svg-icon);
|
|
8698
|
-
-webkit-mask-repeat: no-repeat;
|
|
8699
|
-
mask-repeat: no-repeat;
|
|
8700
|
-
-webkit-mask-position: center;
|
|
8701
|
-
mask-position: center;
|
|
8702
|
-
-webkit-mask-size: contain;
|
|
8703
|
-
mask-size: contain;
|
|
8704
|
-
-webkit-mask-clip: inherit;
|
|
8705
|
-
mask-clip: inherit
|
|
9078
|
+
border: 4px solid var(--ls-bg-lightest)
|
|
9079
|
+
}
|
|
9080
|
+
.Rating .Square .Rating-inner.Fraction,
|
|
9081
|
+
.Rating .Square .Square-inner:not(.Rating-value).Fraction,
|
|
9082
|
+
.Rating RatingItem .Rating-inner.Fraction,
|
|
9083
|
+
.Rating RatingItem .Square-inner:not(.Rating-value).Fraction {
|
|
9084
|
+
background: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0,var(--ls-bg-lightest) 100%);
|
|
9085
|
+
-o-border-image: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
9086
|
+
border-image: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
9087
|
+
color: var(--ls-fg-accent)
|
|
8706
9088
|
}
|
|
8707
|
-
.Rating
|
|
8708
|
-
.Rating
|
|
8709
|
-
|
|
8710
|
-
|
|
9089
|
+
.Rating .Square .Rating-inner.Hovered,
|
|
9090
|
+
.Rating .Square .Rating-inner.Selected,
|
|
9091
|
+
.Rating .Square .Square-inner:not(.Rating-value).Hovered,
|
|
9092
|
+
.Rating .Square .Square-inner:not(.Rating-value).Selected,
|
|
9093
|
+
.Rating RatingItem .Rating-inner.Hovered,
|
|
9094
|
+
.Rating RatingItem .Rating-inner.Selected,
|
|
9095
|
+
.Rating RatingItem .Square-inner:not(.Rating-value).Hovered,
|
|
9096
|
+
.Rating RatingItem .Square-inner:not(.Rating-value).Selected {
|
|
9097
|
+
border-color: var(--ls-rating-bg,var(--ls-bg-accent));
|
|
9098
|
+
background: var(--ls-rating-bg,var(--ls-bg-accent));
|
|
9099
|
+
color: var(--ls-fg-accent)
|
|
8711
9100
|
}
|
|
8712
|
-
.Rating
|
|
8713
|
-
.Rating
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
9101
|
+
.Rating .Square .Rating-inner.Hovered.Fraction,
|
|
9102
|
+
.Rating .Square .Rating-inner.Selected.Fraction,
|
|
9103
|
+
.Rating .Square .Square-inner:not(.Rating-value).Hovered.Fraction,
|
|
9104
|
+
.Rating .Square .Square-inner:not(.Rating-value).Selected.Fraction,
|
|
9105
|
+
.Rating RatingItem .Rating-inner.Hovered.Fraction,
|
|
9106
|
+
.Rating RatingItem .Rating-inner.Selected.Fraction,
|
|
9107
|
+
.Rating RatingItem .Square-inner:not(.Rating-value).Hovered.Fraction,
|
|
9108
|
+
.Rating RatingItem .Square-inner:not(.Rating-value).Selected.Fraction {
|
|
9109
|
+
background: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0,var(--ls-bg-lightest) 100%);
|
|
9110
|
+
-o-border-image: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
9111
|
+
border-image: linear-gradient(to right,var(--ls-rating-bg,var(--ls-bg-accent)) 0%,var(--ls-bg-lightest) 100%) 1;
|
|
9112
|
+
color: var(--ls-fg-accent)
|
|
8718
9113
|
}
|
|
8719
9114
|
.Scrollbar {
|
|
8720
|
-
scrollbar-gutter:
|
|
9115
|
+
scrollbar-gutter: auto
|
|
8721
9116
|
}
|
|
8722
9117
|
.Scrollbar::-webkit-scrollbar {
|
|
8723
9118
|
width: var(--ls-scrollbar-width,.8rem);
|
|
@@ -8898,9 +9293,9 @@ progress {
|
|
|
8898
9293
|
}
|
|
8899
9294
|
.Square {
|
|
8900
9295
|
position: relative;
|
|
9296
|
+
display: flex;
|
|
8901
9297
|
flex: 1 0 auto;
|
|
8902
9298
|
margin: 2px;
|
|
8903
|
-
font-weight: 700;
|
|
8904
9299
|
-webkit-user-select: none;
|
|
8905
9300
|
-moz-user-select: none;
|
|
8906
9301
|
user-select: none
|
|
@@ -8924,14 +9319,12 @@ progress {
|
|
|
8924
9319
|
.Timeline {
|
|
8925
9320
|
display: block;
|
|
8926
9321
|
position: relative;
|
|
8927
|
-
overflow: visible;
|
|
8928
9322
|
color: var(--ls-fg-surface);
|
|
8929
9323
|
background-color: var(--ls-bg-surface);
|
|
8930
|
-
box-shadow: 0 0 1px 0 hsla(var(--ls-shadow-hsl),.27) inset,0 0 2px 0 hsla(var(--ls-shadow-hsl),.18) inset,0 0 6px 0 hsla(var(--ls-shadow-hsl),.09) inset;
|
|
8931
9324
|
background-clip: border-box;
|
|
9325
|
+
min-width: 0;
|
|
8932
9326
|
padding: 0;
|
|
8933
|
-
margin-bottom: 1.5rem
|
|
8934
|
-
min-width: 0
|
|
9327
|
+
margin-bottom: 1.5rem
|
|
8935
9328
|
}
|
|
8936
9329
|
.Timeline .Timeline-header {
|
|
8937
9330
|
padding: 1rem;
|
|
@@ -8940,136 +9333,77 @@ progress {
|
|
|
8940
9333
|
.Timeline .Timeline-item {
|
|
8941
9334
|
position: relative;
|
|
8942
9335
|
display: flex;
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
9336
|
+
align-items: center
|
|
9337
|
+
}
|
|
9338
|
+
.Timeline .Timeline-item.Inverted {
|
|
9339
|
+
flex-direction: row-reverse
|
|
9340
|
+
}
|
|
9341
|
+
.Timeline .Timeline-item.Inverted:after {
|
|
9342
|
+
left: auto;
|
|
9343
|
+
right: 16px
|
|
8946
9344
|
}
|
|
8947
|
-
.Timeline .Timeline-item
|
|
9345
|
+
.Timeline .Timeline-item.Inverted .Timeline-badge {
|
|
9346
|
+
margin-right: 0;
|
|
9347
|
+
margin-left: .75rem
|
|
9348
|
+
}
|
|
9349
|
+
.Timeline .Timeline-item:after {
|
|
8948
9350
|
position: absolute;
|
|
8949
9351
|
content: " ";
|
|
8950
9352
|
background-color: hsla(var(--ls-border-hsl),var(--ls-border-alpha));
|
|
8951
9353
|
width: 3px;
|
|
8952
9354
|
height: 100%;
|
|
8953
|
-
left:
|
|
9355
|
+
left: 16px;
|
|
8954
9356
|
right: auto;
|
|
8955
|
-
top:
|
|
8956
|
-
}
|
|
8957
|
-
.Timeline .Timeline-item .Timeline-badge {
|
|
8958
|
-
position: relative;
|
|
8959
|
-
display: flex;
|
|
8960
|
-
z-index: 1;
|
|
8961
|
-
align-items: center
|
|
8962
|
-
}
|
|
8963
|
-
.Timeline .Timeline-item .Timeline-badge .Timeline-badge-inner {
|
|
8964
|
-
position: relative;
|
|
8965
|
-
display: flex;
|
|
8966
|
-
width: 32px;
|
|
8967
|
-
height: 32px;
|
|
8968
|
-
color: var(--ls-fg-accent);
|
|
8969
|
-
background-color: var(--ls-bg-accent);
|
|
8970
|
-
border-radius: 50%;
|
|
8971
|
-
box-shadow: 0 0 1px 0 hsla(var(--ls-shadow-hsl),.27) inset,0 0 2px 0 hsla(var(--ls-shadow-hsl),.18) inset,0 0 6px 0 hsla(var(--ls-shadow-hsl),.09) inset;
|
|
8972
|
-
margin-bottom: 1rem
|
|
8973
|
-
}
|
|
8974
|
-
.Timeline .Timeline-item .Timeline-badge .Timeline-badge-inner * {
|
|
8975
|
-
display: block;
|
|
8976
|
-
margin: auto
|
|
8977
|
-
}
|
|
8978
|
-
.Timeline .Timeline-item .Timeline-body {
|
|
8979
|
-
position: relative;
|
|
8980
|
-
min-width: 0;
|
|
8981
|
-
max-width: 100%;
|
|
8982
|
-
padding: 0;
|
|
8983
|
-
margin: 0 0 0 1.4rem
|
|
8984
|
-
}
|
|
8985
|
-
.Timeline .Timeline-item .Timeline-body .Card {
|
|
8986
|
-
border-top: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))
|
|
8987
|
-
}
|
|
8988
|
-
.Timeline .Timeline-item .Timeline-body .Card .Card-img {
|
|
8989
|
-
overflow: hidden;
|
|
8990
|
-
margin: .5rem
|
|
8991
|
-
}
|
|
8992
|
-
.Timeline .Timeline-item .Timeline-body .Card.Card-horizontal .Card-img {
|
|
8993
|
-
padding: .25rem
|
|
9357
|
+
top: 0
|
|
8994
9358
|
}
|
|
8995
|
-
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
}
|
|
9359
|
+
.Timeline .Timeline-item.First:after {
|
|
9360
|
+
height: 50%;
|
|
9361
|
+
top: 50%
|
|
8999
9362
|
}
|
|
9000
|
-
.Timeline .Timeline-item.
|
|
9001
|
-
|
|
9363
|
+
.Timeline .Timeline-item.Last:after {
|
|
9364
|
+
height: 50%;
|
|
9365
|
+
top: 0
|
|
9002
9366
|
}
|
|
9003
|
-
.Timeline .Timeline-item
|
|
9004
|
-
|
|
9367
|
+
.Timeline .Timeline-item .Timeline-badge {
|
|
9368
|
+
width: 40px;
|
|
9369
|
+
z-index: 1001;
|
|
9370
|
+
margin-right: .75rem;
|
|
9371
|
+
margin-bottom: .75rem
|
|
9005
9372
|
}
|
|
9006
|
-
|
|
9007
|
-
|
|
9008
|
-
|
|
9009
|
-
width: 100%;
|
|
9010
|
-
padding-right: .25rem;
|
|
9011
|
-
padding-left: .25rem
|
|
9012
|
-
}
|
|
9013
|
-
.Timeline .Timeline-item-inverted:not(:last-child):after,
|
|
9014
|
-
.Timeline .Timeline-item:not(:last-child):after {
|
|
9015
|
-
left: 1.2rem
|
|
9016
|
-
}
|
|
9373
|
+
.Timeline .Timeline-item .Timeline-content {
|
|
9374
|
+
width: 100%;
|
|
9375
|
+
margin-left: auto
|
|
9017
9376
|
}
|
|
9018
9377
|
.Timer {
|
|
9019
9378
|
display: flex;
|
|
9020
9379
|
position: relative;
|
|
9021
9380
|
overflow: hidden;
|
|
9022
|
-
|
|
9023
|
-
color: var(--ls-fg-surface);
|
|
9381
|
+
color: var(--ls-bg-accent);
|
|
9024
9382
|
background-color: var(--ls-bg-surface);
|
|
9025
9383
|
border: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha));
|
|
9026
9384
|
box-shadow: 0 1px 1px -1px hsla(var(--ls-shadow-hsl),.27),0 2px 2px 0 hsla(var(--ls-shadow-hsl),.18),0 4px 6px 0 hsla(var(--ls-shadow-hsl),.09);
|
|
9027
|
-
min-height: 110px;
|
|
9028
|
-
padding: 5px 10px;
|
|
9029
9385
|
margin-bottom: 10px
|
|
9030
9386
|
}
|
|
9031
|
-
.Timer .
|
|
9032
|
-
|
|
9033
|
-
|
|
9034
|
-
|
|
9035
|
-
border-bottom: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))
|
|
9036
|
-
}
|
|
9037
|
-
.Timer .Timer-expired {
|
|
9387
|
+
.Timer .Square,
|
|
9388
|
+
.Timer .Timer-item,
|
|
9389
|
+
.Timer TimerItem {
|
|
9390
|
+
position: relative;
|
|
9038
9391
|
display: flex;
|
|
9039
|
-
flex
|
|
9040
|
-
font-weight: 700;
|
|
9041
|
-
color: var(--ls-fg-surface);
|
|
9042
|
-
align-items: center;
|
|
9043
|
-
justify-content: center
|
|
9044
|
-
}
|
|
9045
|
-
.Timer .Square {
|
|
9046
|
-
font-family: inherit;
|
|
9047
|
-
font-size: inherit;
|
|
9048
|
-
font-weight: inherit;
|
|
9049
|
-
border: 1px solid hsla(var(--ls-border-hsl),var(--ls-border-alpha))
|
|
9392
|
+
flex: auto
|
|
9050
9393
|
}
|
|
9051
|
-
.Timer .Timer-divider
|
|
9052
|
-
|
|
9053
|
-
margin-bottom: auto
|
|
9054
|
-
}
|
|
9055
|
-
.Timer .Timer-divider {
|
|
9394
|
+
.Timer .Timer-divider,
|
|
9395
|
+
.Timer TimerDivider {
|
|
9056
9396
|
position: relative;
|
|
9057
|
-
width: 8%;
|
|
9058
|
-
margin: 2px -2px
|
|
9059
|
-
}
|
|
9060
|
-
.Timer .Timer-divider div,
|
|
9061
|
-
.Timer .Timer-divider span {
|
|
9062
|
-
position: absolute;
|
|
9063
9397
|
display: flex;
|
|
9064
|
-
|
|
9065
|
-
|
|
9066
|
-
|
|
9067
|
-
right: 0;
|
|
9068
|
-
bottom: 0;
|
|
9069
|
-
top: 0
|
|
9398
|
+
width: 10%;
|
|
9399
|
+
margin-top: auto;
|
|
9400
|
+
margin-bottom: auto
|
|
9070
9401
|
}
|
|
9071
|
-
|
|
9072
|
-
|
|
9402
|
+
@media (max-width:767px) {
|
|
9403
|
+
.Timer .Timer-divider,
|
|
9404
|
+
.Timer TimerDivider {
|
|
9405
|
+
width: 20%
|
|
9406
|
+
}
|
|
9073
9407
|
}
|
|
9074
9408
|
.Toast {
|
|
9075
9409
|
display: block;
|