@code-coaching/vuetiful 0.15.1 → 0.16.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/style.css +1 -1
- package/dist/styles/all.css +679 -1
- package/dist/types/components/atoms/VCodeBlock.test.d.ts +1 -0
- package/dist/types/components/atoms/VLightSwitch.test.d.ts +1 -0
- package/dist/types/components/molecules/VDrawer.test.d.ts +1 -0
- package/dist/types/components/molecules/VPreview.test.d.ts +1 -0
- package/dist/types/components/molecules/VPreview.vue.d.ts +77 -0
- package/dist/types/components/molecules/VRail.test.d.ts +1 -0
- package/dist/types/components/molecules/VRailTile.test.d.ts +1 -0
- package/dist/types/components/molecules/VShell.test.d.ts +1 -0
- package/dist/types/components/molecules/index.d.ts +2 -1
- package/dist/vuetiful.es.mjs +325 -67
- package/dist/vuetiful.umd.js +11 -11
- package/package.json +1 -1
- package/src/components/atoms/VCodeBlock.test.ts +14 -0
- package/src/components/atoms/VLightSwitch.test.ts +20 -0
- package/src/components/atoms/VRadio/VRadioItem.test.ts +6 -6
- package/src/components/atoms/VRadio/VRadioItem.vue +5 -4
- package/src/components/molecules/VDrawer.test.ts +14 -0
- package/src/components/molecules/VPreview.test.ts +93 -0
- package/src/components/molecules/VPreview.vue +231 -0
- package/src/components/molecules/VRail.test.ts +14 -0
- package/src/components/molecules/VRailTile.test.ts +14 -0
- package/src/components/molecules/VShell.test.ts +14 -0
- package/src/components/molecules/index.ts +2 -1
package/dist/styles/all.css
CHANGED
|
@@ -956,6 +956,100 @@ progress::-webkit-progress-value {
|
|
|
956
956
|
|
|
957
957
|
/* Checkbox & Radio */
|
|
958
958
|
|
|
959
|
+
.checkbox,
|
|
960
|
+
.radio {
|
|
961
|
+
height: 1.25rem;
|
|
962
|
+
width: 1.25rem;
|
|
963
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
964
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
965
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
966
|
+
cursor:pointer;
|
|
967
|
+
border-radius:.25rem;
|
|
968
|
+
/* Background */
|
|
969
|
+
background-color: rgb(var(--color-surface-200));
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.dark .checkbox,.dark
|
|
973
|
+
.radio {
|
|
974
|
+
background-color: rgb(var(--color-surface-700));
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.checkbox,
|
|
978
|
+
.radio{
|
|
979
|
+
background-color:rgb(var(--color-surface-200))
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.dark .checkbox,.dark
|
|
983
|
+
.radio{
|
|
984
|
+
background-color:rgb(var(--color-surface-700))
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.checkbox:hover,
|
|
988
|
+
.radio:hover {
|
|
989
|
+
--tw-brightness: brightness(1.05);
|
|
990
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.checkbox:focus,
|
|
994
|
+
.radio:focus {
|
|
995
|
+
--tw-brightness: brightness(1.05);
|
|
996
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.checkbox,
|
|
1000
|
+
.radio {
|
|
1001
|
+
/* Border */
|
|
1002
|
+
border-width: var(--theme-border-base);
|
|
1003
|
+
border-color: rgb(var(--color-surface-400));
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.dark .checkbox,.dark
|
|
1007
|
+
.radio {
|
|
1008
|
+
border-color: rgb(var(--color-surface-500));
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.checkbox,
|
|
1012
|
+
.radio{
|
|
1013
|
+
border-width:var(--theme-border-base);
|
|
1014
|
+
border-color:rgb(var(--color-surface-400))
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.dark .checkbox,.dark
|
|
1018
|
+
.radio{
|
|
1019
|
+
border-color:rgb(var(--color-surface-500))
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.checkbox:focus,
|
|
1023
|
+
.radio:focus {
|
|
1024
|
+
--tw-border-opacity: 1;
|
|
1025
|
+
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.checkbox:checked,
|
|
1029
|
+
.radio:checked {
|
|
1030
|
+
--tw-bg-opacity: 1;
|
|
1031
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.checkbox:checked:hover,
|
|
1035
|
+
.radio:checked:hover {
|
|
1036
|
+
--tw-bg-opacity: 1;
|
|
1037
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.checkbox:checked:focus,
|
|
1041
|
+
.radio:checked:focus {
|
|
1042
|
+
--tw-bg-opacity: 1;
|
|
1043
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1044
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1045
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1046
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.radio {
|
|
1050
|
+
border-radius:var(--theme-rounded-base);
|
|
1051
|
+
}
|
|
1052
|
+
|
|
959
1053
|
/* === Specialized === */
|
|
960
1054
|
|
|
961
1055
|
/* File Inputs */
|
|
@@ -1101,6 +1195,136 @@ progress::-webkit-progress-value {
|
|
|
1101
1195
|
color:rgb(var(--color-surface-900));
|
|
1102
1196
|
}
|
|
1103
1197
|
|
|
1198
|
+
.variant-filled-primary {
|
|
1199
|
+
--tw-bg-opacity: 1;
|
|
1200
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1201
|
+
color: rgb(var(--on-primary));
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
:is(.dark .variant-filled-primary) {
|
|
1205
|
+
--tw-bg-opacity: 1;
|
|
1206
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1207
|
+
color: rgb(var(--on-primary));
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.variant-filled-secondary {
|
|
1211
|
+
--tw-bg-opacity: 1;
|
|
1212
|
+
background-color: rgb(var(--color-secondary-500) / var(--tw-bg-opacity));
|
|
1213
|
+
color: rgb(var(--on-secondary));
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
:is(.dark .variant-filled-secondary) {
|
|
1217
|
+
--tw-bg-opacity: 1;
|
|
1218
|
+
background-color: rgb(var(--color-secondary-500) / var(--tw-bg-opacity));
|
|
1219
|
+
color: rgb(var(--on-secondary));
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.variant-filled-tertiary {
|
|
1223
|
+
--tw-bg-opacity: 1;
|
|
1224
|
+
background-color: rgb(var(--color-tertiary-500) / var(--tw-bg-opacity));
|
|
1225
|
+
color: rgb(var(--on-tertiary));
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
:is(.dark .variant-filled-tertiary) {
|
|
1229
|
+
--tw-bg-opacity: 1;
|
|
1230
|
+
background-color: rgb(var(--color-tertiary-500) / var(--tw-bg-opacity));
|
|
1231
|
+
color: rgb(var(--on-tertiary));
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.variant-filled-success {
|
|
1235
|
+
--tw-bg-opacity: 1;
|
|
1236
|
+
background-color: rgb(var(--color-success-500) / var(--tw-bg-opacity));
|
|
1237
|
+
color: rgb(var(--on-success));
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
:is(.dark .variant-filled-success) {
|
|
1241
|
+
--tw-bg-opacity: 1;
|
|
1242
|
+
background-color: rgb(var(--color-success-500) / var(--tw-bg-opacity));
|
|
1243
|
+
color: rgb(var(--on-success));
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.variant-filled-warning {
|
|
1247
|
+
--tw-bg-opacity: 1;
|
|
1248
|
+
background-color: rgb(var(--color-warning-500) / var(--tw-bg-opacity));
|
|
1249
|
+
color: rgb(var(--on-warning));
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
:is(.dark .variant-filled-warning) {
|
|
1253
|
+
--tw-bg-opacity: 1;
|
|
1254
|
+
background-color: rgb(var(--color-warning-500) / var(--tw-bg-opacity));
|
|
1255
|
+
color: rgb(var(--on-warning));
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.variant-filled-error {
|
|
1259
|
+
--tw-bg-opacity: 1;
|
|
1260
|
+
background-color: rgb(var(--color-error-500) / var(--tw-bg-opacity));
|
|
1261
|
+
color: rgb(var(--on-error));
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
:is(.dark .variant-filled-error) {
|
|
1265
|
+
--tw-bg-opacity: 1;
|
|
1266
|
+
background-color: rgb(var(--color-error-500) / var(--tw-bg-opacity));
|
|
1267
|
+
color: rgb(var(--on-error));
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.variant-filled-surface {
|
|
1271
|
+
background-color: rgb(var(--color-surface-400));
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.dark .variant-filled-surface {
|
|
1275
|
+
background-color: rgb(var(--color-surface-500));
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.variant-filled-surface {
|
|
1279
|
+
color: rgb(var(--on-surface));
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.dark .variant-filled-surface{
|
|
1283
|
+
background-color:rgb(var(--color-surface-500))
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
:is(.dark .variant-filled-surface) {
|
|
1287
|
+
color: rgb(var(--on-surface));
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.variant-ghost,.variant-ghost-surface {
|
|
1291
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1292
|
+
--tw-ring-inset: inset;
|
|
1293
|
+
--tw-ring-opacity: 1;
|
|
1294
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
1295
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1296
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1297
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
:is(.dark .variant-ghost),:is(.dark .variant-ghost-surface) {
|
|
1301
|
+
--tw-ring-opacity: 1;
|
|
1302
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.variant-ghost,.variant-ghost-surface {
|
|
1306
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1307
|
+
--tw-ring-inset: inset;
|
|
1308
|
+
--tw-ring-opacity: 1;
|
|
1309
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
1310
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1311
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1312
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
:is(.dark .variant-ghost),:is(.dark .variant-ghost-surface) {
|
|
1316
|
+
--tw-ring-opacity: 1;
|
|
1317
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.variant-ghost,.variant-ghost-surface {
|
|
1321
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
:is(.dark .variant-ghost),:is(.dark .variant-ghost-surface) {
|
|
1325
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1104
1328
|
.variant-soft,.variant-soft-surface {
|
|
1105
1329
|
background-color: rgb(var(--color-surface-400) / 0.2);
|
|
1106
1330
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
@@ -1492,6 +1716,84 @@ progress::-webkit-progress-value {
|
|
|
1492
1716
|
margin-bottom:calc(.25rem * var(--tw-space-y-reverse))
|
|
1493
1717
|
}
|
|
1494
1718
|
|
|
1719
|
+
.checkbox,.radio {
|
|
1720
|
+
height: 1.25rem;
|
|
1721
|
+
width: 1.25rem;
|
|
1722
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
1723
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
1724
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
1725
|
+
cursor:pointer;
|
|
1726
|
+
border-radius:.25rem;
|
|
1727
|
+
background-color: rgb(var(--color-surface-200));
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.dark .checkbox,.dark .radio {
|
|
1731
|
+
background-color: rgb(var(--color-surface-700));
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.checkbox,.radio{
|
|
1735
|
+
background-color:rgb(var(--color-surface-200))
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.dark .checkbox,.dark .radio{
|
|
1739
|
+
background-color:rgb(var(--color-surface-700))
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.checkbox:hover,.radio:hover {
|
|
1743
|
+
--tw-brightness: brightness(1.05);
|
|
1744
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.checkbox:focus,.radio:focus {
|
|
1748
|
+
--tw-brightness: brightness(1.05);
|
|
1749
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.checkbox,.radio {
|
|
1753
|
+
border-width: var(--theme-border-base);
|
|
1754
|
+
border-color: rgb(var(--color-surface-400));
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.dark .checkbox,.dark .radio {
|
|
1758
|
+
border-color: rgb(var(--color-surface-500));
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.checkbox,.radio{
|
|
1762
|
+
border-width:var(--theme-border-base);
|
|
1763
|
+
border-color:rgb(var(--color-surface-400))
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.dark .checkbox,.dark .radio{
|
|
1767
|
+
border-color:rgb(var(--color-surface-500))
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.checkbox:focus,.radio:focus {
|
|
1771
|
+
--tw-border-opacity: 1;
|
|
1772
|
+
border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity));
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.checkbox:checked,.radio:checked {
|
|
1776
|
+
--tw-bg-opacity: 1;
|
|
1777
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.checkbox:checked:hover,.radio:checked:hover {
|
|
1781
|
+
--tw-bg-opacity: 1;
|
|
1782
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.checkbox:checked:focus,.radio:checked:focus {
|
|
1786
|
+
--tw-bg-opacity: 1;
|
|
1787
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
1788
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1789
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1790
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.radio {
|
|
1794
|
+
border-radius:var(--theme-rounded-base);
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1495
1797
|
.list,.list-dl,.list-nav ul {
|
|
1496
1798
|
list-style-type: none;
|
|
1497
1799
|
}
|
|
@@ -2359,10 +2661,146 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2359
2661
|
color:rgb(var(--color-surface-900));
|
|
2360
2662
|
}
|
|
2361
2663
|
|
|
2664
|
+
.variant-filled-primary {
|
|
2665
|
+
--tw-bg-opacity: 1;
|
|
2666
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
2667
|
+
color: rgb(var(--on-primary));
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
:is(.dark .variant-filled-primary) {
|
|
2671
|
+
--tw-bg-opacity: 1;
|
|
2672
|
+
background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity));
|
|
2673
|
+
color: rgb(var(--on-primary));
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.variant-filled-secondary {
|
|
2677
|
+
--tw-bg-opacity: 1;
|
|
2678
|
+
background-color: rgb(var(--color-secondary-500) / var(--tw-bg-opacity));
|
|
2679
|
+
color: rgb(var(--on-secondary));
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
:is(.dark .variant-filled-secondary) {
|
|
2683
|
+
--tw-bg-opacity: 1;
|
|
2684
|
+
background-color: rgb(var(--color-secondary-500) / var(--tw-bg-opacity));
|
|
2685
|
+
color: rgb(var(--on-secondary));
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
.variant-filled-tertiary {
|
|
2689
|
+
--tw-bg-opacity: 1;
|
|
2690
|
+
background-color: rgb(var(--color-tertiary-500) / var(--tw-bg-opacity));
|
|
2691
|
+
color: rgb(var(--on-tertiary));
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
:is(.dark .variant-filled-tertiary) {
|
|
2695
|
+
--tw-bg-opacity: 1;
|
|
2696
|
+
background-color: rgb(var(--color-tertiary-500) / var(--tw-bg-opacity));
|
|
2697
|
+
color: rgb(var(--on-tertiary));
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
.variant-filled-success {
|
|
2701
|
+
--tw-bg-opacity: 1;
|
|
2702
|
+
background-color: rgb(var(--color-success-500) / var(--tw-bg-opacity));
|
|
2703
|
+
color: rgb(var(--on-success));
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
:is(.dark .variant-filled-success) {
|
|
2707
|
+
--tw-bg-opacity: 1;
|
|
2708
|
+
background-color: rgb(var(--color-success-500) / var(--tw-bg-opacity));
|
|
2709
|
+
color: rgb(var(--on-success));
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
.variant-filled-warning {
|
|
2713
|
+
--tw-bg-opacity: 1;
|
|
2714
|
+
background-color: rgb(var(--color-warning-500) / var(--tw-bg-opacity));
|
|
2715
|
+
color: rgb(var(--on-warning));
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
:is(.dark .variant-filled-warning) {
|
|
2719
|
+
--tw-bg-opacity: 1;
|
|
2720
|
+
background-color: rgb(var(--color-warning-500) / var(--tw-bg-opacity));
|
|
2721
|
+
color: rgb(var(--on-warning));
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
.variant-filled-error {
|
|
2725
|
+
--tw-bg-opacity: 1;
|
|
2726
|
+
background-color: rgb(var(--color-error-500) / var(--tw-bg-opacity));
|
|
2727
|
+
color: rgb(var(--on-error));
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
:is(.dark .variant-filled-error) {
|
|
2731
|
+
--tw-bg-opacity: 1;
|
|
2732
|
+
background-color: rgb(var(--color-error-500) / var(--tw-bg-opacity));
|
|
2733
|
+
color: rgb(var(--on-error));
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.variant-filled-surface {
|
|
2737
|
+
background-color: rgb(var(--color-surface-400));
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
.dark .variant-filled-surface {
|
|
2741
|
+
background-color: rgb(var(--color-surface-500));
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
.variant-filled-surface {
|
|
2745
|
+
color: rgb(var(--on-surface));
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
.dark .variant-filled-surface{
|
|
2749
|
+
background-color:rgb(var(--color-surface-500))
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
:is(.dark .variant-filled-surface) {
|
|
2753
|
+
color: rgb(var(--on-surface));
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2362
2756
|
/* Ringed */
|
|
2363
2757
|
|
|
2364
2758
|
/* Ghost */
|
|
2365
2759
|
|
|
2760
|
+
.variant-ghost,
|
|
2761
|
+
.variant-ghost-surface {
|
|
2762
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2763
|
+
--tw-ring-inset: inset;
|
|
2764
|
+
--tw-ring-opacity: 1;
|
|
2765
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
2766
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2767
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2768
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
:is(.dark .variant-ghost),:is(.dark
|
|
2772
|
+
.variant-ghost-surface) {
|
|
2773
|
+
--tw-ring-opacity: 1;
|
|
2774
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.variant-ghost,
|
|
2778
|
+
.variant-ghost-surface {
|
|
2779
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2780
|
+
--tw-ring-inset: inset;
|
|
2781
|
+
--tw-ring-opacity: 1;
|
|
2782
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
2783
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2784
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2785
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
:is(.dark .variant-ghost),:is(.dark
|
|
2789
|
+
.variant-ghost-surface) {
|
|
2790
|
+
--tw-ring-opacity: 1;
|
|
2791
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.variant-ghost,
|
|
2795
|
+
.variant-ghost-surface {
|
|
2796
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
:is(.dark .variant-ghost),:is(.dark
|
|
2800
|
+
.variant-ghost-surface) {
|
|
2801
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2366
2804
|
/* Soft */
|
|
2367
2805
|
|
|
2368
2806
|
.variant-soft,
|
|
@@ -2442,6 +2880,16 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2442
2880
|
margin: -1rem;
|
|
2443
2881
|
}
|
|
2444
2882
|
|
|
2883
|
+
.mx-auto {
|
|
2884
|
+
margin-left: auto;
|
|
2885
|
+
margin-right: auto;
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
.my-1 {
|
|
2889
|
+
margin-top: 0.25rem;
|
|
2890
|
+
margin-bottom: 0.25rem;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2445
2893
|
.mt-1 {
|
|
2446
2894
|
margin-top: 0.25rem;
|
|
2447
2895
|
}
|
|
@@ -2458,6 +2906,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2458
2906
|
display: grid;
|
|
2459
2907
|
}
|
|
2460
2908
|
|
|
2909
|
+
.hidden {
|
|
2910
|
+
display: none;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2461
2913
|
.aspect-square {
|
|
2462
2914
|
aspect-ratio: 1 / 1;
|
|
2463
2915
|
}
|
|
@@ -2486,6 +2938,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2486
2938
|
height: 50%;
|
|
2487
2939
|
}
|
|
2488
2940
|
|
|
2941
|
+
.h-\[812px\] {
|
|
2942
|
+
height: 812px;
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2489
2945
|
.h-full {
|
|
2490
2946
|
height: 100%;
|
|
2491
2947
|
}
|
|
@@ -2510,6 +2966,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2510
2966
|
width: 6rem;
|
|
2511
2967
|
}
|
|
2512
2968
|
|
|
2969
|
+
.w-4 {
|
|
2970
|
+
width: 1rem;
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2513
2973
|
.w-60 {
|
|
2514
2974
|
width: 15rem;
|
|
2515
2975
|
}
|
|
@@ -2542,6 +3002,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2542
3002
|
width: 100%;
|
|
2543
3003
|
}
|
|
2544
3004
|
|
|
3005
|
+
.max-w-\[375px\] {
|
|
3006
|
+
max-width: 375px;
|
|
3007
|
+
}
|
|
3008
|
+
|
|
2545
3009
|
.flex-1 {
|
|
2546
3010
|
flex: 1 1 0%;
|
|
2547
3011
|
}
|
|
@@ -2578,6 +3042,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2578
3042
|
cursor: pointer;
|
|
2579
3043
|
}
|
|
2580
3044
|
|
|
3045
|
+
.grid-cols-6 {
|
|
3046
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
3047
|
+
}
|
|
3048
|
+
|
|
2581
3049
|
.grid-rows-\[auto_1fr_auto\] {
|
|
2582
3050
|
grid-template-rows: auto 1fr auto;
|
|
2583
3051
|
}
|
|
@@ -2614,6 +3082,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2614
3082
|
gap: 0.25rem;
|
|
2615
3083
|
}
|
|
2616
3084
|
|
|
3085
|
+
.gap-2 {
|
|
3086
|
+
gap: 0.5rem;
|
|
3087
|
+
}
|
|
3088
|
+
|
|
2617
3089
|
.gap-4 {
|
|
2618
3090
|
gap: 1rem;
|
|
2619
3091
|
}
|
|
@@ -2660,10 +3132,26 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2660
3132
|
word-break: break-all;
|
|
2661
3133
|
}
|
|
2662
3134
|
|
|
3135
|
+
.\!rounded-none {
|
|
3136
|
+
border-radius: 0px !important;
|
|
3137
|
+
}
|
|
3138
|
+
|
|
2663
3139
|
.rounded {
|
|
2664
3140
|
border-radius: 0.25rem;
|
|
2665
3141
|
}
|
|
2666
3142
|
|
|
3143
|
+
.rounded-3xl {
|
|
3144
|
+
border-radius: 1.5rem;
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
.border-8 {
|
|
3148
|
+
border-width: 8px;
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
.border-black\/50 {
|
|
3152
|
+
border-color: rgb(0 0 0 / 0.5);
|
|
3153
|
+
}
|
|
3154
|
+
|
|
2667
3155
|
.bg-neutral-900\/90 {
|
|
2668
3156
|
background-color: rgb(23 23 23 / 0.9);
|
|
2669
3157
|
}
|
|
@@ -2688,10 +3176,26 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2688
3176
|
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
2689
3177
|
}
|
|
2690
3178
|
|
|
3179
|
+
.bg-transparent {
|
|
3180
|
+
background-color: transparent;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
.bg-white\/25 {
|
|
3184
|
+
background-color: rgb(255 255 255 / 0.25);
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.bg-white\/50 {
|
|
3188
|
+
background-color: rgb(255 255 255 / 0.5);
|
|
3189
|
+
}
|
|
3190
|
+
|
|
2691
3191
|
.bg-opacity-90 {
|
|
2692
3192
|
--tw-bg-opacity: 0.9;
|
|
2693
3193
|
}
|
|
2694
3194
|
|
|
3195
|
+
.bg-gradient-to-br {
|
|
3196
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
3197
|
+
}
|
|
3198
|
+
|
|
2695
3199
|
.p-1 {
|
|
2696
3200
|
padding: 0.25rem;
|
|
2697
3201
|
}
|
|
@@ -2804,12 +3308,23 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2804
3308
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2805
3309
|
}
|
|
2806
3310
|
|
|
3311
|
+
.shadow-2xl {
|
|
3312
|
+
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
3313
|
+
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
3314
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3315
|
+
}
|
|
3316
|
+
|
|
2807
3317
|
.shadow-xl {
|
|
2808
3318
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
2809
3319
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
2810
3320
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2811
3321
|
}
|
|
2812
3322
|
|
|
3323
|
+
.shadow-surface-500\/10 {
|
|
3324
|
+
--tw-shadow-color: rgb(var(--color-surface-500) / 0.1);
|
|
3325
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
3326
|
+
}
|
|
3327
|
+
|
|
2813
3328
|
.ring {
|
|
2814
3329
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2815
3330
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2826,6 +3341,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2826
3341
|
--tw-ring-color: rgb(var(--color-surface-500) / 0.3);
|
|
2827
3342
|
}
|
|
2828
3343
|
|
|
3344
|
+
.ring-surface-500\/50 {
|
|
3345
|
+
--tw-ring-color: rgb(var(--color-surface-500) / 0.5);
|
|
3346
|
+
}
|
|
3347
|
+
|
|
2829
3348
|
.transition {
|
|
2830
3349
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2831
3350
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2846,6 +3365,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2846
3365
|
transition-duration: 150ms;
|
|
2847
3366
|
}
|
|
2848
3367
|
|
|
3368
|
+
.duration-300 {
|
|
3369
|
+
transition-duration: 300ms;
|
|
3370
|
+
}
|
|
3371
|
+
|
|
2849
3372
|
.duration-\[150ms\] {
|
|
2850
3373
|
transition-duration: 150ms;
|
|
2851
3374
|
}
|
|
@@ -4170,11 +4693,28 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4170
4693
|
background-color: rgb(var(--color-secondary-500) / 0.1);
|
|
4171
4694
|
}
|
|
4172
4695
|
|
|
4696
|
+
:is(.dark .dark\:border-white\/50) {
|
|
4697
|
+
border-color: rgb(255 255 255 / 0.5);
|
|
4698
|
+
}
|
|
4699
|
+
|
|
4700
|
+
:is(.dark .dark\:bg-black\/25) {
|
|
4701
|
+
background-color: rgb(0 0 0 / 0.25);
|
|
4702
|
+
}
|
|
4703
|
+
|
|
4704
|
+
:is(.dark .dark\:bg-black\/50) {
|
|
4705
|
+
background-color: rgb(0 0 0 / 0.5);
|
|
4706
|
+
}
|
|
4707
|
+
|
|
4173
4708
|
:is(.dark .dark\:text-surface-50) {
|
|
4174
4709
|
--tw-text-opacity: 1;
|
|
4175
4710
|
color: rgb(var(--color-surface-50) / var(--tw-text-opacity));
|
|
4176
4711
|
}
|
|
4177
4712
|
|
|
4713
|
+
:is(.dark .dark\:shadow-black\/10) {
|
|
4714
|
+
--tw-shadow-color: rgb(0 0 0 / 0.1);
|
|
4715
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
4716
|
+
}
|
|
4717
|
+
|
|
4178
4718
|
:is(.dark .dark\:fill-base-token) {
|
|
4179
4719
|
fill: rgba(var(--theme-font-color-base));
|
|
4180
4720
|
}
|
|
@@ -4184,9 +4724,23 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4184
4724
|
}
|
|
4185
4725
|
|
|
4186
4726
|
@media (min-width: 640px) {
|
|
4727
|
+
.sm\:\!inline-flex {
|
|
4728
|
+
display: inline-flex !important;
|
|
4729
|
+
}
|
|
4730
|
+
|
|
4187
4731
|
.sm\:w-20 {
|
|
4188
4732
|
width: 5rem;
|
|
4189
4733
|
}
|
|
4734
|
+
|
|
4735
|
+
.sm\:grid-cols-12 {
|
|
4736
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
4737
|
+
}
|
|
4738
|
+
}
|
|
4739
|
+
|
|
4740
|
+
@media (min-width: 768px) {
|
|
4741
|
+
.md\:p-10 {
|
|
4742
|
+
padding: 2.5rem;
|
|
4743
|
+
}
|
|
4190
4744
|
}
|
|
4191
4745
|
|
|
4192
4746
|
@media (min-width: 1024px) {
|
|
@@ -4265,7 +4819,7 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
4265
4819
|
top:0px;
|
|
4266
4820
|
/* max-w-max */
|
|
4267
4821
|
/* Set hidden on page load */
|
|
4268
|
-
display:
|
|
4822
|
+
display:none;
|
|
4269
4823
|
/* Transitions */
|
|
4270
4824
|
transition-property: opacity;
|
|
4271
4825
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -4498,6 +5052,14 @@ code.hljs{
|
|
|
4498
5052
|
background-color:#67060c
|
|
4499
5053
|
}
|
|
4500
5054
|
|
|
5055
|
+
.icon[data-v-11c10f2c]{
|
|
5056
|
+
margin-top:.25rem;
|
|
5057
|
+
margin-bottom:.25rem;
|
|
5058
|
+
height:1rem;
|
|
5059
|
+
width:1rem;
|
|
5060
|
+
fill:currentColor
|
|
5061
|
+
}
|
|
5062
|
+
|
|
4501
5063
|
@font-face{
|
|
4502
5064
|
font-family:myfont;
|
|
4503
5065
|
|
|
@@ -4862,6 +5424,16 @@ img,video{
|
|
|
4862
5424
|
margin:-1rem
|
|
4863
5425
|
}
|
|
4864
5426
|
|
|
5427
|
+
.mx-auto{
|
|
5428
|
+
margin-left:auto;
|
|
5429
|
+
margin-right:auto
|
|
5430
|
+
}
|
|
5431
|
+
|
|
5432
|
+
.my-1{
|
|
5433
|
+
margin-top:.25rem;
|
|
5434
|
+
margin-bottom:.25rem
|
|
5435
|
+
}
|
|
5436
|
+
|
|
4865
5437
|
.mt-1{
|
|
4866
5438
|
margin-top:.25rem
|
|
4867
5439
|
}
|
|
@@ -4878,6 +5450,10 @@ img,video{
|
|
|
4878
5450
|
display:grid
|
|
4879
5451
|
}
|
|
4880
5452
|
|
|
5453
|
+
.hidden{
|
|
5454
|
+
display:none
|
|
5455
|
+
}
|
|
5456
|
+
|
|
4881
5457
|
.aspect-square{
|
|
4882
5458
|
aspect-ratio:1 / 1
|
|
4883
5459
|
}
|
|
@@ -4906,6 +5482,10 @@ img,video{
|
|
|
4906
5482
|
height:50%
|
|
4907
5483
|
}
|
|
4908
5484
|
|
|
5485
|
+
.h-\[812px\]{
|
|
5486
|
+
height:812px
|
|
5487
|
+
}
|
|
5488
|
+
|
|
4909
5489
|
.h-full{
|
|
4910
5490
|
height:100%
|
|
4911
5491
|
}
|
|
@@ -4930,6 +5510,10 @@ img,video{
|
|
|
4930
5510
|
width:6rem
|
|
4931
5511
|
}
|
|
4932
5512
|
|
|
5513
|
+
.w-4{
|
|
5514
|
+
width:1rem
|
|
5515
|
+
}
|
|
5516
|
+
|
|
4933
5517
|
.w-60{
|
|
4934
5518
|
width:15rem
|
|
4935
5519
|
}
|
|
@@ -4962,6 +5546,10 @@ img,video{
|
|
|
4962
5546
|
width:100%
|
|
4963
5547
|
}
|
|
4964
5548
|
|
|
5549
|
+
.max-w-\[375px\]{
|
|
5550
|
+
max-width:375px
|
|
5551
|
+
}
|
|
5552
|
+
|
|
4965
5553
|
.flex-1{
|
|
4966
5554
|
flex:1 1 0%
|
|
4967
5555
|
}
|
|
@@ -4993,6 +5581,10 @@ img,video{
|
|
|
4993
5581
|
cursor:pointer
|
|
4994
5582
|
}
|
|
4995
5583
|
|
|
5584
|
+
.grid-cols-6{
|
|
5585
|
+
grid-template-columns:repeat(6,minmax(0,1fr))
|
|
5586
|
+
}
|
|
5587
|
+
|
|
4996
5588
|
.grid-rows-\[auto_1fr_auto\]{
|
|
4997
5589
|
grid-template-rows:auto 1fr auto
|
|
4998
5590
|
}
|
|
@@ -5029,6 +5621,10 @@ img,video{
|
|
|
5029
5621
|
gap:.25rem
|
|
5030
5622
|
}
|
|
5031
5623
|
|
|
5624
|
+
.gap-2{
|
|
5625
|
+
gap:.5rem
|
|
5626
|
+
}
|
|
5627
|
+
|
|
5032
5628
|
.gap-4{
|
|
5033
5629
|
gap:1rem
|
|
5034
5630
|
}
|
|
@@ -5075,10 +5671,26 @@ img,video{
|
|
|
5075
5671
|
word-break:break-all
|
|
5076
5672
|
}
|
|
5077
5673
|
|
|
5674
|
+
.\!rounded-none{
|
|
5675
|
+
border-radius:0!important
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5078
5678
|
.rounded{
|
|
5079
5679
|
border-radius:.25rem
|
|
5080
5680
|
}
|
|
5081
5681
|
|
|
5682
|
+
.rounded-3xl{
|
|
5683
|
+
border-radius:1.5rem
|
|
5684
|
+
}
|
|
5685
|
+
|
|
5686
|
+
.border-8{
|
|
5687
|
+
border-width:8px
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5690
|
+
.border-black\/50{
|
|
5691
|
+
border-color:#00000080
|
|
5692
|
+
}
|
|
5693
|
+
|
|
5082
5694
|
.bg-neutral-900\/90{
|
|
5083
5695
|
background-color:#171717e6
|
|
5084
5696
|
}
|
|
@@ -5103,10 +5715,26 @@ img,video{
|
|
|
5103
5715
|
background-color:rgb(var(--color-surface-900) / var(--tw-bg-opacity))
|
|
5104
5716
|
}
|
|
5105
5717
|
|
|
5718
|
+
.bg-transparent{
|
|
5719
|
+
background-color:transparent
|
|
5720
|
+
}
|
|
5721
|
+
|
|
5722
|
+
.bg-white\/25{
|
|
5723
|
+
background-color:#ffffff40
|
|
5724
|
+
}
|
|
5725
|
+
|
|
5726
|
+
.bg-white\/50{
|
|
5727
|
+
background-color:#ffffff80
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5106
5730
|
.bg-opacity-90{
|
|
5107
5731
|
--tw-bg-opacity: .9
|
|
5108
5732
|
}
|
|
5109
5733
|
|
|
5734
|
+
.bg-gradient-to-br{
|
|
5735
|
+
background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5110
5738
|
.p-1{
|
|
5111
5739
|
padding:.25rem
|
|
5112
5740
|
}
|
|
@@ -5219,12 +5847,23 @@ img,video{
|
|
|
5219
5847
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
|
|
5220
5848
|
}
|
|
5221
5849
|
|
|
5850
|
+
.shadow-2xl{
|
|
5851
|
+
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
|
|
5852
|
+
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
5853
|
+
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
|
|
5854
|
+
}
|
|
5855
|
+
|
|
5222
5856
|
.shadow-xl{
|
|
5223
5857
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
|
|
5224
5858
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
5225
5859
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
|
|
5226
5860
|
}
|
|
5227
5861
|
|
|
5862
|
+
.shadow-surface-500\/10{
|
|
5863
|
+
--tw-shadow-color: rgb(var(--color-surface-500) / .1);
|
|
5864
|
+
--tw-shadow: var(--tw-shadow-colored)
|
|
5865
|
+
}
|
|
5866
|
+
|
|
5228
5867
|
.ring{
|
|
5229
5868
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5230
5869
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -5241,6 +5880,10 @@ img,video{
|
|
|
5241
5880
|
--tw-ring-color: rgb(var(--color-surface-500) / .3)
|
|
5242
5881
|
}
|
|
5243
5882
|
|
|
5883
|
+
.ring-surface-500\/50{
|
|
5884
|
+
--tw-ring-color: rgb(var(--color-surface-500) / .5)
|
|
5885
|
+
}
|
|
5886
|
+
|
|
5244
5887
|
.transition{
|
|
5245
5888
|
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
|
|
5246
5889
|
transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
|
|
@@ -5261,6 +5904,10 @@ img,video{
|
|
|
5261
5904
|
transition-duration:.15s
|
|
5262
5905
|
}
|
|
5263
5906
|
|
|
5907
|
+
.duration-300{
|
|
5908
|
+
transition-duration:.3s
|
|
5909
|
+
}
|
|
5910
|
+
|
|
5264
5911
|
.duration-\[150ms\]{
|
|
5265
5912
|
transition-duration:.15s
|
|
5266
5913
|
}
|
|
@@ -6509,11 +7156,28 @@ img,video{
|
|
|
6509
7156
|
background-color:rgb(var(--color-secondary-500) / .1)
|
|
6510
7157
|
}
|
|
6511
7158
|
|
|
7159
|
+
:is(.dark .dark\:border-white\/50){
|
|
7160
|
+
border-color:#ffffff80
|
|
7161
|
+
}
|
|
7162
|
+
|
|
7163
|
+
:is(.dark .dark\:bg-black\/25){
|
|
7164
|
+
background-color:#00000040
|
|
7165
|
+
}
|
|
7166
|
+
|
|
7167
|
+
:is(.dark .dark\:bg-black\/50){
|
|
7168
|
+
background-color:#00000080
|
|
7169
|
+
}
|
|
7170
|
+
|
|
6512
7171
|
:is(.dark .dark\:text-surface-50){
|
|
6513
7172
|
--tw-text-opacity: 1;
|
|
6514
7173
|
color:rgb(var(--color-surface-50) / var(--tw-text-opacity))
|
|
6515
7174
|
}
|
|
6516
7175
|
|
|
7176
|
+
:is(.dark .dark\:shadow-black\/10){
|
|
7177
|
+
--tw-shadow-color: rgb(0 0 0 / .1);
|
|
7178
|
+
--tw-shadow: var(--tw-shadow-colored)
|
|
7179
|
+
}
|
|
7180
|
+
|
|
6517
7181
|
:is(.dark .dark\:fill-base-token){
|
|
6518
7182
|
fill:rgba(var(--theme-font-color-base))
|
|
6519
7183
|
}
|
|
@@ -6523,9 +7187,23 @@ img,video{
|
|
|
6523
7187
|
}
|
|
6524
7188
|
|
|
6525
7189
|
@media (min-width: 640px){
|
|
7190
|
+
.sm\:\!inline-flex{
|
|
7191
|
+
display:inline-flex!important
|
|
7192
|
+
}
|
|
7193
|
+
|
|
6526
7194
|
.sm\:w-20{
|
|
6527
7195
|
width:5rem
|
|
6528
7196
|
}
|
|
7197
|
+
|
|
7198
|
+
.sm\:grid-cols-12{
|
|
7199
|
+
grid-template-columns:repeat(12,minmax(0,1fr))
|
|
7200
|
+
}
|
|
7201
|
+
}
|
|
7202
|
+
|
|
7203
|
+
@media (min-width: 768px){
|
|
7204
|
+
.md\:p-10{
|
|
7205
|
+
padding:2.5rem
|
|
7206
|
+
}
|
|
6529
7207
|
}
|
|
6530
7208
|
|
|
6531
7209
|
@media (min-width: 1024px){
|