@phantompixeldev/retrocss 2.0.0 → 2.1.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/retro.css CHANGED
@@ -227,6 +227,7 @@
227
227
  --retro-teal: #008080; /* Fallback for IE11 */
228
228
  --retro-teal-rgb: 0, 128, 128; /* Fallback for IE11 */
229
229
  --retro-tan: #d2b48c; /* Fallback for IE11 */
230
+ --retro-tan-rgb: 210, 180, 140;
230
231
  --retro-pink: #ff69b4; /* Fallback for IE11 */
231
232
  --retro-pink-rgb: 255, 105, 180; /* Fallback for IE11 */
232
233
  --retro-lime: #32cd32; /* Fallback for IE11 */
@@ -459,6 +460,7 @@
459
460
  --retro-teal: #1abc9c;
460
461
  --retro-teal-rgb: 26, 188, 156;
461
462
  --retro-tan: #d4b483;
463
+ --retro-tan-rgb: 212, 180, 131;
462
464
  --retro-pink: #e84393;
463
465
  --retro-pink-rgb: 232, 67, 147;
464
466
  --retro-lime: #00b894;
@@ -1401,9 +1403,23 @@ h5, h6 {
1401
1403
  * <article class="retro-prose">...</article>
1402
1404
  */
1403
1405
  .retro-prose {
1404
- max-width: var(--retro-measure);
1405
1406
  line-height: var(--retro-line-height);
1406
1407
  }
1408
+ .retro-prose > p,
1409
+ .retro-prose > ul,
1410
+ .retro-prose > ol,
1411
+ .retro-prose > dl,
1412
+ .retro-prose > blockquote,
1413
+ .retro-prose > h1, .retro-prose > h2, .retro-prose > h3, .retro-prose > h4, .retro-prose > h5, .retro-prose > h6 {
1414
+ max-width: var(--retro-measure);
1415
+ }
1416
+ .retro-prose > pre,
1417
+ .retro-prose > table,
1418
+ .retro-prose > figure,
1419
+ .retro-prose > .retro-code,
1420
+ .retro-prose > .retro-table {
1421
+ max-width: 100%;
1422
+ }
1407
1423
  .retro-prose p, .retro-prose ul, .retro-prose ol, .retro-prose blockquote, .retro-prose pre {
1408
1424
  margin-bottom: var(--retro-spacing-md);
1409
1425
  }
@@ -1512,6 +1528,28 @@ h5, h6 {
1512
1528
  background: var(--retro-warning-active);
1513
1529
  }
1514
1530
 
1531
+ .retro-btn-info {
1532
+ background: var(--retro-info);
1533
+ color: var(--retro-info-fg);
1534
+ }
1535
+ .retro-btn-info:hover {
1536
+ background: var(--retro-info-hover);
1537
+ }
1538
+ .retro-btn-info:active {
1539
+ background: var(--retro-info-active);
1540
+ }
1541
+
1542
+ .retro-btn-teal {
1543
+ background: var(--retro-teal);
1544
+ color: var(--retro-teal-fg);
1545
+ }
1546
+ .retro-btn-teal:hover {
1547
+ background: var(--retro-teal-hover);
1548
+ }
1549
+ .retro-btn-teal:active {
1550
+ background: var(--retro-teal-active);
1551
+ }
1552
+
1515
1553
  .retro-btn-xs {
1516
1554
  font-size: var(--retro-font-size-xs);
1517
1555
  padding: 2px 8px;
@@ -1542,6 +1580,70 @@ h5, h6 {
1542
1580
  padding: 10px 24px;
1543
1581
  }
1544
1582
 
1583
+ .retro-btn-secondary {
1584
+ background: var(--retro-gray);
1585
+ color: var(--retro-gray-fg);
1586
+ }
1587
+ .retro-btn-secondary:hover {
1588
+ background: var(--retro-gray-hover);
1589
+ }
1590
+ .retro-btn-secondary:active {
1591
+ background: var(--retro-gray-active);
1592
+ }
1593
+
1594
+ .retro-btn-block {
1595
+ display: block;
1596
+ width: 100%;
1597
+ }
1598
+
1599
+ /**
1600
+ * @name Retro Avatar
1601
+ * @group components
1602
+ * @description
1603
+ * Square bevelled tile for a user glyph, emoji or initial. The demo pages were
1604
+ * hand-rolling this with inline width/height/flex styles on every instance.
1605
+ * @example html
1606
+ * <div class="retro-avatar retro-bg-primary">🧑‍💻</div>
1607
+ * <div class="retro-avatar retro-avatar-lg retro-bg-success">AB</div>
1608
+ */
1609
+ .retro-avatar {
1610
+ display: inline-flex;
1611
+ align-items: center;
1612
+ justify-content: center;
1613
+ flex-shrink: 0;
1614
+ width: 40px;
1615
+ height: 40px;
1616
+ font-size: var(--retro-font-size-lg);
1617
+ line-height: 1;
1618
+ font-weight: var(--retro-font-weight-bold);
1619
+ background: var(--retro-light);
1620
+ color: var(--retro-text);
1621
+ border: var(--retro-border-width-thick) solid var(--retro-border-dark);
1622
+ box-shadow: var(--retro-border-raised);
1623
+ overflow: hidden;
1624
+ user-select: none;
1625
+ }
1626
+ .retro-avatar img {
1627
+ width: 100%;
1628
+ height: 100%;
1629
+ object-fit: cover;
1630
+ }
1631
+ .retro-avatar-sm {
1632
+ width: 28px;
1633
+ height: 28px;
1634
+ font-size: var(--retro-font-size-sm);
1635
+ }
1636
+ .retro-avatar-lg {
1637
+ width: 56px;
1638
+ height: 56px;
1639
+ font-size: var(--retro-font-size-2xl);
1640
+ }
1641
+ .retro-avatar-xl {
1642
+ width: 72px;
1643
+ height: 72px;
1644
+ font-size: var(--retro-font-size-3xl);
1645
+ }
1646
+
1545
1647
  /* RetroCSS - A Retro-Inspired CSS Framework */
1546
1648
  /* Main SCSS file that imports all components */
1547
1649
  /* Core */
@@ -1922,6 +2024,69 @@ input[type=radio].retro-input:focus-visible {
1922
2024
  margin-right: 16px;
1923
2025
  }
1924
2026
 
2027
+ /**
2028
+ * @name Form Shell
2029
+ * @group components
2030
+ * @description
2031
+ * Wrapper and a few pieces the demo pages referenced but the framework never
2032
+ * shipped: .retro-form, .retro-input-icon, .retro-file-input, .retro-listbox.
2033
+ */
2034
+ .retro-form {
2035
+ display: flex;
2036
+ flex-direction: column;
2037
+ gap: var(--retro-spacing-md);
2038
+ width: 100%;
2039
+ }
2040
+
2041
+ .retro-input-icon {
2042
+ position: relative;
2043
+ display: flex;
2044
+ align-items: center;
2045
+ width: 100%;
2046
+ }
2047
+ .retro-input-icon > .retro-input,
2048
+ .retro-input-icon > input {
2049
+ width: 100%;
2050
+ padding-left: 2.2em;
2051
+ }
2052
+ .retro-input-icon > :first-child:not(input):not(.retro-input) {
2053
+ position: absolute;
2054
+ left: 0.6em;
2055
+ pointer-events: none;
2056
+ color: var(--retro-text-muted);
2057
+ line-height: 1;
2058
+ }
2059
+
2060
+ .retro-file-input {
2061
+ display: block;
2062
+ width: 100%;
2063
+ padding: var(--retro-spacing-xs);
2064
+ background: var(--retro-input-bg);
2065
+ color: var(--retro-input-text);
2066
+ border: var(--retro-border-width-thick) solid var(--retro-border-dark);
2067
+ box-shadow: var(--retro-border-sunken);
2068
+ font-family: var(--retro-font);
2069
+ font-size: var(--retro-font-size);
2070
+ }
2071
+
2072
+ .retro-listbox {
2073
+ width: 100%;
2074
+ padding: 0;
2075
+ background: var(--retro-input-bg);
2076
+ color: var(--retro-input-text);
2077
+ border: var(--retro-border-width-thick) solid var(--retro-border-dark);
2078
+ box-shadow: var(--retro-border-sunken);
2079
+ font-family: var(--retro-font);
2080
+ font-size: var(--retro-font-size);
2081
+ }
2082
+ .retro-listbox option {
2083
+ padding: var(--retro-spacing-xs) var(--retro-spacing-sm);
2084
+ }
2085
+ .retro-listbox option:checked {
2086
+ background: var(--retro-primary);
2087
+ color: var(--retro-primary-fg);
2088
+ }
2089
+
1925
2090
  /* RetroCSS - A Retro-Inspired CSS Framework */
1926
2091
  /* Main SCSS file that imports all components */
1927
2092
  /* Core */
@@ -2195,6 +2360,15 @@ input[type=radio].retro-input:focus-visible {
2195
2360
  display: block;
2196
2361
  }
2197
2362
 
2363
+ .retro-alert-header {
2364
+ width: 100%;
2365
+ margin: 0 0 var(--retro-spacing-xs);
2366
+ font-weight: var(--retro-font-weight-bold);
2367
+ font-size: var(--retro-font-size-lg);
2368
+ color: inherit;
2369
+ text-align: left;
2370
+ }
2371
+
2198
2372
  .retro-alert-body, .retro-toast-body {
2199
2373
  padding: 0;
2200
2374
  margin: 0;
@@ -3052,6 +3226,33 @@ input[type=radio].retro-input:focus-visible {
3052
3226
  z-index: 2;
3053
3227
  }
3054
3228
 
3229
+ /**
3230
+ * @name Tab Panes
3231
+ * @group components
3232
+ * @description
3233
+ * Panel bodies for the tabbed / underlined / button nav variants. Referenced by
3234
+ * the demos but never defined, so tab content rendered unstyled and every pane
3235
+ * stayed visible at once.
3236
+ */
3237
+ .retro-tab-pane {
3238
+ display: none;
3239
+ padding: var(--retro-spacing-md);
3240
+ background: var(--retro-bg);
3241
+ color: var(--retro-text);
3242
+ border: var(--retro-border-width-thick) solid var(--retro-border-dark);
3243
+ border-top: none;
3244
+ }
3245
+ .retro-tab-pane.active {
3246
+ display: block;
3247
+ }
3248
+
3249
+ .retro-tab-pane-underlined,
3250
+ .retro-tab-pane-buttons {
3251
+ border: none;
3252
+ padding: var(--retro-spacing-md) 0;
3253
+ background: transparent;
3254
+ }
3255
+
3055
3256
  /* RetroCSS - A Retro-Inspired CSS Framework */
3056
3257
  /* Main SCSS file that imports all components */
3057
3258
  /* Core */
@@ -3110,6 +3311,22 @@ input[type=radio].retro-input:focus-visible {
3110
3311
  background-position: 18px 0;
3111
3312
  }
3112
3313
  }
3314
+ .retro-progress-bar-success {
3315
+ background: var(--retro-success);
3316
+ }
3317
+
3318
+ .retro-progress-bar-danger {
3319
+ background: var(--retro-danger);
3320
+ }
3321
+
3322
+ .retro-progress-bar-warning {
3323
+ background: var(--retro-warning);
3324
+ }
3325
+
3326
+ .retro-progress-bar-info {
3327
+ background: var(--retro-info);
3328
+ }
3329
+
3113
3330
  .retro-badge {
3114
3331
  display: inline-flex;
3115
3332
  align-items: center;
@@ -4669,316 +4886,1763 @@ input[type=datetime-local].retro-input.retro-input-sm {
4669
4886
  box-shadow: var(--retro-box-shadow-outset-button);
4670
4887
  }
4671
4888
 
4672
- .mt-0 {
4673
- margin-top: 0px !important;
4889
+ /**
4890
+ * @name Spacing Utilities
4891
+ * @group utilities
4892
+ * @description
4893
+ * Margin and padding on a numeric scale. Every page in this repo already used
4894
+ * the `retro-` prefixed names (retro-mt-5, retro-p-4); only the unprefixed
4895
+ * ones existed, so none of them did anything.
4896
+ *
4897
+ * Scale: 0=0 1=4px 2=8px 3=12px 4=16px 5=24px 6=32px 7=40px 8=48px
4898
+ * @example html
4899
+ * <div class="retro-mt-4 retro-px-5">…</div>
4900
+ */
4901
+ .retro-m-0 {
4902
+ margin: 0 !important;
4674
4903
  }
4675
4904
 
4676
- .mb-0 {
4677
- margin-bottom: 0px !important;
4905
+ .retro-mt-0 {
4906
+ margin-top: 0 !important;
4678
4907
  }
4679
4908
 
4680
- .ml-0 {
4681
- margin-left: 0px !important;
4909
+ .retro-mb-0 {
4910
+ margin-bottom: 0 !important;
4682
4911
  }
4683
4912
 
4684
- .mr-0 {
4685
- margin-right: 0px !important;
4913
+ .retro-ml-0 {
4914
+ margin-left: 0 !important;
4686
4915
  }
4687
4916
 
4688
- .mx-0 {
4689
- margin-left: 0px !important;
4690
- margin-right: 0px !important;
4917
+ .retro-mr-0 {
4918
+ margin-right: 0 !important;
4691
4919
  }
4692
4920
 
4693
- .my-0 {
4694
- margin-top: 0px !important;
4695
- margin-bottom: 0px !important;
4921
+ .retro-mx-0 {
4922
+ margin-left: 0 !important;
4923
+ margin-right: 0 !important;
4696
4924
  }
4697
4925
 
4698
- .pt-0 {
4699
- padding-top: 0px !important;
4926
+ .retro-my-0 {
4927
+ margin-top: 0 !important;
4928
+ margin-bottom: 0 !important;
4700
4929
  }
4701
4930
 
4702
- .pb-0 {
4703
- padding-bottom: 0px !important;
4931
+ .retro-p-0 {
4932
+ padding: 0 !important;
4704
4933
  }
4705
4934
 
4706
- .pl-0 {
4707
- padding-left: 0px !important;
4935
+ .retro-pt-0 {
4936
+ padding-top: 0 !important;
4708
4937
  }
4709
4938
 
4710
- .pr-0 {
4711
- padding-right: 0px !important;
4939
+ .retro-pb-0 {
4940
+ padding-bottom: 0 !important;
4712
4941
  }
4713
4942
 
4714
- .px-0 {
4715
- padding-left: 0px !important;
4716
- padding-right: 0px !important;
4943
+ .retro-pl-0 {
4944
+ padding-left: 0 !important;
4717
4945
  }
4718
4946
 
4719
- .py-0 {
4720
- padding-top: 0px !important;
4721
- padding-bottom: 0px !important;
4947
+ .retro-pr-0 {
4948
+ padding-right: 0 !important;
4722
4949
  }
4723
4950
 
4724
- .mt-1 {
4951
+ .retro-px-0 {
4952
+ padding-left: 0 !important;
4953
+ padding-right: 0 !important;
4954
+ }
4955
+
4956
+ .retro-py-0 {
4957
+ padding-top: 0 !important;
4958
+ padding-bottom: 0 !important;
4959
+ }
4960
+
4961
+ .retro-gap-0 {
4962
+ gap: 0 !important;
4963
+ }
4964
+
4965
+ .retro-m-1 {
4966
+ margin: 4px !important;
4967
+ }
4968
+
4969
+ .retro-mt-1 {
4725
4970
  margin-top: 4px !important;
4726
4971
  }
4727
4972
 
4728
- .mb-1 {
4973
+ .retro-mb-1 {
4729
4974
  margin-bottom: 4px !important;
4730
4975
  }
4731
4976
 
4732
- .ml-1 {
4977
+ .retro-ml-1 {
4733
4978
  margin-left: 4px !important;
4734
4979
  }
4735
4980
 
4736
- .mr-1 {
4981
+ .retro-mr-1 {
4737
4982
  margin-right: 4px !important;
4738
4983
  }
4739
4984
 
4740
- .mx-1 {
4985
+ .retro-mx-1 {
4741
4986
  margin-left: 4px !important;
4742
4987
  margin-right: 4px !important;
4743
4988
  }
4744
4989
 
4745
- .my-1 {
4990
+ .retro-my-1 {
4746
4991
  margin-top: 4px !important;
4747
4992
  margin-bottom: 4px !important;
4748
4993
  }
4749
4994
 
4750
- .pt-1 {
4995
+ .retro-p-1 {
4996
+ padding: 4px !important;
4997
+ }
4998
+
4999
+ .retro-pt-1 {
4751
5000
  padding-top: 4px !important;
4752
5001
  }
4753
5002
 
4754
- .pb-1 {
5003
+ .retro-pb-1 {
4755
5004
  padding-bottom: 4px !important;
4756
5005
  }
4757
5006
 
4758
- .pl-1 {
5007
+ .retro-pl-1 {
4759
5008
  padding-left: 4px !important;
4760
5009
  }
4761
5010
 
4762
- .pr-1 {
5011
+ .retro-pr-1 {
4763
5012
  padding-right: 4px !important;
4764
5013
  }
4765
5014
 
4766
- .px-1 {
5015
+ .retro-px-1 {
4767
5016
  padding-left: 4px !important;
4768
5017
  padding-right: 4px !important;
4769
5018
  }
4770
5019
 
4771
- .py-1 {
5020
+ .retro-py-1 {
4772
5021
  padding-top: 4px !important;
4773
5022
  padding-bottom: 4px !important;
4774
5023
  }
4775
5024
 
4776
- .mt-2 {
5025
+ .retro-gap-1 {
5026
+ gap: 4px !important;
5027
+ }
5028
+
5029
+ .retro-m-2 {
5030
+ margin: 8px !important;
5031
+ }
5032
+
5033
+ .retro-mt-2 {
4777
5034
  margin-top: 8px !important;
4778
5035
  }
4779
5036
 
4780
- .mb-2 {
5037
+ .retro-mb-2 {
4781
5038
  margin-bottom: 8px !important;
4782
5039
  }
4783
5040
 
4784
- .ml-2 {
5041
+ .retro-ml-2 {
4785
5042
  margin-left: 8px !important;
4786
5043
  }
4787
5044
 
4788
- .mr-2 {
5045
+ .retro-mr-2 {
4789
5046
  margin-right: 8px !important;
4790
5047
  }
4791
5048
 
4792
- .mx-2 {
5049
+ .retro-mx-2 {
4793
5050
  margin-left: 8px !important;
4794
5051
  margin-right: 8px !important;
4795
5052
  }
4796
5053
 
4797
- .my-2 {
5054
+ .retro-my-2 {
4798
5055
  margin-top: 8px !important;
4799
5056
  margin-bottom: 8px !important;
4800
5057
  }
4801
5058
 
4802
- .pt-2 {
5059
+ .retro-p-2 {
5060
+ padding: 8px !important;
5061
+ }
5062
+
5063
+ .retro-pt-2 {
4803
5064
  padding-top: 8px !important;
4804
5065
  }
4805
5066
 
4806
- .pb-2 {
5067
+ .retro-pb-2 {
4807
5068
  padding-bottom: 8px !important;
4808
5069
  }
4809
5070
 
4810
- .pl-2 {
5071
+ .retro-pl-2 {
4811
5072
  padding-left: 8px !important;
4812
5073
  }
4813
5074
 
4814
- .pr-2 {
5075
+ .retro-pr-2 {
4815
5076
  padding-right: 8px !important;
4816
5077
  }
4817
5078
 
4818
- .px-2 {
5079
+ .retro-px-2 {
4819
5080
  padding-left: 8px !important;
4820
5081
  padding-right: 8px !important;
4821
5082
  }
4822
5083
 
4823
- .py-2 {
5084
+ .retro-py-2 {
4824
5085
  padding-top: 8px !important;
4825
5086
  padding-bottom: 8px !important;
4826
5087
  }
4827
5088
 
4828
- .mt-3 {
5089
+ .retro-gap-2 {
5090
+ gap: 8px !important;
5091
+ }
5092
+
5093
+ .retro-m-3 {
5094
+ margin: 12px !important;
5095
+ }
5096
+
5097
+ .retro-mt-3 {
4829
5098
  margin-top: 12px !important;
4830
5099
  }
4831
5100
 
4832
- .mb-3 {
5101
+ .retro-mb-3 {
4833
5102
  margin-bottom: 12px !important;
4834
5103
  }
4835
5104
 
4836
- .ml-3 {
5105
+ .retro-ml-3 {
4837
5106
  margin-left: 12px !important;
4838
5107
  }
4839
5108
 
4840
- .mr-3 {
5109
+ .retro-mr-3 {
4841
5110
  margin-right: 12px !important;
4842
5111
  }
4843
5112
 
4844
- .mx-3 {
5113
+ .retro-mx-3 {
4845
5114
  margin-left: 12px !important;
4846
5115
  margin-right: 12px !important;
4847
5116
  }
4848
5117
 
4849
- .my-3 {
5118
+ .retro-my-3 {
4850
5119
  margin-top: 12px !important;
4851
5120
  margin-bottom: 12px !important;
4852
5121
  }
4853
5122
 
4854
- .pt-3 {
5123
+ .retro-p-3 {
5124
+ padding: 12px !important;
5125
+ }
5126
+
5127
+ .retro-pt-3 {
4855
5128
  padding-top: 12px !important;
4856
5129
  }
4857
5130
 
4858
- .pb-3 {
5131
+ .retro-pb-3 {
4859
5132
  padding-bottom: 12px !important;
4860
5133
  }
4861
5134
 
4862
- .pl-3 {
5135
+ .retro-pl-3 {
4863
5136
  padding-left: 12px !important;
4864
5137
  }
4865
5138
 
4866
- .pr-3 {
5139
+ .retro-pr-3 {
4867
5140
  padding-right: 12px !important;
4868
5141
  }
4869
5142
 
4870
- .px-3 {
5143
+ .retro-px-3 {
4871
5144
  padding-left: 12px !important;
4872
5145
  padding-right: 12px !important;
4873
5146
  }
4874
5147
 
4875
- .py-3 {
5148
+ .retro-py-3 {
4876
5149
  padding-top: 12px !important;
4877
5150
  padding-bottom: 12px !important;
4878
5151
  }
4879
5152
 
4880
- .mt-4 {
5153
+ .retro-gap-3 {
5154
+ gap: 12px !important;
5155
+ }
5156
+
5157
+ .retro-m-4 {
5158
+ margin: 16px !important;
5159
+ }
5160
+
5161
+ .retro-mt-4 {
4881
5162
  margin-top: 16px !important;
4882
5163
  }
4883
5164
 
4884
- .mb-4 {
5165
+ .retro-mb-4 {
4885
5166
  margin-bottom: 16px !important;
4886
5167
  }
4887
5168
 
4888
- .ml-4 {
5169
+ .retro-ml-4 {
4889
5170
  margin-left: 16px !important;
4890
5171
  }
4891
5172
 
4892
- .mr-4 {
5173
+ .retro-mr-4 {
4893
5174
  margin-right: 16px !important;
4894
5175
  }
4895
5176
 
4896
- .mx-4 {
5177
+ .retro-mx-4 {
4897
5178
  margin-left: 16px !important;
4898
5179
  margin-right: 16px !important;
4899
5180
  }
4900
5181
 
4901
- .my-4 {
5182
+ .retro-my-4 {
4902
5183
  margin-top: 16px !important;
4903
5184
  margin-bottom: 16px !important;
4904
5185
  }
4905
5186
 
4906
- .pt-4 {
5187
+ .retro-p-4 {
5188
+ padding: 16px !important;
5189
+ }
5190
+
5191
+ .retro-pt-4 {
4907
5192
  padding-top: 16px !important;
4908
5193
  }
4909
5194
 
4910
- .pb-4 {
5195
+ .retro-pb-4 {
4911
5196
  padding-bottom: 16px !important;
4912
5197
  }
4913
5198
 
4914
- .pl-4 {
5199
+ .retro-pl-4 {
4915
5200
  padding-left: 16px !important;
4916
5201
  }
4917
5202
 
4918
- .pr-4 {
5203
+ .retro-pr-4 {
4919
5204
  padding-right: 16px !important;
4920
5205
  }
4921
5206
 
4922
- .px-4 {
5207
+ .retro-px-4 {
4923
5208
  padding-left: 16px !important;
4924
5209
  padding-right: 16px !important;
4925
5210
  }
4926
5211
 
4927
- .py-4 {
5212
+ .retro-py-4 {
4928
5213
  padding-top: 16px !important;
4929
5214
  padding-bottom: 16px !important;
4930
5215
  }
4931
5216
 
4932
- .mt-5 {
4933
- margin-top: 20px !important;
5217
+ .retro-gap-4 {
5218
+ gap: 16px !important;
5219
+ }
5220
+
5221
+ .retro-m-5 {
5222
+ margin: 24px !important;
5223
+ }
5224
+
5225
+ .retro-mt-5 {
5226
+ margin-top: 24px !important;
5227
+ }
5228
+
5229
+ .retro-mb-5 {
5230
+ margin-bottom: 24px !important;
5231
+ }
5232
+
5233
+ .retro-ml-5 {
5234
+ margin-left: 24px !important;
5235
+ }
5236
+
5237
+ .retro-mr-5 {
5238
+ margin-right: 24px !important;
5239
+ }
5240
+
5241
+ .retro-mx-5 {
5242
+ margin-left: 24px !important;
5243
+ margin-right: 24px !important;
5244
+ }
5245
+
5246
+ .retro-my-5 {
5247
+ margin-top: 24px !important;
5248
+ margin-bottom: 24px !important;
5249
+ }
5250
+
5251
+ .retro-p-5 {
5252
+ padding: 24px !important;
5253
+ }
5254
+
5255
+ .retro-pt-5 {
5256
+ padding-top: 24px !important;
5257
+ }
5258
+
5259
+ .retro-pb-5 {
5260
+ padding-bottom: 24px !important;
5261
+ }
5262
+
5263
+ .retro-pl-5 {
5264
+ padding-left: 24px !important;
5265
+ }
5266
+
5267
+ .retro-pr-5 {
5268
+ padding-right: 24px !important;
5269
+ }
5270
+
5271
+ .retro-px-5 {
5272
+ padding-left: 24px !important;
5273
+ padding-right: 24px !important;
5274
+ }
5275
+
5276
+ .retro-py-5 {
5277
+ padding-top: 24px !important;
5278
+ padding-bottom: 24px !important;
5279
+ }
5280
+
5281
+ .retro-gap-5 {
5282
+ gap: 24px !important;
5283
+ }
5284
+
5285
+ .retro-m-6 {
5286
+ margin: 32px !important;
5287
+ }
5288
+
5289
+ .retro-mt-6 {
5290
+ margin-top: 32px !important;
5291
+ }
5292
+
5293
+ .retro-mb-6 {
5294
+ margin-bottom: 32px !important;
5295
+ }
5296
+
5297
+ .retro-ml-6 {
5298
+ margin-left: 32px !important;
5299
+ }
5300
+
5301
+ .retro-mr-6 {
5302
+ margin-right: 32px !important;
5303
+ }
5304
+
5305
+ .retro-mx-6 {
5306
+ margin-left: 32px !important;
5307
+ margin-right: 32px !important;
5308
+ }
5309
+
5310
+ .retro-my-6 {
5311
+ margin-top: 32px !important;
5312
+ margin-bottom: 32px !important;
5313
+ }
5314
+
5315
+ .retro-p-6 {
5316
+ padding: 32px !important;
5317
+ }
5318
+
5319
+ .retro-pt-6 {
5320
+ padding-top: 32px !important;
5321
+ }
5322
+
5323
+ .retro-pb-6 {
5324
+ padding-bottom: 32px !important;
5325
+ }
5326
+
5327
+ .retro-pl-6 {
5328
+ padding-left: 32px !important;
5329
+ }
5330
+
5331
+ .retro-pr-6 {
5332
+ padding-right: 32px !important;
5333
+ }
5334
+
5335
+ .retro-px-6 {
5336
+ padding-left: 32px !important;
5337
+ padding-right: 32px !important;
5338
+ }
5339
+
5340
+ .retro-py-6 {
5341
+ padding-top: 32px !important;
5342
+ padding-bottom: 32px !important;
5343
+ }
5344
+
5345
+ .retro-gap-6 {
5346
+ gap: 32px !important;
5347
+ }
5348
+
5349
+ .retro-m-7 {
5350
+ margin: 40px !important;
5351
+ }
5352
+
5353
+ .retro-mt-7 {
5354
+ margin-top: 40px !important;
5355
+ }
5356
+
5357
+ .retro-mb-7 {
5358
+ margin-bottom: 40px !important;
5359
+ }
5360
+
5361
+ .retro-ml-7 {
5362
+ margin-left: 40px !important;
5363
+ }
5364
+
5365
+ .retro-mr-7 {
5366
+ margin-right: 40px !important;
5367
+ }
5368
+
5369
+ .retro-mx-7 {
5370
+ margin-left: 40px !important;
5371
+ margin-right: 40px !important;
5372
+ }
5373
+
5374
+ .retro-my-7 {
5375
+ margin-top: 40px !important;
5376
+ margin-bottom: 40px !important;
5377
+ }
5378
+
5379
+ .retro-p-7 {
5380
+ padding: 40px !important;
5381
+ }
5382
+
5383
+ .retro-pt-7 {
5384
+ padding-top: 40px !important;
5385
+ }
5386
+
5387
+ .retro-pb-7 {
5388
+ padding-bottom: 40px !important;
5389
+ }
5390
+
5391
+ .retro-pl-7 {
5392
+ padding-left: 40px !important;
5393
+ }
5394
+
5395
+ .retro-pr-7 {
5396
+ padding-right: 40px !important;
5397
+ }
5398
+
5399
+ .retro-px-7 {
5400
+ padding-left: 40px !important;
5401
+ padding-right: 40px !important;
5402
+ }
5403
+
5404
+ .retro-py-7 {
5405
+ padding-top: 40px !important;
5406
+ padding-bottom: 40px !important;
5407
+ }
5408
+
5409
+ .retro-gap-7 {
5410
+ gap: 40px !important;
5411
+ }
5412
+
5413
+ .retro-m-8 {
5414
+ margin: 48px !important;
5415
+ }
5416
+
5417
+ .retro-mt-8 {
5418
+ margin-top: 48px !important;
5419
+ }
5420
+
5421
+ .retro-mb-8 {
5422
+ margin-bottom: 48px !important;
5423
+ }
5424
+
5425
+ .retro-ml-8 {
5426
+ margin-left: 48px !important;
5427
+ }
5428
+
5429
+ .retro-mr-8 {
5430
+ margin-right: 48px !important;
5431
+ }
5432
+
5433
+ .retro-mx-8 {
5434
+ margin-left: 48px !important;
5435
+ margin-right: 48px !important;
5436
+ }
5437
+
5438
+ .retro-my-8 {
5439
+ margin-top: 48px !important;
5440
+ margin-bottom: 48px !important;
5441
+ }
5442
+
5443
+ .retro-p-8 {
5444
+ padding: 48px !important;
5445
+ }
5446
+
5447
+ .retro-pt-8 {
5448
+ padding-top: 48px !important;
5449
+ }
5450
+
5451
+ .retro-pb-8 {
5452
+ padding-bottom: 48px !important;
5453
+ }
5454
+
5455
+ .retro-pl-8 {
5456
+ padding-left: 48px !important;
5457
+ }
5458
+
5459
+ .retro-pr-8 {
5460
+ padding-right: 48px !important;
5461
+ }
5462
+
5463
+ .retro-px-8 {
5464
+ padding-left: 48px !important;
5465
+ padding-right: 48px !important;
5466
+ }
5467
+
5468
+ .retro-py-8 {
5469
+ padding-top: 48px !important;
5470
+ padding-bottom: 48px !important;
5471
+ }
5472
+
5473
+ .retro-gap-8 {
5474
+ gap: 48px !important;
5475
+ }
5476
+
5477
+ .retro-mx-auto {
5478
+ margin-left: auto !important;
5479
+ margin-right: auto !important;
5480
+ }
5481
+
5482
+ .retro-ml-auto {
5483
+ margin-left: auto !important;
5484
+ }
5485
+
5486
+ .retro-mr-auto {
5487
+ margin-right: auto !important;
5488
+ }
5489
+
5490
+ .mt-0 {
5491
+ margin-top: 0px !important;
5492
+ }
5493
+
5494
+ .mb-0 {
5495
+ margin-bottom: 0px !important;
5496
+ }
5497
+
5498
+ .ml-0 {
5499
+ margin-left: 0px !important;
5500
+ }
5501
+
5502
+ .mr-0 {
5503
+ margin-right: 0px !important;
5504
+ }
5505
+
5506
+ .mx-0 {
5507
+ margin-left: 0px !important;
5508
+ margin-right: 0px !important;
5509
+ }
5510
+
5511
+ .my-0 {
5512
+ margin-top: 0px !important;
5513
+ margin-bottom: 0px !important;
5514
+ }
5515
+
5516
+ .pt-0 {
5517
+ padding-top: 0px !important;
5518
+ }
5519
+
5520
+ .pb-0 {
5521
+ padding-bottom: 0px !important;
5522
+ }
5523
+
5524
+ .pl-0 {
5525
+ padding-left: 0px !important;
5526
+ }
5527
+
5528
+ .pr-0 {
5529
+ padding-right: 0px !important;
5530
+ }
5531
+
5532
+ .px-0 {
5533
+ padding-left: 0px !important;
5534
+ padding-right: 0px !important;
5535
+ }
5536
+
5537
+ .py-0 {
5538
+ padding-top: 0px !important;
5539
+ padding-bottom: 0px !important;
5540
+ }
5541
+
5542
+ .mt-1 {
5543
+ margin-top: 4px !important;
5544
+ }
5545
+
5546
+ .mb-1 {
5547
+ margin-bottom: 4px !important;
5548
+ }
5549
+
5550
+ .ml-1 {
5551
+ margin-left: 4px !important;
5552
+ }
5553
+
5554
+ .mr-1 {
5555
+ margin-right: 4px !important;
5556
+ }
5557
+
5558
+ .mx-1 {
5559
+ margin-left: 4px !important;
5560
+ margin-right: 4px !important;
5561
+ }
5562
+
5563
+ .my-1 {
5564
+ margin-top: 4px !important;
5565
+ margin-bottom: 4px !important;
5566
+ }
5567
+
5568
+ .pt-1 {
5569
+ padding-top: 4px !important;
5570
+ }
5571
+
5572
+ .pb-1 {
5573
+ padding-bottom: 4px !important;
5574
+ }
5575
+
5576
+ .pl-1 {
5577
+ padding-left: 4px !important;
5578
+ }
5579
+
5580
+ .pr-1 {
5581
+ padding-right: 4px !important;
5582
+ }
5583
+
5584
+ .px-1 {
5585
+ padding-left: 4px !important;
5586
+ padding-right: 4px !important;
5587
+ }
5588
+
5589
+ .py-1 {
5590
+ padding-top: 4px !important;
5591
+ padding-bottom: 4px !important;
5592
+ }
5593
+
5594
+ .mt-2 {
5595
+ margin-top: 8px !important;
5596
+ }
5597
+
5598
+ .mb-2 {
5599
+ margin-bottom: 8px !important;
5600
+ }
5601
+
5602
+ .ml-2 {
5603
+ margin-left: 8px !important;
5604
+ }
5605
+
5606
+ .mr-2 {
5607
+ margin-right: 8px !important;
5608
+ }
5609
+
5610
+ .mx-2 {
5611
+ margin-left: 8px !important;
5612
+ margin-right: 8px !important;
5613
+ }
5614
+
5615
+ .my-2 {
5616
+ margin-top: 8px !important;
5617
+ margin-bottom: 8px !important;
5618
+ }
5619
+
5620
+ .pt-2 {
5621
+ padding-top: 8px !important;
5622
+ }
5623
+
5624
+ .pb-2 {
5625
+ padding-bottom: 8px !important;
5626
+ }
5627
+
5628
+ .pl-2 {
5629
+ padding-left: 8px !important;
5630
+ }
5631
+
5632
+ .pr-2 {
5633
+ padding-right: 8px !important;
5634
+ }
5635
+
5636
+ .px-2 {
5637
+ padding-left: 8px !important;
5638
+ padding-right: 8px !important;
5639
+ }
5640
+
5641
+ .py-2 {
5642
+ padding-top: 8px !important;
5643
+ padding-bottom: 8px !important;
5644
+ }
5645
+
5646
+ .mt-3 {
5647
+ margin-top: 12px !important;
5648
+ }
5649
+
5650
+ .mb-3 {
5651
+ margin-bottom: 12px !important;
5652
+ }
5653
+
5654
+ .ml-3 {
5655
+ margin-left: 12px !important;
5656
+ }
5657
+
5658
+ .mr-3 {
5659
+ margin-right: 12px !important;
5660
+ }
5661
+
5662
+ .mx-3 {
5663
+ margin-left: 12px !important;
5664
+ margin-right: 12px !important;
5665
+ }
5666
+
5667
+ .my-3 {
5668
+ margin-top: 12px !important;
5669
+ margin-bottom: 12px !important;
5670
+ }
5671
+
5672
+ .pt-3 {
5673
+ padding-top: 12px !important;
5674
+ }
5675
+
5676
+ .pb-3 {
5677
+ padding-bottom: 12px !important;
5678
+ }
5679
+
5680
+ .pl-3 {
5681
+ padding-left: 12px !important;
5682
+ }
5683
+
5684
+ .pr-3 {
5685
+ padding-right: 12px !important;
5686
+ }
5687
+
5688
+ .px-3 {
5689
+ padding-left: 12px !important;
5690
+ padding-right: 12px !important;
5691
+ }
5692
+
5693
+ .py-3 {
5694
+ padding-top: 12px !important;
5695
+ padding-bottom: 12px !important;
5696
+ }
5697
+
5698
+ .mt-4 {
5699
+ margin-top: 16px !important;
5700
+ }
5701
+
5702
+ .mb-4 {
5703
+ margin-bottom: 16px !important;
5704
+ }
5705
+
5706
+ .ml-4 {
5707
+ margin-left: 16px !important;
5708
+ }
5709
+
5710
+ .mr-4 {
5711
+ margin-right: 16px !important;
5712
+ }
5713
+
5714
+ .mx-4 {
5715
+ margin-left: 16px !important;
5716
+ margin-right: 16px !important;
5717
+ }
5718
+
5719
+ .my-4 {
5720
+ margin-top: 16px !important;
5721
+ margin-bottom: 16px !important;
5722
+ }
5723
+
5724
+ .pt-4 {
5725
+ padding-top: 16px !important;
5726
+ }
5727
+
5728
+ .pb-4 {
5729
+ padding-bottom: 16px !important;
5730
+ }
5731
+
5732
+ .pl-4 {
5733
+ padding-left: 16px !important;
5734
+ }
5735
+
5736
+ .pr-4 {
5737
+ padding-right: 16px !important;
5738
+ }
5739
+
5740
+ .px-4 {
5741
+ padding-left: 16px !important;
5742
+ padding-right: 16px !important;
5743
+ }
5744
+
5745
+ .py-4 {
5746
+ padding-top: 16px !important;
5747
+ padding-bottom: 16px !important;
5748
+ }
5749
+
5750
+ .mt-5 {
5751
+ margin-top: 20px !important;
5752
+ }
5753
+
5754
+ .mb-5 {
5755
+ margin-bottom: 20px !important;
5756
+ }
5757
+
5758
+ .ml-5 {
5759
+ margin-left: 20px !important;
5760
+ }
5761
+
5762
+ .mr-5 {
5763
+ margin-right: 20px !important;
5764
+ }
5765
+
5766
+ .mx-5 {
5767
+ margin-left: 20px !important;
5768
+ margin-right: 20px !important;
5769
+ }
5770
+
5771
+ .my-5 {
5772
+ margin-top: 20px !important;
5773
+ margin-bottom: 20px !important;
5774
+ }
5775
+
5776
+ .pt-5 {
5777
+ padding-top: 20px !important;
5778
+ }
5779
+
5780
+ .pb-5 {
5781
+ padding-bottom: 20px !important;
5782
+ }
5783
+
5784
+ .pl-5 {
5785
+ padding-left: 20px !important;
5786
+ }
5787
+
5788
+ .pr-5 {
5789
+ padding-right: 20px !important;
5790
+ }
5791
+
5792
+ .px-5 {
5793
+ padding-left: 20px !important;
5794
+ padding-right: 20px !important;
5795
+ }
5796
+
5797
+ .py-5 {
5798
+ padding-top: 20px !important;
5799
+ padding-bottom: 20px !important;
5800
+ }
5801
+
5802
+ /**
5803
+ * @name Flexbox & Display Utilities
5804
+ * @group utilities
5805
+ * @description
5806
+ * The grid utilities shipped gap/justify/align, but the flex primitives the
5807
+ * demo pages leaned on (retro-flex, retro-items-center, retro-flex-1) did not
5808
+ * exist, so those layouts fell back to plain block flow.
5809
+ */
5810
+ .retro-block {
5811
+ display: block !important;
5812
+ }
5813
+
5814
+ .retro-inline-block {
5815
+ display: inline-block !important;
5816
+ }
5817
+
5818
+ .retro-inline {
5819
+ display: inline !important;
5820
+ }
5821
+
5822
+ .retro-hidden {
5823
+ display: none !important;
5824
+ }
5825
+
5826
+ .retro-flex {
5827
+ display: flex !important;
5828
+ }
5829
+
5830
+ .retro-inline-flex {
5831
+ display: inline-flex !important;
5832
+ }
5833
+
5834
+ .retro-flex-row {
5835
+ flex-direction: row !important;
5836
+ }
5837
+
5838
+ .retro-flex-col {
5839
+ flex-direction: column !important;
5840
+ }
5841
+
5842
+ .retro-flex-wrap {
5843
+ flex-wrap: wrap !important;
5844
+ }
5845
+
5846
+ .retro-flex-nowrap {
5847
+ flex-wrap: nowrap !important;
5848
+ }
5849
+
5850
+ .retro-flex-1 {
5851
+ flex: 1 1 0% !important;
5852
+ min-width: 0;
5853
+ }
5854
+
5855
+ .retro-flex-auto {
5856
+ flex: 1 1 auto !important;
5857
+ min-width: 0;
5858
+ }
5859
+
5860
+ .retro-flex-none {
5861
+ flex: none !important;
5862
+ }
5863
+
5864
+ .retro-grow {
5865
+ flex-grow: 1 !important;
5866
+ }
5867
+
5868
+ .retro-shrink-0 {
5869
+ flex-shrink: 0 !important;
5870
+ }
5871
+
5872
+ .retro-items-start {
5873
+ align-items: flex-start !important;
5874
+ }
5875
+
5876
+ .retro-items-center {
5877
+ align-items: center !important;
5878
+ }
5879
+
5880
+ .retro-items-end {
5881
+ align-items: flex-end !important;
5882
+ }
5883
+
5884
+ .retro-items-stretch {
5885
+ align-items: stretch !important;
5886
+ }
5887
+
5888
+ .retro-items-baseline {
5889
+ align-items: baseline !important;
5890
+ }
5891
+
5892
+ .retro-justify-between {
5893
+ justify-content: space-between !important;
5894
+ }
5895
+
5896
+ .retro-justify-around {
5897
+ justify-content: space-around !important;
5898
+ }
5899
+
5900
+ .retro-justify-evenly {
5901
+ justify-content: space-evenly !important;
5902
+ }
5903
+
5904
+ .retro-self-start {
5905
+ align-self: flex-start !important;
5906
+ }
5907
+
5908
+ .retro-self-center {
5909
+ align-self: center !important;
5910
+ }
5911
+
5912
+ .retro-self-end {
5913
+ align-self: flex-end !important;
5914
+ }
5915
+
5916
+ .retro-relative {
5917
+ position: relative !important;
5918
+ }
5919
+
5920
+ .retro-absolute {
5921
+ position: absolute !important;
5922
+ }
5923
+
5924
+ .retro-sticky {
5925
+ position: sticky !important;
5926
+ }
5927
+
5928
+ /**
5929
+ * @name Sizing Utilities
5930
+ * @group utilities
5931
+ */
5932
+ .retro-w-full {
5933
+ width: 100% !important;
5934
+ }
5935
+
5936
+ .retro-w-auto {
5937
+ width: auto !important;
5938
+ }
5939
+
5940
+ .retro-h-full {
5941
+ height: 100% !important;
5942
+ }
5943
+
5944
+ .retro-max-w-full {
5945
+ max-width: 100% !important;
5946
+ }
5947
+
5948
+ .retro-min-w-0 {
5949
+ min-width: 0 !important;
5950
+ }
5951
+
5952
+ .retro-box-border {
5953
+ box-sizing: border-box !important;
5954
+ }
5955
+
5956
+ .retro-max-w-40 {
5957
+ max-width: 160px !important;
5958
+ }
5959
+
5960
+ .retro-min-w-40 {
5961
+ min-width: 160px !important;
5962
+ }
5963
+
5964
+ .retro-max-w-56 {
5965
+ max-width: 224px !important;
5966
+ }
5967
+
5968
+ .retro-min-w-56 {
5969
+ min-width: 224px !important;
5970
+ }
5971
+
5972
+ .retro-max-w-72 {
5973
+ max-width: 288px !important;
5974
+ }
5975
+
5976
+ .retro-min-w-72 {
5977
+ min-width: 288px !important;
5978
+ }
5979
+
5980
+ .retro-max-w-80 {
5981
+ max-width: 320px !important;
5982
+ }
5983
+
5984
+ .retro-min-w-80 {
5985
+ min-width: 320px !important;
5986
+ }
5987
+
5988
+ .retro-max-w-96 {
5989
+ max-width: 384px !important;
5990
+ }
5991
+
5992
+ .retro-min-w-96 {
5993
+ min-width: 384px !important;
5994
+ }
5995
+
5996
+ .retro-max-w-120 {
5997
+ max-width: 480px !important;
5998
+ }
5999
+
6000
+ .retro-min-w-120 {
6001
+ min-width: 480px !important;
6002
+ }
6003
+
6004
+ .retro-max-w-prose {
6005
+ max-width: var(--retro-measure) !important;
6006
+ }
6007
+
6008
+ .retro-max-w-sm {
6009
+ max-width: var(--retro-container-sm) !important;
6010
+ }
6011
+
6012
+ .retro-max-w-md {
6013
+ max-width: var(--retro-container-md) !important;
6014
+ }
6015
+
6016
+ .retro-max-w-lg {
6017
+ max-width: var(--retro-container-lg) !important;
6018
+ }
6019
+
6020
+ .retro-max-w-xl {
6021
+ max-width: var(--retro-container-xl) !important;
6022
+ }
6023
+
6024
+ .retro-max-w-xxl {
6025
+ max-width: var(--retro-container-xxl) !important;
6026
+ }
6027
+
6028
+ /**
6029
+ * @name Colour Utilities
6030
+ * @group utilities
6031
+ * @description
6032
+ * Background, text and border helpers built on the 2.0 token tiers.
6033
+ *
6034
+ * `retro-bg-<hue>` sets the fill **and** its matching on-fill text colour, so a
6035
+ * filled surface is legible in both themes without a second class. That pairing
6036
+ * is what the accessibility gate verifies, so these are AA by construction.
6037
+ *
6038
+ * `retro-bg-<hue>-subtle` is a low-alpha tint of the same hue for callout
6039
+ * panels; it keeps the normal body text colour on top.
6040
+ * @example html
6041
+ * <div class="retro-bg-primary retro-p-4">Readable in both themes</div>
6042
+ * <div class="retro-bg-success-subtle retro-p-4">Tinted callout</div>
6043
+ */
6044
+ .retro-bg-primary {
6045
+ background-color: var(--retro-primary) !important;
6046
+ color: var(--retro-primary-fg) !important;
6047
+ }
6048
+ .retro-bg-primary h1, .retro-bg-primary h2, .retro-bg-primary h3, .retro-bg-primary h4, .retro-bg-primary h5, .retro-bg-primary h6 {
6049
+ color: inherit;
6050
+ }
6051
+
6052
+ .retro-bg-primary-subtle {
6053
+ background-color: rgba(var(--retro-primary-rgb), 0.14) !important;
6054
+ color: var(--retro-text) !important;
6055
+ }
6056
+
6057
+ .retro-bg-primary-lightest {
6058
+ background-color: rgba(var(--retro-primary-rgb), 0.14) !important;
6059
+ color: var(--retro-text) !important;
6060
+ }
6061
+
6062
+ .retro-border-primary {
6063
+ border-color: var(--retro-primary) !important;
6064
+ }
6065
+
6066
+ .retro-bg-success {
6067
+ background-color: var(--retro-success) !important;
6068
+ color: var(--retro-success-fg) !important;
6069
+ }
6070
+ .retro-bg-success h1, .retro-bg-success h2, .retro-bg-success h3, .retro-bg-success h4, .retro-bg-success h5, .retro-bg-success h6 {
6071
+ color: inherit;
6072
+ }
6073
+
6074
+ .retro-bg-success-subtle {
6075
+ background-color: rgba(var(--retro-success-rgb), 0.14) !important;
6076
+ color: var(--retro-text) !important;
6077
+ }
6078
+
6079
+ .retro-bg-success-lightest {
6080
+ background-color: rgba(var(--retro-success-rgb), 0.14) !important;
6081
+ color: var(--retro-text) !important;
6082
+ }
6083
+
6084
+ .retro-border-success {
6085
+ border-color: var(--retro-success) !important;
6086
+ }
6087
+
6088
+ .retro-bg-danger {
6089
+ background-color: var(--retro-danger) !important;
6090
+ color: var(--retro-danger-fg) !important;
6091
+ }
6092
+ .retro-bg-danger h1, .retro-bg-danger h2, .retro-bg-danger h3, .retro-bg-danger h4, .retro-bg-danger h5, .retro-bg-danger h6 {
6093
+ color: inherit;
6094
+ }
6095
+
6096
+ .retro-bg-danger-subtle {
6097
+ background-color: rgba(var(--retro-danger-rgb), 0.14) !important;
6098
+ color: var(--retro-text) !important;
6099
+ }
6100
+
6101
+ .retro-bg-danger-lightest {
6102
+ background-color: rgba(var(--retro-danger-rgb), 0.14) !important;
6103
+ color: var(--retro-text) !important;
6104
+ }
6105
+
6106
+ .retro-border-danger {
6107
+ border-color: var(--retro-danger) !important;
6108
+ }
6109
+
6110
+ .retro-bg-warning {
6111
+ background-color: var(--retro-warning) !important;
6112
+ color: var(--retro-warning-fg) !important;
6113
+ }
6114
+ .retro-bg-warning h1, .retro-bg-warning h2, .retro-bg-warning h3, .retro-bg-warning h4, .retro-bg-warning h5, .retro-bg-warning h6 {
6115
+ color: inherit;
6116
+ }
6117
+
6118
+ .retro-bg-warning-subtle {
6119
+ background-color: rgba(var(--retro-warning-rgb), 0.14) !important;
6120
+ color: var(--retro-text) !important;
6121
+ }
6122
+
6123
+ .retro-bg-warning-lightest {
6124
+ background-color: rgba(var(--retro-warning-rgb), 0.14) !important;
6125
+ color: var(--retro-text) !important;
6126
+ }
6127
+
6128
+ .retro-border-warning {
6129
+ border-color: var(--retro-warning) !important;
6130
+ }
6131
+
6132
+ .retro-bg-info {
6133
+ background-color: var(--retro-info) !important;
6134
+ color: var(--retro-info-fg) !important;
6135
+ }
6136
+ .retro-bg-info h1, .retro-bg-info h2, .retro-bg-info h3, .retro-bg-info h4, .retro-bg-info h5, .retro-bg-info h6 {
6137
+ color: inherit;
6138
+ }
6139
+
6140
+ .retro-bg-info-subtle {
6141
+ background-color: rgba(var(--retro-info-rgb), 0.14) !important;
6142
+ color: var(--retro-text) !important;
6143
+ }
6144
+
6145
+ .retro-bg-info-lightest {
6146
+ background-color: rgba(var(--retro-info-rgb), 0.14) !important;
6147
+ color: var(--retro-text) !important;
6148
+ }
6149
+
6150
+ .retro-border-info {
6151
+ border-color: var(--retro-info) !important;
6152
+ }
6153
+
6154
+ .retro-bg-teal {
6155
+ background-color: var(--retro-teal) !important;
6156
+ color: var(--retro-teal-fg) !important;
6157
+ }
6158
+ .retro-bg-teal h1, .retro-bg-teal h2, .retro-bg-teal h3, .retro-bg-teal h4, .retro-bg-teal h5, .retro-bg-teal h6 {
6159
+ color: inherit;
6160
+ }
6161
+
6162
+ .retro-bg-teal-subtle {
6163
+ background-color: rgba(var(--retro-teal-rgb), 0.14) !important;
6164
+ color: var(--retro-text) !important;
6165
+ }
6166
+
6167
+ .retro-bg-teal-lightest {
6168
+ background-color: rgba(var(--retro-teal-rgb), 0.14) !important;
6169
+ color: var(--retro-text) !important;
4934
6170
  }
4935
6171
 
4936
- .mb-5 {
4937
- margin-bottom: 20px !important;
6172
+ .retro-border-teal {
6173
+ border-color: var(--retro-teal) !important;
4938
6174
  }
4939
6175
 
4940
- .ml-5 {
4941
- margin-left: 20px !important;
6176
+ .retro-bg-tan {
6177
+ background-color: var(--retro-tan) !important;
6178
+ color: var(--retro-tan-fg) !important;
6179
+ }
6180
+ .retro-bg-tan h1, .retro-bg-tan h2, .retro-bg-tan h3, .retro-bg-tan h4, .retro-bg-tan h5, .retro-bg-tan h6 {
6181
+ color: inherit;
4942
6182
  }
4943
6183
 
4944
- .mr-5 {
4945
- margin-right: 20px !important;
6184
+ .retro-bg-tan-subtle {
6185
+ background-color: rgba(var(--retro-tan-rgb), 0.14) !important;
6186
+ color: var(--retro-text) !important;
4946
6187
  }
4947
6188
 
4948
- .mx-5 {
4949
- margin-left: 20px !important;
4950
- margin-right: 20px !important;
6189
+ .retro-bg-tan-lightest {
6190
+ background-color: rgba(var(--retro-tan-rgb), 0.14) !important;
6191
+ color: var(--retro-text) !important;
4951
6192
  }
4952
6193
 
4953
- .my-5 {
4954
- margin-top: 20px !important;
4955
- margin-bottom: 20px !important;
6194
+ .retro-border-tan {
6195
+ border-color: var(--retro-tan) !important;
4956
6196
  }
4957
6197
 
4958
- .pt-5 {
4959
- padding-top: 20px !important;
6198
+ .retro-bg-pink {
6199
+ background-color: var(--retro-pink) !important;
6200
+ color: var(--retro-pink-fg) !important;
6201
+ }
6202
+ .retro-bg-pink h1, .retro-bg-pink h2, .retro-bg-pink h3, .retro-bg-pink h4, .retro-bg-pink h5, .retro-bg-pink h6 {
6203
+ color: inherit;
4960
6204
  }
4961
6205
 
4962
- .pb-5 {
4963
- padding-bottom: 20px !important;
6206
+ .retro-bg-pink-subtle {
6207
+ background-color: rgba(var(--retro-pink-rgb), 0.14) !important;
6208
+ color: var(--retro-text) !important;
4964
6209
  }
4965
6210
 
4966
- .pl-5 {
4967
- padding-left: 20px !important;
6211
+ .retro-bg-pink-lightest {
6212
+ background-color: rgba(var(--retro-pink-rgb), 0.14) !important;
6213
+ color: var(--retro-text) !important;
4968
6214
  }
4969
6215
 
4970
- .pr-5 {
4971
- padding-right: 20px !important;
6216
+ .retro-border-pink {
6217
+ border-color: var(--retro-pink) !important;
4972
6218
  }
4973
6219
 
4974
- .px-5 {
4975
- padding-left: 20px !important;
4976
- padding-right: 20px !important;
6220
+ .retro-bg-lime {
6221
+ background-color: var(--retro-lime) !important;
6222
+ color: var(--retro-lime-fg) !important;
6223
+ }
6224
+ .retro-bg-lime h1, .retro-bg-lime h2, .retro-bg-lime h3, .retro-bg-lime h4, .retro-bg-lime h5, .retro-bg-lime h6 {
6225
+ color: inherit;
4977
6226
  }
4978
6227
 
4979
- .py-5 {
4980
- padding-top: 20px !important;
4981
- padding-bottom: 20px !important;
6228
+ .retro-bg-lime-subtle {
6229
+ background-color: rgba(var(--retro-lime-rgb), 0.14) !important;
6230
+ color: var(--retro-text) !important;
6231
+ }
6232
+
6233
+ .retro-bg-lime-lightest {
6234
+ background-color: rgba(var(--retro-lime-rgb), 0.14) !important;
6235
+ color: var(--retro-text) !important;
6236
+ }
6237
+
6238
+ .retro-border-lime {
6239
+ border-color: var(--retro-lime) !important;
6240
+ }
6241
+
6242
+ .retro-bg-cyan {
6243
+ background-color: var(--retro-cyan) !important;
6244
+ color: var(--retro-cyan-fg) !important;
6245
+ }
6246
+ .retro-bg-cyan h1, .retro-bg-cyan h2, .retro-bg-cyan h3, .retro-bg-cyan h4, .retro-bg-cyan h5, .retro-bg-cyan h6 {
6247
+ color: inherit;
6248
+ }
6249
+
6250
+ .retro-bg-cyan-subtle {
6251
+ background-color: rgba(var(--retro-cyan-rgb), 0.14) !important;
6252
+ color: var(--retro-text) !important;
6253
+ }
6254
+
6255
+ .retro-bg-cyan-lightest {
6256
+ background-color: rgba(var(--retro-cyan-rgb), 0.14) !important;
6257
+ color: var(--retro-text) !important;
6258
+ }
6259
+
6260
+ .retro-border-cyan {
6261
+ border-color: var(--retro-cyan) !important;
6262
+ }
6263
+
6264
+ .retro-bg-orange {
6265
+ background-color: var(--retro-orange) !important;
6266
+ color: var(--retro-orange-fg) !important;
6267
+ }
6268
+ .retro-bg-orange h1, .retro-bg-orange h2, .retro-bg-orange h3, .retro-bg-orange h4, .retro-bg-orange h5, .retro-bg-orange h6 {
6269
+ color: inherit;
6270
+ }
6271
+
6272
+ .retro-bg-orange-subtle {
6273
+ background-color: rgba(var(--retro-orange-rgb), 0.14) !important;
6274
+ color: var(--retro-text) !important;
6275
+ }
6276
+
6277
+ .retro-bg-orange-lightest {
6278
+ background-color: rgba(var(--retro-orange-rgb), 0.14) !important;
6279
+ color: var(--retro-text) !important;
6280
+ }
6281
+
6282
+ .retro-border-orange {
6283
+ border-color: var(--retro-orange) !important;
6284
+ }
6285
+
6286
+ .retro-bg-brown {
6287
+ background-color: var(--retro-brown) !important;
6288
+ color: var(--retro-brown-fg) !important;
6289
+ }
6290
+ .retro-bg-brown h1, .retro-bg-brown h2, .retro-bg-brown h3, .retro-bg-brown h4, .retro-bg-brown h5, .retro-bg-brown h6 {
6291
+ color: inherit;
6292
+ }
6293
+
6294
+ .retro-bg-brown-subtle {
6295
+ background-color: rgba(var(--retro-brown-rgb), 0.14) !important;
6296
+ color: var(--retro-text) !important;
6297
+ }
6298
+
6299
+ .retro-bg-brown-lightest {
6300
+ background-color: rgba(var(--retro-brown-rgb), 0.14) !important;
6301
+ color: var(--retro-text) !important;
6302
+ }
6303
+
6304
+ .retro-border-brown {
6305
+ border-color: var(--retro-brown) !important;
6306
+ }
6307
+
6308
+ .retro-bg-violet {
6309
+ background-color: var(--retro-violet) !important;
6310
+ color: var(--retro-violet-fg) !important;
6311
+ }
6312
+ .retro-bg-violet h1, .retro-bg-violet h2, .retro-bg-violet h3, .retro-bg-violet h4, .retro-bg-violet h5, .retro-bg-violet h6 {
6313
+ color: inherit;
6314
+ }
6315
+
6316
+ .retro-bg-violet-subtle {
6317
+ background-color: rgba(var(--retro-violet-rgb), 0.14) !important;
6318
+ color: var(--retro-text) !important;
6319
+ }
6320
+
6321
+ .retro-bg-violet-lightest {
6322
+ background-color: rgba(var(--retro-violet-rgb), 0.14) !important;
6323
+ color: var(--retro-text) !important;
6324
+ }
6325
+
6326
+ .retro-border-violet {
6327
+ border-color: var(--retro-violet) !important;
6328
+ }
6329
+
6330
+ .retro-bg-gray {
6331
+ background-color: var(--retro-gray) !important;
6332
+ color: var(--retro-gray-fg) !important;
6333
+ }
6334
+ .retro-bg-gray h1, .retro-bg-gray h2, .retro-bg-gray h3, .retro-bg-gray h4, .retro-bg-gray h5, .retro-bg-gray h6 {
6335
+ color: inherit;
6336
+ }
6337
+
6338
+ .retro-bg-gray-subtle {
6339
+ background-color: rgba(var(--retro-gray-rgb), 0.14) !important;
6340
+ color: var(--retro-text) !important;
6341
+ }
6342
+
6343
+ .retro-bg-gray-lightest {
6344
+ background-color: rgba(var(--retro-gray-rgb), 0.14) !important;
6345
+ color: var(--retro-text) !important;
6346
+ }
6347
+
6348
+ .retro-border-gray {
6349
+ border-color: var(--retro-gray) !important;
6350
+ }
6351
+
6352
+ .retro-bg-maroon {
6353
+ background-color: var(--retro-maroon) !important;
6354
+ color: var(--retro-maroon-fg) !important;
6355
+ }
6356
+ .retro-bg-maroon h1, .retro-bg-maroon h2, .retro-bg-maroon h3, .retro-bg-maroon h4, .retro-bg-maroon h5, .retro-bg-maroon h6 {
6357
+ color: inherit;
6358
+ }
6359
+
6360
+ .retro-bg-maroon-subtle {
6361
+ background-color: rgba(var(--retro-maroon-rgb), 0.14) !important;
6362
+ color: var(--retro-text) !important;
6363
+ }
6364
+
6365
+ .retro-bg-maroon-lightest {
6366
+ background-color: rgba(var(--retro-maroon-rgb), 0.14) !important;
6367
+ color: var(--retro-text) !important;
6368
+ }
6369
+
6370
+ .retro-border-maroon {
6371
+ border-color: var(--retro-maroon) !important;
6372
+ }
6373
+
6374
+ .retro-bg-gold {
6375
+ background-color: var(--retro-gold) !important;
6376
+ color: var(--retro-gold-fg) !important;
6377
+ }
6378
+ .retro-bg-gold h1, .retro-bg-gold h2, .retro-bg-gold h3, .retro-bg-gold h4, .retro-bg-gold h5, .retro-bg-gold h6 {
6379
+ color: inherit;
6380
+ }
6381
+
6382
+ .retro-bg-gold-subtle {
6383
+ background-color: rgba(var(--retro-gold-rgb), 0.14) !important;
6384
+ color: var(--retro-text) !important;
6385
+ }
6386
+
6387
+ .retro-bg-gold-lightest {
6388
+ background-color: rgba(var(--retro-gold-rgb), 0.14) !important;
6389
+ color: var(--retro-text) !important;
6390
+ }
6391
+
6392
+ .retro-border-gold {
6393
+ border-color: var(--retro-gold) !important;
6394
+ }
6395
+
6396
+ .retro-bg-navy {
6397
+ background-color: var(--retro-navy) !important;
6398
+ color: var(--retro-navy-fg) !important;
6399
+ }
6400
+ .retro-bg-navy h1, .retro-bg-navy h2, .retro-bg-navy h3, .retro-bg-navy h4, .retro-bg-navy h5, .retro-bg-navy h6 {
6401
+ color: inherit;
6402
+ }
6403
+
6404
+ .retro-bg-navy-subtle {
6405
+ background-color: rgba(var(--retro-navy-rgb), 0.14) !important;
6406
+ color: var(--retro-text) !important;
6407
+ }
6408
+
6409
+ .retro-bg-navy-lightest {
6410
+ background-color: rgba(var(--retro-navy-rgb), 0.14) !important;
6411
+ color: var(--retro-text) !important;
6412
+ }
6413
+
6414
+ .retro-border-navy {
6415
+ border-color: var(--retro-navy) !important;
6416
+ }
6417
+
6418
+ .retro-bg-olive {
6419
+ background-color: var(--retro-olive) !important;
6420
+ color: var(--retro-olive-fg) !important;
6421
+ }
6422
+ .retro-bg-olive h1, .retro-bg-olive h2, .retro-bg-olive h3, .retro-bg-olive h4, .retro-bg-olive h5, .retro-bg-olive h6 {
6423
+ color: inherit;
6424
+ }
6425
+
6426
+ .retro-bg-olive-subtle {
6427
+ background-color: rgba(var(--retro-olive-rgb), 0.14) !important;
6428
+ color: var(--retro-text) !important;
6429
+ }
6430
+
6431
+ .retro-bg-olive-lightest {
6432
+ background-color: rgba(var(--retro-olive-rgb), 0.14) !important;
6433
+ color: var(--retro-text) !important;
6434
+ }
6435
+
6436
+ .retro-border-olive {
6437
+ border-color: var(--retro-olive) !important;
6438
+ }
6439
+
6440
+ .retro-bg-silver {
6441
+ background-color: var(--retro-silver) !important;
6442
+ color: var(--retro-silver-fg) !important;
6443
+ }
6444
+ .retro-bg-silver h1, .retro-bg-silver h2, .retro-bg-silver h3, .retro-bg-silver h4, .retro-bg-silver h5, .retro-bg-silver h6 {
6445
+ color: inherit;
6446
+ }
6447
+
6448
+ .retro-bg-silver-subtle {
6449
+ background-color: rgba(var(--retro-silver-rgb), 0.14) !important;
6450
+ color: var(--retro-text) !important;
6451
+ }
6452
+
6453
+ .retro-bg-silver-lightest {
6454
+ background-color: rgba(var(--retro-silver-rgb), 0.14) !important;
6455
+ color: var(--retro-text) !important;
6456
+ }
6457
+
6458
+ .retro-border-silver {
6459
+ border-color: var(--retro-silver) !important;
6460
+ }
6461
+
6462
+ /* Surfaces */
6463
+ .retro-bg-body {
6464
+ background-color: var(--retro-body-bg) !important;
6465
+ color: var(--retro-text) !important;
6466
+ }
6467
+
6468
+ .retro-body-bg {
6469
+ background-color: var(--retro-body-bg) !important;
6470
+ }
6471
+
6472
+ .retro-bg-surface,
6473
+ .retro-bg-white {
6474
+ background-color: var(--retro-bg) !important;
6475
+ color: var(--retro-text) !important;
6476
+ }
6477
+
6478
+ .retro-bg-light,
6479
+ .retro-bg-lightest {
6480
+ background-color: var(--retro-light) !important;
6481
+ color: var(--retro-text) !important;
6482
+ }
6483
+
6484
+ .retro-bg-dark {
6485
+ background-color: var(--retro-body-bg-dark) !important;
6486
+ color: #fff !important;
6487
+ }
6488
+ .retro-bg-dark h1, .retro-bg-dark h2, .retro-bg-dark h3, .retro-bg-dark h4, .retro-bg-dark h5, .retro-bg-dark h6 {
6489
+ color: inherit;
6490
+ }
6491
+
6492
+ .retro-bg-transparent {
6493
+ background-color: transparent !important;
6494
+ }
6495
+
6496
+ /* Text */
6497
+ .retro-text-body {
6498
+ color: var(--retro-text) !important;
6499
+ }
6500
+
6501
+ .retro-text-muted,
6502
+ .retro-text-secondary {
6503
+ color: var(--retro-text-muted) !important;
6504
+ }
6505
+
6506
+ .retro-text-white,
6507
+ .retro-text-inverse {
6508
+ color: var(--retro-text-inverse) !important;
6509
+ }
6510
+
6511
+ .retro-text-left {
6512
+ text-align: left !important;
6513
+ }
6514
+
6515
+ .retro-text-center {
6516
+ text-align: center !important;
6517
+ }
6518
+
6519
+ .retro-text-right {
6520
+ text-align: right !important;
6521
+ }
6522
+
6523
+ .retro-font-normal {
6524
+ font-weight: var(--retro-font-weight-normal) !important;
6525
+ }
6526
+
6527
+ .retro-font-bold {
6528
+ font-weight: var(--retro-font-weight-bold) !important;
6529
+ }
6530
+
6531
+ .retro-text-2xl {
6532
+ font-size: var(--retro-font-size-2xl) !important;
6533
+ }
6534
+
6535
+ .retro-text-3xl {
6536
+ font-size: var(--retro-font-size-3xl) !important;
6537
+ }
6538
+
6539
+ /* Borders */
6540
+ .retro-border {
6541
+ border: var(--retro-border-width) solid var(--retro-border-dark) !important;
6542
+ }
6543
+
6544
+ .retro-border-2 {
6545
+ border: var(--retro-border-width-thick) solid var(--retro-border-dark) !important;
6546
+ }
6547
+
6548
+ .retro-border-0 {
6549
+ border: 0 !important;
6550
+ }
6551
+
6552
+ .retro-border-t-0 {
6553
+ border-top: 0 !important;
6554
+ }
6555
+
6556
+ .retro-border-b-0 {
6557
+ border-bottom: 0 !important;
6558
+ }
6559
+
6560
+ .retro-border-top {
6561
+ border-top: var(--retro-border-width-thick) solid var(--retro-border-dark) !important;
6562
+ }
6563
+
6564
+ .retro-border-bottom {
6565
+ border-bottom: var(--retro-border-width-thick) solid var(--retro-border-dark) !important;
6566
+ }
6567
+
6568
+ .retro-border-left {
6569
+ border-left: var(--retro-border-width-thick) solid var(--retro-border-dark) !important;
6570
+ }
6571
+
6572
+ .retro-border-right {
6573
+ border-right: var(--retro-border-width-thick) solid var(--retro-border-dark) !important;
6574
+ }
6575
+
6576
+ .retro-border-black {
6577
+ border-color: var(--retro-border-dark) !important;
6578
+ }
6579
+
6580
+ .retro-border-gray {
6581
+ border-color: var(--retro-border-medium) !important;
6582
+ }
6583
+
6584
+ .retro-border-light {
6585
+ border-color: var(--retro-border-light) !important;
6586
+ }
6587
+
6588
+ /**
6589
+ * @name Effect Utilities
6590
+ * @group utilities
6591
+ * @description
6592
+ * Bevels and shadows. The Win9x look is built from hard-edged insets rather
6593
+ * than soft blur, so `retro-raised` / `retro-sunken` are usually what you want;
6594
+ * the `retro-shadow-*` scale is there for depth on floating surfaces.
6595
+ */
6596
+ .retro-raised {
6597
+ box-shadow: var(--retro-border-raised) !important;
6598
+ }
6599
+
6600
+ .retro-sunken {
6601
+ box-shadow: var(--retro-border-sunken) !important;
6602
+ }
6603
+
6604
+ .retro-shadow-none {
6605
+ box-shadow: none !important;
6606
+ }
6607
+
6608
+ .retro-shadow-sm {
6609
+ box-shadow: var(--retro-box-shadow-subtle) !important;
6610
+ }
6611
+
6612
+ .retro-shadow-md {
6613
+ box-shadow: var(--retro-box-shadow-medium) !important;
6614
+ }
6615
+
6616
+ .retro-shadow-lg {
6617
+ box-shadow: 3px 3px 0 var(--retro-border-medium), 0 4px 12px rgba(var(--retro-black-rgb), 0.18) !important;
6618
+ }
6619
+
6620
+ .retro-rounded {
6621
+ border-radius: 4px !important;
6622
+ }
6623
+
6624
+ .retro-rounded-lg {
6625
+ border-radius: 8px !important;
6626
+ }
6627
+
6628
+ .retro-rounded-full {
6629
+ border-radius: 9999px !important;
6630
+ }
6631
+
6632
+ .retro-rounded-none {
6633
+ border-radius: 0 !important;
6634
+ }
6635
+
6636
+ .retro-overflow-hidden {
6637
+ overflow: hidden !important;
6638
+ }
6639
+
6640
+ .retro-overflow-auto {
6641
+ overflow: auto !important;
6642
+ }
6643
+
6644
+ .retro-overflow-x-auto {
6645
+ overflow-x: auto !important;
4982
6646
  }
4983
6647
 
4984
6648
  /* RetroCSS - A Retro-Inspired CSS Framework */
@@ -5853,24 +7517,53 @@ input[type=datetime-local].retro-input.retro-input-sm {
5853
7517
  grid-template-columns: repeat(3, 1fr);
5854
7518
  }
5855
7519
  }
5856
- .main-content {
5857
- margin-left: 220px;
7520
+ /**
7521
+ * @name Layout
7522
+ * @group utilities
7523
+ * @description
7524
+ * Page shell: an optional sidebar beside a main content column.
7525
+ *
7526
+ * This lived in index.html's inline <style> while every page in the repo used
7527
+ * the class, so the five example pages — which carry no <style> block — got no
7528
+ * layout at all. The sidebar and the content stacked as plain blocks, leaving a
7529
+ * tall empty gap and pushing the content far below the fold.
7530
+ *
7531
+ * @example html
7532
+ * <div class="retro-main-layout">
7533
+ * <aside class="retro-sidebar">...</aside>
7534
+ * <div class="main-content">...</div>
7535
+ * </div>
7536
+ */
7537
+ .retro-main-layout {
7538
+ display: flex;
7539
+ flex-direction: column;
7540
+ gap: var(--retro-spacing-md);
7541
+ width: 100%;
7542
+ max-width: var(--retro-container-xxl);
7543
+ margin: 0 auto;
7544
+ padding: 0 var(--retro-spacing-md);
7545
+ box-sizing: border-box;
5858
7546
  }
5859
-
5860
- @media (max-width: 768px) {
5861
- .main-content {
5862
- margin-left: 0 !important;
5863
- width: 100vw !important;
5864
- max-width: 100vw !important;
5865
- box-sizing: border-box;
5866
- }
5867
- .retro-container, .demo-section {
5868
- width: 100vw !important;
5869
- max-width: 100vw !important;
5870
- box-sizing: border-box;
5871
- margin-left: 0 !important;
5872
- padding: 0 var(--retro-spacing-md) !important;
7547
+ @media (min-width: 768px) {
7548
+ .retro-main-layout {
7549
+ flex-direction: row;
7550
+ align-items: flex-start;
5873
7551
  }
5874
7552
  }
7553
+ .retro-main-layout > .retro-sidebar {
7554
+ flex: 0 0 auto;
7555
+ }
7556
+ .retro-main-layout > .main-content,
7557
+ .retro-main-layout > main {
7558
+ flex: 1 1 auto;
7559
+ min-width: 0;
7560
+ width: 100%;
7561
+ }
7562
+
7563
+ .main-content {
7564
+ width: 100%;
7565
+ min-width: 0;
7566
+ box-sizing: border-box;
7567
+ }
5875
7568
 
5876
7569
  /*# sourceMappingURL=retro.css.map */