lexgui 8.0.0 → 8.1.1
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/README.md +3 -3
- package/build/components/AlertDialog.d.ts +7 -0
- package/build/components/Counter.d.ts +1 -0
- package/build/components/Dialog.d.ts +1 -1
- package/build/components/Footer.d.ts +1 -1
- package/build/components/Menubar.d.ts +2 -2
- package/build/core/Area.d.ts +22 -22
- package/build/core/Namespace.js +34 -34
- package/build/core/Namespace.js.map +1 -1
- package/build/core/Panel.d.ts +2 -3
- package/build/extensions/AssetView.d.ts +136 -134
- package/build/extensions/AssetView.js +1367 -1320
- package/build/extensions/AssetView.js.map +1 -1
- package/build/extensions/Audio.js +19 -19
- package/build/extensions/Audio.js.map +1 -1
- package/build/extensions/CodeEditor.js +867 -647
- package/build/extensions/CodeEditor.js.map +1 -1
- package/build/extensions/DocMaker.d.ts +1 -1
- package/build/extensions/DocMaker.js +73 -61
- package/build/extensions/DocMaker.js.map +1 -1
- package/build/extensions/GraphEditor.js +406 -305
- package/build/extensions/GraphEditor.js.map +1 -1
- package/build/extensions/ImUi.js +21 -20
- package/build/extensions/ImUi.js.map +1 -1
- package/build/extensions/Timeline.d.ts +29 -36
- package/build/extensions/Timeline.js +421 -424
- package/build/extensions/Timeline.js.map +1 -1
- package/build/extensions/VideoEditor.js +101 -97
- package/build/extensions/VideoEditor.js.map +1 -1
- package/build/extensions/index.d.ts +8 -8
- package/build/extensions/index.js +1 -1
- package/build/index.all.d.ts +2 -2
- package/build/index.css.d.ts +1 -1
- package/build/index.d.ts +56 -55
- package/build/lexgui.all.js +28488 -27640
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +28412 -27565
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +176 -69
- package/build/lexgui.js +13796 -13330
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +13733 -13268
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +22 -1
- package/demo.js +6 -5
- package/examples/all-components.html +3 -0
- package/examples/asset-view.html +52 -6
- package/examples/dialogs.html +3 -3
- package/examples/editor.html +1 -1
- package/examples/index.html +1 -1
- package/package.json +4 -1
package/build/lexgui.css
CHANGED
|
@@ -88,7 +88,10 @@
|
|
|
88
88
|
--global-font-size: 0.875rem; /* 14px */
|
|
89
89
|
--global-font-size-lg: 1rem; /* 16px */
|
|
90
90
|
--global-font-size-xl: 1.125rem; /* 18px */
|
|
91
|
-
--global-font-size-xxl: 1.
|
|
91
|
+
--global-font-size-xxl: 1.4rem; /* 22px */
|
|
92
|
+
--global-font-size-3xl: 1.8rem;
|
|
93
|
+
--global-font-size-4xl: 2.5rem;
|
|
94
|
+
--global-font-size-5xl: 2.75rem;
|
|
92
95
|
|
|
93
96
|
--global-text-primary: light-dark(#0a0a0a, #e5e5e5);
|
|
94
97
|
--global-text-secondary: light-dark(#262626, #d5d5d5);
|
|
@@ -833,7 +836,7 @@ a svg, svg path {
|
|
|
833
836
|
box-shadow: 0 2px 6px #101010bb;
|
|
834
837
|
border-radius: 12px;
|
|
835
838
|
z-index: 101;
|
|
836
|
-
background-color: var(--global-background
|
|
839
|
+
background-color: var(--global-background);
|
|
837
840
|
}
|
|
838
841
|
|
|
839
842
|
.lexdialog:has(.lexselect) {
|
|
@@ -1128,6 +1131,7 @@ a svg, svg path {
|
|
|
1128
1131
|
animation-duration: 400ms;
|
|
1129
1132
|
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
1130
1133
|
will-change: transform, opacity;
|
|
1134
|
+
overflow: hidden;
|
|
1131
1135
|
}
|
|
1132
1136
|
|
|
1133
1137
|
@keyframes enterBottom {
|
|
@@ -1176,18 +1180,26 @@ a svg, svg path {
|
|
|
1176
1180
|
|
|
1177
1181
|
.lexsheet[data-side="top"]{
|
|
1178
1182
|
animation-name: enterTop;
|
|
1183
|
+
border-bottom-left-radius: 1rem;
|
|
1184
|
+
border-bottom-right-radius: 1rem;
|
|
1179
1185
|
}
|
|
1180
1186
|
|
|
1181
1187
|
.lexsheet[data-side="right"]{
|
|
1182
1188
|
animation-name: enterRight;
|
|
1189
|
+
border-top-left-radius: 1rem;
|
|
1190
|
+
border-bottom-left-radius: 1rem;
|
|
1183
1191
|
}
|
|
1184
1192
|
|
|
1185
1193
|
.lexsheet[data-side="bottom"]{
|
|
1186
1194
|
animation-name: enterBottom;
|
|
1195
|
+
border-top-left-radius: 1rem;
|
|
1196
|
+
border-top-right-radius: 1rem;
|
|
1187
1197
|
}
|
|
1188
1198
|
|
|
1189
1199
|
.lexsheet[data-side="left"]{
|
|
1190
1200
|
animation-name: enterLeft;
|
|
1201
|
+
border-top-right-radius: 1rem;
|
|
1202
|
+
border-bottom-right-radius: 1rem;
|
|
1191
1203
|
}
|
|
1192
1204
|
|
|
1193
1205
|
/* Dropdown Menu */
|
|
@@ -1330,7 +1342,7 @@ a svg, svg path {
|
|
|
1330
1342
|
|
|
1331
1343
|
.lexpanel {
|
|
1332
1344
|
margin: 0;
|
|
1333
|
-
padding: var(--spacing-
|
|
1345
|
+
padding: var(--spacing-sm);
|
|
1334
1346
|
overflow: hidden;
|
|
1335
1347
|
overflow-y: scroll;
|
|
1336
1348
|
}
|
|
@@ -1426,6 +1438,7 @@ a svg, svg path {
|
|
|
1426
1438
|
color: var(--global-text-primary);
|
|
1427
1439
|
line-height: 2;
|
|
1428
1440
|
overflow: hidden;
|
|
1441
|
+
transition: background-color 0.1s linear;
|
|
1429
1442
|
}
|
|
1430
1443
|
|
|
1431
1444
|
.lexinlinecomponents .lexcomponentname.float-center {
|
|
@@ -1517,18 +1530,21 @@ a svg, svg path {
|
|
|
1517
1530
|
border-bottom: 1px solid #c1c1c1;
|
|
1518
1531
|
}
|
|
1519
1532
|
|
|
1520
|
-
.lexcomponent input
|
|
1533
|
+
.lexcomponent input {
|
|
1521
1534
|
font-family: var(--global-font);
|
|
1522
|
-
|
|
1523
|
-
color: var(--global-text-primary);
|
|
1524
|
-
--background-color: var(--global-color-secondary);
|
|
1525
|
-
background-color: var(--background-color);
|
|
1526
|
-
outline: none;
|
|
1527
|
-
border-radius: 6px;
|
|
1535
|
+
border-radius: 0.5rem;
|
|
1528
1536
|
border: 1px solid var(--global-color-transparent);
|
|
1529
1537
|
transition-property: color, background-color, border-color;
|
|
1530
1538
|
transition-timing-function: ease-out;
|
|
1531
1539
|
transition-duration: .15s;
|
|
1540
|
+
outline: none;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.lexcomponent input:not(.lexcheckbox, .lextoggle, .lexrangeslider, .lexcounter) {
|
|
1544
|
+
padding: var(--spacing-sm);
|
|
1545
|
+
color: var(--global-text-primary);
|
|
1546
|
+
--background-color: var(--global-color-secondary);
|
|
1547
|
+
background-color: var(--background-color);
|
|
1532
1548
|
}
|
|
1533
1549
|
|
|
1534
1550
|
.lexcomponent input:not(.lexcheckbox, .lextoggle, .lexrangeslider, .outline):hover {
|
|
@@ -1791,7 +1807,7 @@ a svg, svg path {
|
|
|
1791
1807
|
--border-color: var(--global-border-color);
|
|
1792
1808
|
background-color: var(--button-color);
|
|
1793
1809
|
border: 1px solid transparent;
|
|
1794
|
-
border-radius:
|
|
1810
|
+
border-radius: 0.5rem;
|
|
1795
1811
|
min-width: 1.8rem;
|
|
1796
1812
|
height: calc(var(--spacing-md) * 4);
|
|
1797
1813
|
align-content: center;
|
|
@@ -1835,11 +1851,15 @@ a svg, svg path {
|
|
|
1835
1851
|
border-color: var(--border-color);
|
|
1836
1852
|
}
|
|
1837
1853
|
|
|
1838
|
-
.lexbutton
|
|
1854
|
+
.lexbutton.bg-none {
|
|
1855
|
+
border-radius: unset;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.lexbutton:hover:not(.outline, .bg-none, :disabled) {
|
|
1839
1859
|
background-color: color-mix(in srgb, var(--button-color), #000 9%) !important;
|
|
1840
1860
|
}
|
|
1841
1861
|
|
|
1842
|
-
:root[data-theme="light"] .lexbutton:hover:not(.outline) {
|
|
1862
|
+
:root[data-theme="light"] .lexbutton:hover:not(.outline, .bg-none, :disabled) {
|
|
1843
1863
|
background-color: color-mix(in srgb, var(--button-color), #fff 9%) !important;
|
|
1844
1864
|
}
|
|
1845
1865
|
|
|
@@ -1854,12 +1874,22 @@ a svg, svg path {
|
|
|
1854
1874
|
.lexbutton:active:not(.lexbutton.combo) {
|
|
1855
1875
|
background-color: color-mix(in srgb, var(--button-color), #fff 4%);
|
|
1856
1876
|
}
|
|
1877
|
+
|
|
1857
1878
|
:root[data-theme="light"] .lexbutton:active:not(.lexbutton.combo) {
|
|
1858
1879
|
background-color: color-mix(in srgb, var(--button-color), #000 4%);
|
|
1859
1880
|
}
|
|
1860
1881
|
|
|
1861
|
-
.lexbutton:disabled, .lexbutton:disabled a {
|
|
1882
|
+
.lexbutton:disabled, .lexbutton:disabled a, .lexbutton:disabled svg {
|
|
1883
|
+
color: var(--global-text-quaternary);
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.lexbutton:disabled {
|
|
1862
1887
|
color: var(--global-text-quaternary);
|
|
1888
|
+
cursor: default;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.lexbutton:disabled:not(.bg-none) {
|
|
1892
|
+
background-color: color-mix(in srgb, var(--button-color), #000 4%) !important;
|
|
1863
1893
|
}
|
|
1864
1894
|
|
|
1865
1895
|
.lexbutton.selected {
|
|
@@ -2549,14 +2579,16 @@ input[type=number] {
|
|
|
2549
2579
|
}
|
|
2550
2580
|
|
|
2551
2581
|
.lexinputslider {
|
|
2582
|
+
--track-height: 0.25rem;
|
|
2583
|
+
--thumb-height: 0.75rem;
|
|
2584
|
+
--color: var(--global-text-quaternary);
|
|
2552
2585
|
appearance: none;
|
|
2553
2586
|
-moz-appearance: none;
|
|
2554
2587
|
-webkit-appearance: none;
|
|
2555
2588
|
border: none !important;
|
|
2556
2589
|
width: 100%;
|
|
2557
|
-
height:
|
|
2590
|
+
height: var(--track-height);
|
|
2558
2591
|
outline: none;
|
|
2559
|
-
opacity: 0.7;
|
|
2560
2592
|
transition: opacity .2s;
|
|
2561
2593
|
-moz-transition: .2s;
|
|
2562
2594
|
-webkit-transition: .2s;
|
|
@@ -2567,44 +2599,57 @@ input[type=number] {
|
|
|
2567
2599
|
}
|
|
2568
2600
|
|
|
2569
2601
|
.lexinputslider::-moz-range-track {
|
|
2570
|
-
height:
|
|
2571
|
-
background:
|
|
2602
|
+
height: var(--track-height);
|
|
2603
|
+
background: var(--color);
|
|
2604
|
+
border-radius: 0.5rem;
|
|
2572
2605
|
}
|
|
2573
2606
|
|
|
2574
2607
|
.lexinputslider::-webkit-slider-runnable-track {
|
|
2575
|
-
height:
|
|
2576
|
-
background:
|
|
2608
|
+
height: var(--track-height);
|
|
2609
|
+
background: var(--color);
|
|
2610
|
+
border-radius: 0.5rem;
|
|
2577
2611
|
}
|
|
2578
2612
|
|
|
2579
2613
|
.lexinputslider::-webkit-slider-thumb {
|
|
2580
2614
|
appearance: none;
|
|
2581
2615
|
-webkit-appearance: none;
|
|
2582
|
-
margin-top: -
|
|
2583
|
-
width:
|
|
2584
|
-
height:
|
|
2585
|
-
border:
|
|
2586
|
-
|
|
2587
|
-
background: var(--global-color-accent);
|
|
2616
|
+
margin-top: calc(var(--thumb-height) * -0.5 + var(--track-height) * 0.5);
|
|
2617
|
+
width: var(--thumb-height);
|
|
2618
|
+
height: var(--thumb-height);
|
|
2619
|
+
border-radius: 50%;
|
|
2620
|
+
background: light-dark(var(--global-color-primary), var(--global-text-primary));
|
|
2588
2621
|
cursor: pointer;
|
|
2622
|
+
box-shadow: 0px 0px 2px 1px var(--global-color-secondary);
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
:root[data-theme="light"] .lexinputslider::-webkit-slider-thumb {
|
|
2626
|
+
box-shadow: none;
|
|
2627
|
+
border: 1px solid var(--global-text-primary);
|
|
2589
2628
|
}
|
|
2590
2629
|
|
|
2591
2630
|
.lexinputslider::-moz-range-thumb {
|
|
2592
|
-
margin-top: -
|
|
2593
|
-
width:
|
|
2594
|
-
height:
|
|
2595
|
-
border-radius:
|
|
2596
|
-
background:
|
|
2631
|
+
margin-top: calc(var(--thumb-height) * -0.5 + var(--track-height) * 0.5);
|
|
2632
|
+
width: var(--thumb-height);
|
|
2633
|
+
height: var(--thumb-height);
|
|
2634
|
+
border-radius: 50%;
|
|
2635
|
+
background: light-dark(var(--global-color-primary), var(--global-text-primary));
|
|
2597
2636
|
cursor: pointer;
|
|
2637
|
+
box-shadow: 0px 0px 2px 1px var(--global-color-secondary);
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
:root[data-theme="light"] .lexinputslider::-moz-range-thumb {
|
|
2641
|
+
box-shadow: none;
|
|
2642
|
+
border: 1px solid var(--global-text-primary);
|
|
2598
2643
|
}
|
|
2599
2644
|
|
|
2600
2645
|
/* Range Component */
|
|
2601
2646
|
|
|
2602
2647
|
.lexrangeslider {
|
|
2603
2648
|
--range-thumb-color: var(--global-color-primary);
|
|
2604
|
-
--range-thumb-size:
|
|
2649
|
+
--range-thumb-size: 0.75rem;
|
|
2605
2650
|
--range-progress: currentColor;
|
|
2606
2651
|
--range-fill: 1;
|
|
2607
|
-
--range-thumb-padding: 0.
|
|
2652
|
+
--range-thumb-padding: 0.1rem;
|
|
2608
2653
|
--range-bg: color-mix(in oklab,currentColor 20%,#0000);
|
|
2609
2654
|
--range-dir: 1;
|
|
2610
2655
|
--radius-selector: 0.5rem;
|
|
@@ -4069,34 +4114,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4069
4114
|
cursor: pointer;
|
|
4070
4115
|
}
|
|
4071
4116
|
|
|
4072
|
-
/* Counter Component */
|
|
4073
|
-
|
|
4074
|
-
.lexcounter {
|
|
4075
|
-
display: flex;
|
|
4076
|
-
place-content: center;
|
|
4077
|
-
}
|
|
4078
|
-
|
|
4079
|
-
.lexcounterbox {
|
|
4080
|
-
display: grid;
|
|
4081
|
-
text-align: -webkit-center;
|
|
4082
|
-
text-align: center;
|
|
4083
|
-
margin-left: 16px;
|
|
4084
|
-
margin-right: 16px;
|
|
4085
|
-
}
|
|
4086
|
-
|
|
4087
|
-
.lexcounterbox .lexcountervalue {
|
|
4088
|
-
width: 100%;
|
|
4089
|
-
font-size: var(--global-font-size-xxl);
|
|
4090
|
-
font-weight: 700;
|
|
4091
|
-
}
|
|
4092
|
-
|
|
4093
|
-
.lexcounterbox .lexcounterlabel {
|
|
4094
|
-
width: 100%;
|
|
4095
|
-
margin-top: -18px;
|
|
4096
|
-
font-size: var(--global-font-size-sm);
|
|
4097
|
-
color: var(--global-text-secondary);
|
|
4098
|
-
}
|
|
4099
|
-
|
|
4100
4117
|
/* Table Component */
|
|
4101
4118
|
|
|
4102
4119
|
.lextable {
|
|
@@ -6228,13 +6245,13 @@ ul.lexassetscontent {
|
|
|
6228
6245
|
.text-center { text-align: center }
|
|
6229
6246
|
.text-end { text-align: end }
|
|
6230
6247
|
|
|
6231
|
-
.leading-none { line-height: 1 }
|
|
6232
|
-
.leading-tight { line-height: 1.25 }
|
|
6233
|
-
.leading-snug { line-height: 1.375 }
|
|
6234
|
-
.leading-normal { line-height: 1.5 }
|
|
6235
|
-
.leading-relaxed { line-height: 1.625 }
|
|
6236
|
-
.leading-loose { line-height: 2 }
|
|
6237
|
-
.leading-inherit { line-height: inherit }
|
|
6248
|
+
.leading-none { line-height: 1 !important }
|
|
6249
|
+
.leading-tight { line-height: 1.25 !important }
|
|
6250
|
+
.leading-snug { line-height: 1.375 !important }
|
|
6251
|
+
.leading-normal { line-height: 1.5 !important }
|
|
6252
|
+
.leading-relaxed { line-height: 1.625 !important }
|
|
6253
|
+
.leading-loose { line-height: 2 !important }
|
|
6254
|
+
.leading-inherit { line-height: inherit !important }
|
|
6238
6255
|
|
|
6239
6256
|
.leading-3 { line-height: 0.75rem }
|
|
6240
6257
|
.leading-4 { line-height: 1rem }
|
|
@@ -6464,7 +6481,10 @@ ul.lexassetscontent {
|
|
|
6464
6481
|
.text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6465
6482
|
.text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6466
6483
|
.text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6467
|
-
.text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.
|
|
6484
|
+
.text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6485
|
+
.text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6486
|
+
.text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6487
|
+
.text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6468
6488
|
|
|
6469
6489
|
.font-light { font-weight: 300 }
|
|
6470
6490
|
.font-normal { font-weight: 400 }
|
|
@@ -6665,6 +6685,38 @@ ul.lexassetscontent {
|
|
|
6665
6685
|
|
|
6666
6686
|
/* Media queries for sizes */
|
|
6667
6687
|
|
|
6688
|
+
@media (min-width: 420px) {
|
|
6689
|
+
.xs\:hidden { display: none !important }
|
|
6690
|
+
.xs\:block { display: block !important }
|
|
6691
|
+
.xs\:inline { display: inline !important }
|
|
6692
|
+
.xs\:flex { display: flex !important }
|
|
6693
|
+
.xs\:grid { display: grid !important }
|
|
6694
|
+
.xs\:inline-flex { display: inline-flex !important }
|
|
6695
|
+
.xs\:inline-block { display: inline-block !important }
|
|
6696
|
+
.xs\:flex-fill { flex: 1 0 0% !important }
|
|
6697
|
+
|
|
6698
|
+
.xs\:w-full { width: 100% !important }
|
|
6699
|
+
.xs\:w-screen { width: 100vw !important }
|
|
6700
|
+
.xs\:w-auto { width: auto !important }
|
|
6701
|
+
.xs\:h-full { height: 100% !important }
|
|
6702
|
+
.xs\:h-screen { height: 100vh !important }
|
|
6703
|
+
.xs\:h-auto { height: auto !important }
|
|
6704
|
+
.xs\:w-2\/3 { width: 66.666% !important}
|
|
6705
|
+
.xs\:w-1\/2 { width: 50% !important }
|
|
6706
|
+
.xs\:w-1\/3 { width: 33.333% !important }
|
|
6707
|
+
.xs\:w-1\/4 { width: 25% !important }
|
|
6708
|
+
|
|
6709
|
+
.xs\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6710
|
+
.xs\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6711
|
+
.xs\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6712
|
+
.xs\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6713
|
+
.xs\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6714
|
+
.xs\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6715
|
+
.xs\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6716
|
+
.xs\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6717
|
+
.xs\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6718
|
+
}
|
|
6719
|
+
|
|
6668
6720
|
@media (min-width: 768px) {
|
|
6669
6721
|
.sm\:hidden { display: none !important }
|
|
6670
6722
|
.sm\:block { display: block !important }
|
|
@@ -6681,9 +6733,20 @@ ul.lexassetscontent {
|
|
|
6681
6733
|
.sm\:h-full { height: 100% !important }
|
|
6682
6734
|
.sm\:h-screen { height: 100vh !important }
|
|
6683
6735
|
.sm\:h-auto { height: auto !important }
|
|
6736
|
+
.sm\:w-2\/3 { width: 66.666% !important}
|
|
6684
6737
|
.sm\:w-1\/2 { width: 50% !important }
|
|
6685
6738
|
.sm\:w-1\/3 { width: 33.333% !important }
|
|
6686
6739
|
.sm\:w-1\/4 { width: 25% !important }
|
|
6740
|
+
|
|
6741
|
+
.sm\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6742
|
+
.sm\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6743
|
+
.sm\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6744
|
+
.sm\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6745
|
+
.sm\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6746
|
+
.sm\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6747
|
+
.sm\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6748
|
+
.sm\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6749
|
+
.sm\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6687
6750
|
}
|
|
6688
6751
|
|
|
6689
6752
|
@media (min-width: 1024px) {
|
|
@@ -6702,9 +6765,20 @@ ul.lexassetscontent {
|
|
|
6702
6765
|
.md\:h-full { height: 100% !important }
|
|
6703
6766
|
.md\:h-screen { height: 100vh !important }
|
|
6704
6767
|
.md\:h-auto { height: auto !important }
|
|
6768
|
+
.md\:w-2\/3 { width: 66.666% !important}
|
|
6705
6769
|
.md\:w-1\/2 { width: 50% !important }
|
|
6706
6770
|
.md\:w-1\/3 { width: 33.333% !important }
|
|
6707
6771
|
.md\:w-1\/4 { width: 25% !important }
|
|
6772
|
+
|
|
6773
|
+
.md\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6774
|
+
.md\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6775
|
+
.md\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6776
|
+
.md\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6777
|
+
.md\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6778
|
+
.md\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6779
|
+
.md\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6780
|
+
.md\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6781
|
+
.md\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6708
6782
|
}
|
|
6709
6783
|
|
|
6710
6784
|
@media (min-width: 1440px) {
|
|
@@ -6723,9 +6797,20 @@ ul.lexassetscontent {
|
|
|
6723
6797
|
.lg\:h-full { height: 100% !important }
|
|
6724
6798
|
.lg\:h-screen { height: 100vh !important }
|
|
6725
6799
|
.lg\:h-auto { height: auto !important }
|
|
6800
|
+
.lg\:w-2\/3 { width: 66.666% !important}
|
|
6726
6801
|
.lg\:w-1\/2 { width: 50% !important }
|
|
6727
6802
|
.lg\:w-1\/3 { width: 33.333% !important }
|
|
6728
6803
|
.lg\:w-1\/4 { width: 25% !important }
|
|
6804
|
+
|
|
6805
|
+
.lg\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6806
|
+
.lg\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6807
|
+
.lg\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6808
|
+
.lg\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6809
|
+
.lg\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6810
|
+
.lg\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6811
|
+
.lg\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6812
|
+
.lg\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6813
|
+
.lg\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6729
6814
|
}
|
|
6730
6815
|
|
|
6731
6816
|
@media (min-width: 1920px) {
|
|
@@ -6744,9 +6829,20 @@ ul.lexassetscontent {
|
|
|
6744
6829
|
.xl\:h-full { height: 100% !important }
|
|
6745
6830
|
.xl\:h-screen { height: 100vh !important }
|
|
6746
6831
|
.xl\:h-auto { height: auto !important }
|
|
6832
|
+
.xl\:w-2\/3 { width: 66.666% !important}
|
|
6747
6833
|
.xl\:w-1\/2 { width: 50% !important }
|
|
6748
6834
|
.xl\:w-1\/3 { width: 33.333% !important }
|
|
6749
6835
|
.xl\:w-1\/4 { width: 25% !important }
|
|
6836
|
+
|
|
6837
|
+
.xl\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6838
|
+
.xl\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6839
|
+
.xl\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6840
|
+
.xl\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6841
|
+
.xl\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6842
|
+
.xl\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6843
|
+
.xl\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6844
|
+
.xl\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6845
|
+
.xl\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6750
6846
|
}
|
|
6751
6847
|
|
|
6752
6848
|
@media (min-width: 2560px) {
|
|
@@ -6765,9 +6861,20 @@ ul.lexassetscontent {
|
|
|
6765
6861
|
.xxl\:h-full { height: 100% !important }
|
|
6766
6862
|
.xxl\:h-screen { height: 100vh !important }
|
|
6767
6863
|
.xxl\:h-auto { height: auto !important }
|
|
6864
|
+
.xxl\:w-2\/3 { width: 66.666% !important}
|
|
6768
6865
|
.xxl\:w-1\/2 { width: 50% !important }
|
|
6769
6866
|
.xxl\:w-1\/3 { width: 33.333% !important }
|
|
6770
6867
|
.xxl\:w-1\/4 { width: 25% !important }
|
|
6868
|
+
|
|
6869
|
+
.xxl\:text-xs { font-size: var(--global-font-size-xs); line-height: 0.9rem }
|
|
6870
|
+
.xxl\:text-sm { font-size: var(--global-font-size-sm); line-height: 1rem }
|
|
6871
|
+
.xxl\:text-md { font-size: var(--global-font-size); line-height: 1.2rem }
|
|
6872
|
+
.xxl\:text-lg { font-size: var(--global-font-size-lg); line-height: 1.3rem }
|
|
6873
|
+
.xxl\:text-xl { font-size: var(--global-font-size-xl); line-height: 1.4rem }
|
|
6874
|
+
.xxl\:text-xxl { font-size: var(--global-font-size-xxl); line-height: 1.5em }
|
|
6875
|
+
.xxl\:text-3xl { font-size: var(--global-font-size-3xl); line-height: 1.65rem }
|
|
6876
|
+
.xxl\:text-4xl { font-size: var(--global-font-size-4xl); line-height: 1.8rem }
|
|
6877
|
+
.xxl\:text-5xl { font-size: var(--global-font-size-5xl); line-height: 2rem }
|
|
6771
6878
|
}
|
|
6772
6879
|
|
|
6773
6880
|
/* lexguidocs.css @jxarco */
|