lookbook 0.9.0 → 1.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (211) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +90 -824
  3. data/app/assets/lookbook/css/lookbook.css +55 -0
  4. data/app/assets/lookbook/css/themes/blue.css +42 -0
  5. data/app/assets/lookbook/css/themes/indigo.css +42 -0
  6. data/app/assets/lookbook/css/themes/zinc.css +42 -0
  7. data/app/assets/lookbook/css/{tooltip_theme.css → tooltip.css} +14 -8
  8. data/app/assets/lookbook/js/app.js +64 -63
  9. data/app/assets/lookbook/js/components/clipboard.js +47 -0
  10. data/app/assets/lookbook/js/components/tooltip.js +30 -0
  11. data/app/assets/lookbook/js/config.js +7 -4
  12. data/app/assets/lookbook/js/helpers/build.js +22 -0
  13. data/app/assets/lookbook/js/helpers/dom.js +45 -0
  14. data/app/assets/lookbook/js/helpers/layout.js +21 -0
  15. data/app/assets/lookbook/js/helpers/request.js +16 -0
  16. data/app/assets/lookbook/js/helpers/string.js +11 -0
  17. data/app/assets/lookbook/js/lib/socket.js +4 -3
  18. data/app/assets/lookbook/js/lib/tippy.js +8 -0
  19. data/app/assets/lookbook/js/lookbook.js +61 -0
  20. data/app/assets/lookbook/js/plugins/logger.js +39 -0
  21. data/app/assets/lookbook/js/stores/filter.js +2 -2
  22. data/app/assets/lookbook/js/stores/inspector.js +23 -17
  23. data/app/assets/lookbook/js/stores/layout.js +101 -5
  24. data/app/assets/lookbook/js/stores/nav.js +17 -16
  25. data/app/assets/lookbook/js/stores/pages.js +4 -2
  26. data/app/assets/lookbook/js/stores/settings.js +7 -0
  27. data/app/assets/lookbook/js/stores/workbench.js +29 -0
  28. data/app/components/lookbook/button/component.html.erb +28 -0
  29. data/app/components/lookbook/button/component.js +55 -0
  30. data/app/components/lookbook/button/component.rb +39 -0
  31. data/app/components/lookbook/button_group/component.html.erb +3 -0
  32. data/app/components/lookbook/button_group/component.rb +18 -0
  33. data/app/components/lookbook/code/component.css +57 -0
  34. data/app/components/lookbook/code/component.html.erb +10 -0
  35. data/app/components/lookbook/code/component.js +3 -0
  36. data/app/components/lookbook/code/component.rb +56 -0
  37. data/app/components/lookbook/code/highlight_github_light.css +217 -0
  38. data/app/components/lookbook/component.rb +41 -0
  39. data/app/components/lookbook/copy_button/component.html.erb +11 -0
  40. data/app/components/lookbook/copy_button/component.js +16 -0
  41. data/app/components/lookbook/copy_button/component.rb +23 -0
  42. data/app/components/lookbook/dimensions_display/component.html.erb +11 -0
  43. data/app/components/lookbook/dimensions_display/component.js +37 -0
  44. data/app/components/lookbook/dimensions_display/component.rb +18 -0
  45. data/app/components/lookbook/embed/component.html.erb +50 -0
  46. data/app/components/lookbook/embed/component.js +39 -0
  47. data/app/components/lookbook/embed/component.rb +22 -0
  48. data/app/components/lookbook/filter/component.html.erb +17 -0
  49. data/app/components/lookbook/filter/component.js +21 -0
  50. data/app/components/lookbook/filter/component.rb +15 -0
  51. data/app/components/lookbook/header/component.html.erb +79 -0
  52. data/app/components/lookbook/header/component.rb +9 -0
  53. data/app/components/lookbook/icon/component.css +11 -0
  54. data/app/components/lookbook/icon/component.html.erb +5 -0
  55. data/app/components/lookbook/icon/component.js +5 -0
  56. data/app/components/lookbook/icon/component.rb +23 -0
  57. data/app/components/lookbook/nav/component.html.erb +33 -0
  58. data/app/components/lookbook/nav/component.js +52 -0
  59. data/app/components/lookbook/nav/component.rb +37 -0
  60. data/app/components/lookbook/nav/item/component.html.erb +23 -0
  61. data/app/components/lookbook/nav/item/component.js +66 -0
  62. data/app/components/lookbook/nav/item/component.rb +84 -0
  63. data/app/components/lookbook/page_tabs/component.html.erb +18 -0
  64. data/app/components/lookbook/page_tabs/component.rb +19 -0
  65. data/app/components/lookbook/params_editor/component.html.erb +3 -0
  66. data/app/components/lookbook/params_editor/component.js +12 -0
  67. data/app/components/lookbook/params_editor/component.rb +11 -0
  68. data/app/components/lookbook/params_editor/field/component.html.erb +50 -0
  69. data/app/components/lookbook/params_editor/field/component.js +36 -0
  70. data/app/components/lookbook/params_editor/field/component.rb +41 -0
  71. data/app/components/lookbook/prose/component.css +12 -0
  72. data/app/components/lookbook/prose/component.html.erb +3 -0
  73. data/app/components/lookbook/prose/component.rb +26 -0
  74. data/app/components/lookbook/split_layout/component.html.erb +13 -0
  75. data/app/components/lookbook/split_layout/component.js +151 -0
  76. data/app/components/lookbook/split_layout/component.rb +11 -0
  77. data/app/components/lookbook/tab_panels/component.html.erb +5 -0
  78. data/app/components/lookbook/tab_panels/component.js +25 -0
  79. data/app/components/lookbook/tab_panels/component.rb +20 -0
  80. data/app/components/lookbook/tab_panels/panel/component.html.erb +8 -0
  81. data/app/components/lookbook/tab_panels/panel/component.rb +9 -0
  82. data/app/components/lookbook/tabs/component.css +8 -0
  83. data/app/components/lookbook/tabs/component.html.erb +20 -0
  84. data/app/components/lookbook/tabs/component.js +115 -0
  85. data/app/components/lookbook/tabs/component.rb +28 -0
  86. data/app/components/lookbook/tabs/dropdown_tab/component.html.erb +20 -0
  87. data/app/components/lookbook/tabs/dropdown_tab/component.rb +17 -0
  88. data/app/components/lookbook/tabs/tab/component.html.erb +24 -0
  89. data/app/components/lookbook/tabs/tab/component.rb +17 -0
  90. data/app/components/lookbook/tag_component.rb +29 -0
  91. data/app/components/lookbook/toolbar/component.css +16 -0
  92. data/app/components/lookbook/toolbar/component.html.erb +5 -0
  93. data/app/components/lookbook/toolbar/component.rb +26 -0
  94. data/app/components/lookbook/viewport/component.css +11 -0
  95. data/app/components/lookbook/viewport/component.html.erb +57 -0
  96. data/app/{assets/lookbook/js/components/preview-window.js → components/lookbook/viewport/component.js} +57 -14
  97. data/app/components/lookbook/viewport/component.rb +21 -0
  98. data/app/controllers/lookbook/application_controller.rb +16 -5
  99. data/app/controllers/lookbook/pages_controller.rb +17 -8
  100. data/app/controllers/lookbook/previews_controller.rb +130 -89
  101. data/app/helpers/lookbook/application_helper.rb +6 -2
  102. data/app/helpers/lookbook/component_helper.rb +22 -10
  103. data/app/helpers/lookbook/output_helper.rb +8 -4
  104. data/app/helpers/lookbook/page_helper.rb +13 -21
  105. data/app/views/layouts/lookbook/application.html.erb +76 -28
  106. data/app/views/layouts/lookbook/inspector.html.erb +7 -0
  107. data/app/views/layouts/lookbook/page.html.erb +53 -0
  108. data/app/views/layouts/lookbook/shell.html.erb +64 -0
  109. data/app/views/layouts/lookbook/skeleton.html.erb +27 -10
  110. data/app/views/layouts/lookbook/standalone.html.erb +5 -0
  111. data/app/views/lookbook/404.html.erb +15 -0
  112. data/app/views/lookbook/error.html.erb +34 -34
  113. data/app/views/lookbook/index.html.erb +11 -6
  114. data/app/views/lookbook/pages/show.html.erb +37 -91
  115. data/app/views/{layouts/lookbook → lookbook}/preview.html.erb +6 -8
  116. data/app/views/lookbook/previews/panels/_content.html.erb +13 -0
  117. data/app/views/lookbook/previews/panels/_notes.html.erb +19 -25
  118. data/app/views/lookbook/previews/panels/_output.html.erb +7 -18
  119. data/app/views/lookbook/previews/panels/_params.html.erb +13 -15
  120. data/app/views/lookbook/previews/panels/_preview.html.erb +6 -52
  121. data/app/views/lookbook/previews/panels/_source.html.erb +6 -15
  122. data/app/views/lookbook/previews/show.html.erb +133 -24
  123. data/config/routes.rb +5 -5
  124. data/lib/lookbook/code_formatter.rb +37 -13
  125. data/lib/lookbook/collection.rb +19 -16
  126. data/lib/lookbook/config.rb +180 -0
  127. data/lib/lookbook/engine.rb +66 -59
  128. data/lib/lookbook/entity.rb +47 -0
  129. data/lib/lookbook/error.rb +1 -2
  130. data/lib/lookbook/features.rb +1 -1
  131. data/lib/lookbook/markdown.rb +3 -4
  132. data/lib/lookbook/page.rb +40 -34
  133. data/lib/lookbook/page_collection.rb +8 -0
  134. data/lib/lookbook/page_section.rb +31 -0
  135. data/lib/lookbook/params.rb +14 -3
  136. data/lib/lookbook/preview.rb +16 -7
  137. data/lib/lookbook/preview_collection.rb +8 -0
  138. data/lib/lookbook/preview_controller.rb +6 -2
  139. data/lib/lookbook/preview_example.rb +5 -6
  140. data/lib/lookbook/preview_group.rb +4 -9
  141. data/lib/lookbook/{code_inspector.rb → source_inspector.rb} +2 -2
  142. data/lib/lookbook/store.rb +36 -0
  143. data/lib/lookbook/theme.rb +29 -0
  144. data/lib/lookbook/utils.rb +10 -2
  145. data/lib/lookbook/version.rb +1 -1
  146. data/lib/lookbook.rb +6 -1
  147. data/lib/tasks/lookbook_tasks.rake +12 -0
  148. data/public/lookbook-assets/css/app.css +2340 -1
  149. data/public/lookbook-assets/css/app.css.map +11 -1
  150. data/public/lookbook-assets/css/lookbook.css +3069 -0
  151. data/public/lookbook-assets/css/lookbook.css.map +1 -0
  152. data/public/lookbook-assets/css/themes/blue.css +44 -0
  153. data/public/lookbook-assets/css/themes/blue.css.map +1 -0
  154. data/public/lookbook-assets/css/themes/indigo.css +44 -0
  155. data/public/lookbook-assets/css/themes/indigo.css.map +1 -0
  156. data/public/lookbook-assets/css/themes/zinc.css +44 -0
  157. data/public/lookbook-assets/css/themes/zinc.css.map +1 -0
  158. data/public/lookbook-assets/js/app.js +10861 -1
  159. data/public/lookbook-assets/js/app.js.map +2571 -1
  160. data/public/lookbook-assets/js/embed.js +895 -1
  161. data/public/lookbook-assets/js/embed.js.map +1 -1
  162. data/public/lookbook-assets/js/lookbook.js +13541 -0
  163. data/public/lookbook-assets/js/lookbook.js.map +1 -0
  164. metadata +133 -116
  165. data/app/assets/lookbook/css/app.css +0 -161
  166. data/app/assets/lookbook/css/code_theme.css +0 -214
  167. data/app/assets/lookbook/js/components/app.js +0 -55
  168. data/app/assets/lookbook/js/components/code.js +0 -5
  169. data/app/assets/lookbook/js/components/copy.js +0 -20
  170. data/app/assets/lookbook/js/components/embed.js +0 -89
  171. data/app/assets/lookbook/js/components/filter.js +0 -35
  172. data/app/assets/lookbook/js/components/inspector.js +0 -66
  173. data/app/assets/lookbook/js/components/nav-group.js +0 -47
  174. data/app/assets/lookbook/js/components/nav-item.js +0 -29
  175. data/app/assets/lookbook/js/components/nav.js +0 -28
  176. data/app/assets/lookbook/js/components/page-tabs.js +0 -9
  177. data/app/assets/lookbook/js/components/page.js +0 -25
  178. data/app/assets/lookbook/js/components/param.js +0 -34
  179. data/app/assets/lookbook/js/components/sidebar.js +0 -18
  180. data/app/assets/lookbook/js/components/sizes.js +0 -16
  181. data/app/assets/lookbook/js/components/splitter.js +0 -25
  182. data/app/assets/lookbook/js/components/tabs.js +0 -52
  183. data/app/assets/lookbook/js/lib/split.js +0 -15
  184. data/app/assets/lookbook/js/stores/sidebar.js +0 -26
  185. data/app/views/layouts/lookbook/basic.html.erb +0 -7
  186. data/app/views/lookbook/components/_branding.html.erb +0 -8
  187. data/app/views/lookbook/components/_code.html.erb +0 -17
  188. data/app/views/lookbook/components/_copy_button.html.erb +0 -11
  189. data/app/views/lookbook/components/_drawer.html.erb +0 -112
  190. data/app/views/lookbook/components/_embed.html.erb +0 -39
  191. data/app/views/lookbook/components/_errors.html.erb +0 -13
  192. data/app/views/lookbook/components/_filter.html.erb +0 -18
  193. data/app/views/lookbook/components/_header.html.erb +0 -6
  194. data/app/views/lookbook/components/_icon.html.erb +0 -5
  195. data/app/views/lookbook/components/_nav.html.erb +0 -16
  196. data/app/views/lookbook/components/_nav_collection.html.erb +0 -5
  197. data/app/views/lookbook/components/_nav_group.html.erb +0 -14
  198. data/app/views/lookbook/components/_nav_item.html.erb +0 -24
  199. data/app/views/lookbook/components/_nav_page.html.erb +0 -22
  200. data/app/views/lookbook/components/_nav_preview.html.erb +0 -13
  201. data/app/views/lookbook/components/_not_found.html.erb +0 -11
  202. data/app/views/lookbook/components/_param.html.erb +0 -21
  203. data/app/views/lookbook/components/_preview.html.erb +0 -77
  204. data/app/views/lookbook/components/_sidebar.html.erb +0 -69
  205. data/app/views/lookbook/pages/not_found.html.erb +0 -15
  206. data/app/views/lookbook/previews/error.html.erb +0 -1
  207. data/app/views/lookbook/previews/inputs/_select.html.erb +0 -7
  208. data/app/views/lookbook/previews/inputs/_text.html.erb +0 -8
  209. data/app/views/lookbook/previews/inputs/_textarea.html.erb +0 -8
  210. data/app/views/lookbook/previews/inputs/_toggle.html.erb +0 -13
  211. data/app/views/lookbook/previews/not_found.html.erb +0 -23
@@ -0,0 +1,3069 @@
1
+ *, :before, :after {
2
+ box-sizing: border-box;
3
+ border: 0 solid #e5e7eb;
4
+ }
5
+
6
+ :before, :after {
7
+ --tw-content: "";
8
+ }
9
+
10
+ html {
11
+ -webkit-text-size-adjust: 100%;
12
+ tab-size: 4;
13
+ font-family: Nunito Sans, -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
14
+ line-height: 1.5;
15
+ }
16
+
17
+ body {
18
+ line-height: inherit;
19
+ margin: 0;
20
+ }
21
+
22
+ hr {
23
+ height: 0;
24
+ color: inherit;
25
+ border-top-width: 1px;
26
+ }
27
+
28
+ abbr:where([title]) {
29
+ text-decoration: underline dotted;
30
+ }
31
+
32
+ h1, h2, h3, h4, h5, h6 {
33
+ font-size: inherit;
34
+ font-weight: inherit;
35
+ }
36
+
37
+ a {
38
+ color: inherit;
39
+ text-decoration: inherit;
40
+ }
41
+
42
+ b, strong {
43
+ font-weight: bolder;
44
+ }
45
+
46
+ code, kbd, samp, pre {
47
+ font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
48
+ font-size: 1em;
49
+ }
50
+
51
+ small {
52
+ font-size: 80%;
53
+ }
54
+
55
+ sub, sup {
56
+ vertical-align: baseline;
57
+ font-size: 75%;
58
+ line-height: 0;
59
+ position: relative;
60
+ }
61
+
62
+ sub {
63
+ bottom: -.25em;
64
+ }
65
+
66
+ sup {
67
+ top: -.5em;
68
+ }
69
+
70
+ table {
71
+ text-indent: 0;
72
+ border-color: inherit;
73
+ border-collapse: collapse;
74
+ }
75
+
76
+ button, input, optgroup, select, textarea {
77
+ font-family: inherit;
78
+ font-size: 100%;
79
+ line-height: inherit;
80
+ color: inherit;
81
+ margin: 0;
82
+ padding: 0;
83
+ }
84
+
85
+ button, select {
86
+ text-transform: none;
87
+ }
88
+
89
+ button, [type="button"], [type="reset"], [type="submit"] {
90
+ -webkit-appearance: button;
91
+ background-color: #0000;
92
+ background-image: none;
93
+ }
94
+
95
+ :-moz-focusring {
96
+ outline: auto;
97
+ }
98
+
99
+ :-moz-ui-invalid {
100
+ box-shadow: none;
101
+ }
102
+
103
+ progress {
104
+ vertical-align: baseline;
105
+ }
106
+
107
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
108
+ height: auto;
109
+ }
110
+
111
+ [type="search"] {
112
+ -webkit-appearance: textfield;
113
+ outline-offset: -2px;
114
+ }
115
+
116
+ ::-webkit-search-decoration {
117
+ -webkit-appearance: none;
118
+ }
119
+
120
+ ::-webkit-file-upload-button {
121
+ -webkit-appearance: button;
122
+ font: inherit;
123
+ }
124
+
125
+ summary {
126
+ display: list-item;
127
+ }
128
+
129
+ blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
130
+ margin: 0;
131
+ }
132
+
133
+ fieldset {
134
+ margin: 0;
135
+ padding: 0;
136
+ }
137
+
138
+ legend {
139
+ padding: 0;
140
+ }
141
+
142
+ ol, ul, menu {
143
+ margin: 0;
144
+ padding: 0;
145
+ list-style: none;
146
+ }
147
+
148
+ textarea {
149
+ resize: vertical;
150
+ }
151
+
152
+ input::placeholder, textarea::placeholder {
153
+ opacity: 1;
154
+ color: #9ca3af;
155
+ }
156
+
157
+ button, [role="button"] {
158
+ cursor: pointer;
159
+ }
160
+
161
+ :disabled {
162
+ cursor: default;
163
+ }
164
+
165
+ img, svg, video, canvas, audio, iframe, embed, object {
166
+ vertical-align: middle;
167
+ display: block;
168
+ }
169
+
170
+ img, video {
171
+ max-width: 100%;
172
+ height: auto;
173
+ }
174
+
175
+ [hidden] {
176
+ display: none;
177
+ }
178
+
179
+ [type="text"], [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], [multiple], textarea, select {
180
+ appearance: none;
181
+ --tw-shadow: 0 0 #0000;
182
+ background-color: #fff;
183
+ border-width: 1px;
184
+ border-color: #6b7280;
185
+ border-radius: 0;
186
+ padding: .5rem .75rem;
187
+ font-size: 1rem;
188
+ line-height: 1.5rem;
189
+ }
190
+
191
+ [type="text"]:focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
192
+ outline-offset: 2px;
193
+ --tw-ring-inset: var(--tw-empty, );
194
+ --tw-ring-offset-width: 0px;
195
+ --tw-ring-offset-color: #fff;
196
+ --tw-ring-color: #2563eb;
197
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
198
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
199
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
200
+ border-color: #2563eb;
201
+ outline: 2px solid #0000;
202
+ }
203
+
204
+ input::placeholder, textarea::placeholder {
205
+ color: #6b7280;
206
+ opacity: 1;
207
+ }
208
+
209
+ ::-webkit-datetime-edit-fields-wrapper {
210
+ padding: 0;
211
+ }
212
+
213
+ ::-webkit-date-and-time-value {
214
+ min-height: 1.5em;
215
+ }
216
+
217
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
218
+ padding-top: 0;
219
+ padding-bottom: 0;
220
+ }
221
+
222
+ select {
223
+ color-adjust: exact;
224
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
225
+ background-position: right .5rem center;
226
+ background-repeat: no-repeat;
227
+ background-size: 1.5em 1.5em;
228
+ padding-right: 2.5rem;
229
+ }
230
+
231
+ [multiple] {
232
+ background-image: initial;
233
+ background-position: initial;
234
+ background-repeat: unset;
235
+ background-size: initial;
236
+ color-adjust: unset;
237
+ padding-right: .75rem;
238
+ }
239
+
240
+ [type="checkbox"], [type="radio"] {
241
+ appearance: none;
242
+ color-adjust: exact;
243
+ vertical-align: middle;
244
+ -webkit-user-select: none;
245
+ user-select: none;
246
+ height: 1rem;
247
+ width: 1rem;
248
+ color: #2563eb;
249
+ --tw-shadow: 0 0 #0000;
250
+ background-color: #fff;
251
+ background-origin: border-box;
252
+ border-width: 1px;
253
+ border-color: #6b7280;
254
+ flex-shrink: 0;
255
+ padding: 0;
256
+ display: inline-block;
257
+ }
258
+
259
+ [type="checkbox"] {
260
+ border-radius: 0;
261
+ }
262
+
263
+ [type="radio"] {
264
+ border-radius: 100%;
265
+ }
266
+
267
+ [type="checkbox"]:focus, [type="radio"]:focus {
268
+ outline-offset: 2px;
269
+ --tw-ring-inset: var(--tw-empty, );
270
+ --tw-ring-offset-width: 2px;
271
+ --tw-ring-offset-color: #fff;
272
+ --tw-ring-color: #2563eb;
273
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
274
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
275
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
276
+ outline: 2px solid #0000;
277
+ }
278
+
279
+ [type="checkbox"]:checked, [type="radio"]:checked {
280
+ background-color: currentColor;
281
+ background-position: center;
282
+ background-repeat: no-repeat;
283
+ background-size: 100% 100%;
284
+ border-color: #0000;
285
+ }
286
+
287
+ [type="checkbox"]:checked {
288
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
289
+ }
290
+
291
+ [type="radio"]:checked {
292
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
293
+ }
294
+
295
+ [type="checkbox"]:checked:hover, [type="checkbox"]:checked:focus, [type="radio"]:checked:hover, [type="radio"]:checked:focus {
296
+ background-color: currentColor;
297
+ border-color: #0000;
298
+ }
299
+
300
+ [type="checkbox"]:indeterminate {
301
+ background-color: currentColor;
302
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
303
+ background-position: center;
304
+ background-repeat: no-repeat;
305
+ background-size: 100% 100%;
306
+ border-color: #0000;
307
+ }
308
+
309
+ [type="checkbox"]:indeterminate:hover, [type="checkbox"]:indeterminate:focus {
310
+ background-color: currentColor;
311
+ border-color: #0000;
312
+ }
313
+
314
+ [type="file"] {
315
+ background: unset;
316
+ border-color: inherit;
317
+ font-size: unset;
318
+ line-height: inherit;
319
+ border-width: 0;
320
+ border-radius: 0;
321
+ padding: 0;
322
+ }
323
+
324
+ [type="file"]:focus {
325
+ outline: 1px auto -webkit-focus-ring-color;
326
+ }
327
+
328
+ html {
329
+ height: 100vh;
330
+ scroll-behavior: smooth;
331
+ }
332
+
333
+ @media screen and (prefers-reduced-motion: reduce) {
334
+ html {
335
+ scroll-behavior: auto;
336
+ }
337
+ }
338
+
339
+ body {
340
+ color: var(--lookbook-text);
341
+ -webkit-font-smoothing: antialiased;
342
+ -moz-osx-font-smoothing: grayscale;
343
+ font-family: Nunito Sans, -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
344
+ font-size: .875rem;
345
+ line-height: 1.25rem;
346
+ overflow: hidden;
347
+ }
348
+
349
+ [x-cloak] {
350
+ display: none !important;
351
+ }
352
+
353
+ pre[class*="language-"] {
354
+ margin: 0 !important;
355
+ padding: 0 !important;
356
+ }
357
+
358
+ ::-webkit-scrollbar {
359
+ height: .25rem;
360
+ width: .25rem;
361
+ }
362
+
363
+ ::-webkit-scrollbar-track {
364
+ background-color: #0000;
365
+ }
366
+
367
+ ::-webkit-scrollbar-thumb {
368
+ background-color: var(--lookbook-scrollbar);
369
+ background-clip: content-box;
370
+ border-radius: 9999px;
371
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
372
+ transition-duration: .15s;
373
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
374
+ }
375
+
376
+ ::-webkit-scrollbar-thumb:hover {
377
+ background-color: var(--lookbook-scrollbar-hover);
378
+ }
379
+
380
+ *, :before, :after {
381
+ --tw-translate-x: 0;
382
+ --tw-translate-y: 0;
383
+ --tw-rotate: 0;
384
+ --tw-skew-x: 0;
385
+ --tw-skew-y: 0;
386
+ --tw-scale-x: 1;
387
+ --tw-scale-y: 1;
388
+ --tw-pan-x: ;
389
+ --tw-pan-y: ;
390
+ --tw-pinch-zoom: ;
391
+ --tw-scroll-snap-strictness: proximity;
392
+ --tw-ordinal: ;
393
+ --tw-slashed-zero: ;
394
+ --tw-numeric-figure: ;
395
+ --tw-numeric-spacing: ;
396
+ --tw-numeric-fraction: ;
397
+ --tw-ring-inset: ;
398
+ --tw-ring-offset-width: 0px;
399
+ --tw-ring-offset-color: #fff;
400
+ --tw-ring-color: #3b82f680;
401
+ --tw-ring-offset-shadow: 0 0 #0000;
402
+ --tw-ring-shadow: 0 0 #0000;
403
+ --tw-shadow: 0 0 #0000;
404
+ --tw-shadow-colored: 0 0 #0000;
405
+ --tw-blur: ;
406
+ --tw-brightness: ;
407
+ --tw-contrast: ;
408
+ --tw-grayscale: ;
409
+ --tw-hue-rotate: ;
410
+ --tw-invert: ;
411
+ --tw-saturate: ;
412
+ --tw-sepia: ;
413
+ --tw-drop-shadow: ;
414
+ --tw-backdrop-blur: ;
415
+ --tw-backdrop-brightness: ;
416
+ --tw-backdrop-contrast: ;
417
+ --tw-backdrop-grayscale: ;
418
+ --tw-backdrop-hue-rotate: ;
419
+ --tw-backdrop-invert: ;
420
+ --tw-backdrop-opacity: ;
421
+ --tw-backdrop-saturate: ;
422
+ --tw-backdrop-sepia: ;
423
+ }
424
+
425
+ .prose {
426
+ color: var(--tw-prose-body);
427
+ max-width: 65ch;
428
+ }
429
+
430
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
431
+ color: var(--tw-prose-lead);
432
+ margin-top: 1.2em;
433
+ margin-bottom: 1.2em;
434
+ font-size: 1.25em;
435
+ line-height: 1.6;
436
+ }
437
+
438
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
439
+ color: var(--tw-prose-links);
440
+ font-weight: 500;
441
+ text-decoration: underline;
442
+ }
443
+
444
+ .prose :where(strong):not(:where([class~="not-prose"] *)) {
445
+ color: var(--tw-prose-bold);
446
+ font-weight: 600;
447
+ }
448
+
449
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
450
+ padding-left: 1.625em;
451
+ list-style-type: decimal;
452
+ }
453
+
454
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
455
+ list-style-type: upper-alpha;
456
+ }
457
+
458
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
459
+ list-style-type: lower-alpha;
460
+ }
461
+
462
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
463
+ list-style-type: upper-alpha;
464
+ }
465
+
466
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
467
+ list-style-type: lower-alpha;
468
+ }
469
+
470
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
471
+ list-style-type: upper-roman;
472
+ }
473
+
474
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
475
+ list-style-type: lower-roman;
476
+ }
477
+
478
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
479
+ list-style-type: upper-roman;
480
+ }
481
+
482
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
483
+ list-style-type: lower-roman;
484
+ }
485
+
486
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
487
+ list-style-type: decimal;
488
+ }
489
+
490
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
491
+ padding-left: 1.625em;
492
+ list-style-type: disc;
493
+ }
494
+
495
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
496
+ color: var(--tw-prose-counters);
497
+ font-weight: 400;
498
+ }
499
+
500
+ .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
501
+ color: var(--tw-prose-bullets);
502
+ }
503
+
504
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
505
+ border-color: var(--tw-prose-hr);
506
+ border-top-width: 1px;
507
+ margin-top: 3em;
508
+ margin-bottom: 3em;
509
+ }
510
+
511
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
512
+ color: var(--tw-prose-quotes);
513
+ border-left-width: .25rem;
514
+ border-left-color: var(--tw-prose-quote-borders);
515
+ quotes: "“""”""‘""’";
516
+ margin-top: 1.6em;
517
+ margin-bottom: 1.6em;
518
+ padding-left: 1em;
519
+ font-style: italic;
520
+ font-weight: 500;
521
+ }
522
+
523
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *)):before {
524
+ content: open-quote;
525
+ }
526
+
527
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *)):after {
528
+ content: close-quote;
529
+ }
530
+
531
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
532
+ color: var(--tw-prose-headings);
533
+ margin-top: 0;
534
+ margin-bottom: .888889em;
535
+ font-size: 2.25em;
536
+ font-weight: 800;
537
+ line-height: 1.11111;
538
+ }
539
+
540
+ .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
541
+ font-weight: 900;
542
+ }
543
+
544
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
545
+ color: var(--tw-prose-headings);
546
+ margin-top: 2em;
547
+ margin-bottom: 1em;
548
+ font-size: 1.5em;
549
+ font-weight: 700;
550
+ line-height: 1.33333;
551
+ }
552
+
553
+ .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
554
+ font-weight: 800;
555
+ }
556
+
557
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
558
+ color: var(--tw-prose-headings);
559
+ margin-top: 1.6em;
560
+ margin-bottom: .6em;
561
+ font-size: 1.25em;
562
+ font-weight: 600;
563
+ line-height: 1.6;
564
+ }
565
+
566
+ .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
567
+ font-weight: 700;
568
+ }
569
+
570
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
571
+ color: var(--tw-prose-headings);
572
+ margin-top: 1.5em;
573
+ margin-bottom: .5em;
574
+ font-weight: 600;
575
+ line-height: 1.5;
576
+ }
577
+
578
+ .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
579
+ font-weight: 700;
580
+ }
581
+
582
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
583
+ margin-top: 0;
584
+ margin-bottom: 0;
585
+ }
586
+
587
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
588
+ color: var(--tw-prose-captions);
589
+ margin-top: .857143em;
590
+ font-size: .875em;
591
+ line-height: 1.42857;
592
+ }
593
+
594
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
595
+ color: var(--tw-prose-code);
596
+ font-size: .875em;
597
+ font-weight: 600;
598
+ }
599
+
600
+ .prose :where(code):not(:where([class~="not-prose"] *)):before, .prose :where(code):not(:where([class~="not-prose"] *)):after {
601
+ content: "`";
602
+ }
603
+
604
+ .prose :where(a code):not(:where([class~="not-prose"] *)) {
605
+ color: var(--tw-prose-links);
606
+ }
607
+
608
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
609
+ color: var(--tw-prose-pre-code);
610
+ background-color: var(--tw-prose-pre-bg);
611
+ border-radius: .375rem;
612
+ margin-top: 1.71429em;
613
+ margin-bottom: 1.71429em;
614
+ padding: .857143em 1.14286em;
615
+ font-size: .875em;
616
+ font-weight: 400;
617
+ line-height: 1.71429;
618
+ overflow-x: auto;
619
+ }
620
+
621
+ .prose :where(pre code):not(:where([class~="not-prose"] *)) {
622
+ font-weight: inherit;
623
+ color: inherit;
624
+ font-size: inherit;
625
+ font-family: inherit;
626
+ line-height: inherit;
627
+ background-color: #0000;
628
+ border-width: 0;
629
+ border-radius: 0;
630
+ padding: 0;
631
+ }
632
+
633
+ .prose :where(pre code):not(:where([class~="not-prose"] *)):before, .prose :where(pre code):not(:where([class~="not-prose"] *)):after {
634
+ content: none;
635
+ }
636
+
637
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
638
+ width: 100%;
639
+ table-layout: auto;
640
+ text-align: left;
641
+ margin-top: 2em;
642
+ margin-bottom: 2em;
643
+ font-size: .875em;
644
+ line-height: 1.71429;
645
+ }
646
+
647
+ .prose :where(thead):not(:where([class~="not-prose"] *)) {
648
+ border-bottom-width: 1px;
649
+ border-bottom-color: var(--tw-prose-th-borders);
650
+ }
651
+
652
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
653
+ color: var(--tw-prose-headings);
654
+ vertical-align: bottom;
655
+ padding-bottom: .571429em;
656
+ padding-left: .571429em;
657
+ padding-right: .571429em;
658
+ font-weight: 600;
659
+ }
660
+
661
+ .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
662
+ border-bottom-width: 1px;
663
+ border-bottom-color: var(--tw-prose-td-borders);
664
+ }
665
+
666
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
667
+ border-bottom-width: 0;
668
+ }
669
+
670
+ .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
671
+ vertical-align: baseline;
672
+ padding: .571429em;
673
+ }
674
+
675
+ .prose {
676
+ --tw-prose-body: #374151;
677
+ --tw-prose-headings: #111827;
678
+ --tw-prose-lead: #4b5563;
679
+ --tw-prose-links: #111827;
680
+ --tw-prose-bold: #111827;
681
+ --tw-prose-counters: #6b7280;
682
+ --tw-prose-bullets: #d1d5db;
683
+ --tw-prose-hr: #e5e7eb;
684
+ --tw-prose-quotes: #111827;
685
+ --tw-prose-quote-borders: #e5e7eb;
686
+ --tw-prose-captions: #6b7280;
687
+ --tw-prose-code: #111827;
688
+ --tw-prose-pre-code: #e5e7eb;
689
+ --tw-prose-pre-bg: #1f2937;
690
+ --tw-prose-th-borders: #d1d5db;
691
+ --tw-prose-td-borders: #e5e7eb;
692
+ --tw-prose-invert-body: #d1d5db;
693
+ --tw-prose-invert-headings: #fff;
694
+ --tw-prose-invert-lead: #9ca3af;
695
+ --tw-prose-invert-links: #fff;
696
+ --tw-prose-invert-bold: #fff;
697
+ --tw-prose-invert-counters: #9ca3af;
698
+ --tw-prose-invert-bullets: #4b5563;
699
+ --tw-prose-invert-hr: #374151;
700
+ --tw-prose-invert-quotes: #f3f4f6;
701
+ --tw-prose-invert-quote-borders: #374151;
702
+ --tw-prose-invert-captions: #9ca3af;
703
+ --tw-prose-invert-code: #fff;
704
+ --tw-prose-invert-pre-code: #d1d5db;
705
+ --tw-prose-invert-pre-bg: #00000080;
706
+ --tw-prose-invert-th-borders: #4b5563;
707
+ --tw-prose-invert-td-borders: #374151;
708
+ font-size: 1rem;
709
+ line-height: 1.75;
710
+ }
711
+
712
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
713
+ margin-top: 1.25em;
714
+ margin-bottom: 1.25em;
715
+ }
716
+
717
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
718
+ margin-top: 2em;
719
+ margin-bottom: 2em;
720
+ }
721
+
722
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
723
+ margin-top: 2em;
724
+ margin-bottom: 2em;
725
+ }
726
+
727
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
728
+ margin-top: 2em;
729
+ margin-bottom: 2em;
730
+ }
731
+
732
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
733
+ font-size: .875em;
734
+ }
735
+
736
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
737
+ font-size: .9em;
738
+ }
739
+
740
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
741
+ margin-top: .5em;
742
+ margin-bottom: .5em;
743
+ }
744
+
745
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
746
+ padding-left: .375em;
747
+ }
748
+
749
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
750
+ padding-left: .375em;
751
+ }
752
+
753
+ .prose > :where(ul > li p):not(:where([class~="not-prose"] *)) {
754
+ margin-top: .75em;
755
+ margin-bottom: .75em;
756
+ }
757
+
758
+ .prose > :where(ul > li > :first-child):not(:where([class~="not-prose"] *)) {
759
+ margin-top: 1.25em;
760
+ }
761
+
762
+ .prose > :where(ul > li > :last-child):not(:where([class~="not-prose"] *)) {
763
+ margin-bottom: 1.25em;
764
+ }
765
+
766
+ .prose > :where(ol > li > :first-child):not(:where([class~="not-prose"] *)) {
767
+ margin-top: 1.25em;
768
+ }
769
+
770
+ .prose > :where(ol > li > :last-child):not(:where([class~="not-prose"] *)) {
771
+ margin-bottom: 1.25em;
772
+ }
773
+
774
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
775
+ margin-top: .75em;
776
+ margin-bottom: .75em;
777
+ }
778
+
779
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
780
+ margin-top: 0;
781
+ }
782
+
783
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
784
+ margin-top: 0;
785
+ }
786
+
787
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
788
+ margin-top: 0;
789
+ }
790
+
791
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
792
+ margin-top: 0;
793
+ }
794
+
795
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
796
+ padding-left: 0;
797
+ }
798
+
799
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
800
+ padding-right: 0;
801
+ }
802
+
803
+ .prose :where(tbody td:first-child):not(:where([class~="not-prose"] *)) {
804
+ padding-left: 0;
805
+ }
806
+
807
+ .prose :where(tbody td:last-child):not(:where([class~="not-prose"] *)) {
808
+ padding-right: 0;
809
+ }
810
+
811
+ .prose > :where(:first-child):not(:where([class~="not-prose"] *)) {
812
+ margin-top: 0;
813
+ }
814
+
815
+ .prose > :where(:last-child):not(:where([class~="not-prose"] *)) {
816
+ margin-bottom: 0;
817
+ }
818
+
819
+ .prose-sm {
820
+ font-size: .875rem;
821
+ line-height: 1.71429;
822
+ }
823
+
824
+ .prose-sm :where(p):not(:where([class~="not-prose"] *)) {
825
+ margin-top: 1.14286em;
826
+ margin-bottom: 1.14286em;
827
+ }
828
+
829
+ .prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
830
+ margin-top: .888889em;
831
+ margin-bottom: .888889em;
832
+ font-size: 1.28571em;
833
+ line-height: 1.55556;
834
+ }
835
+
836
+ .prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) {
837
+ margin-top: 1.33333em;
838
+ margin-bottom: 1.33333em;
839
+ padding-left: 1.11111em;
840
+ }
841
+
842
+ .prose-sm :where(h1):not(:where([class~="not-prose"] *)) {
843
+ margin-top: 0;
844
+ margin-bottom: .8em;
845
+ font-size: 2.14286em;
846
+ line-height: 1.2;
847
+ }
848
+
849
+ .prose-sm :where(h2):not(:where([class~="not-prose"] *)) {
850
+ margin-top: 1.6em;
851
+ margin-bottom: .8em;
852
+ font-size: 1.42857em;
853
+ line-height: 1.4;
854
+ }
855
+
856
+ .prose-sm :where(h3):not(:where([class~="not-prose"] *)) {
857
+ margin-top: 1.55556em;
858
+ margin-bottom: .444444em;
859
+ font-size: 1.28571em;
860
+ line-height: 1.55556;
861
+ }
862
+
863
+ .prose-sm :where(h4):not(:where([class~="not-prose"] *)) {
864
+ margin-top: 1.42857em;
865
+ margin-bottom: .571429em;
866
+ line-height: 1.42857;
867
+ }
868
+
869
+ .prose-sm :where(img):not(:where([class~="not-prose"] *)) {
870
+ margin-top: 1.71429em;
871
+ margin-bottom: 1.71429em;
872
+ }
873
+
874
+ .prose-sm :where(video):not(:where([class~="not-prose"] *)) {
875
+ margin-top: 1.71429em;
876
+ margin-bottom: 1.71429em;
877
+ }
878
+
879
+ .prose-sm :where(figure):not(:where([class~="not-prose"] *)) {
880
+ margin-top: 1.71429em;
881
+ margin-bottom: 1.71429em;
882
+ }
883
+
884
+ .prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) {
885
+ margin-top: 0;
886
+ margin-bottom: 0;
887
+ }
888
+
889
+ .prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) {
890
+ margin-top: .666667em;
891
+ font-size: .857143em;
892
+ line-height: 1.33333;
893
+ }
894
+
895
+ .prose-sm :where(code):not(:where([class~="not-prose"] *)) {
896
+ font-size: .857143em;
897
+ }
898
+
899
+ .prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) {
900
+ font-size: .9em;
901
+ }
902
+
903
+ .prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) {
904
+ font-size: .888889em;
905
+ }
906
+
907
+ .prose-sm :where(pre):not(:where([class~="not-prose"] *)) {
908
+ border-radius: .25rem;
909
+ margin-top: 1.66667em;
910
+ margin-bottom: 1.66667em;
911
+ padding: .666667em 1em;
912
+ font-size: .857143em;
913
+ line-height: 1.66667;
914
+ }
915
+
916
+ .prose-sm :where(ol):not(:where([class~="not-prose"] *)) {
917
+ padding-left: 1.57143em;
918
+ }
919
+
920
+ .prose-sm :where(ul):not(:where([class~="not-prose"] *)) {
921
+ padding-left: 1.57143em;
922
+ }
923
+
924
+ .prose-sm :where(li):not(:where([class~="not-prose"] *)) {
925
+ margin-top: .285714em;
926
+ margin-bottom: .285714em;
927
+ }
928
+
929
+ .prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) {
930
+ padding-left: .428571em;
931
+ }
932
+
933
+ .prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
934
+ padding-left: .428571em;
935
+ }
936
+
937
+ .prose-sm > :where(ul > li p):not(:where([class~="not-prose"] *)) {
938
+ margin-top: .571429em;
939
+ margin-bottom: .571429em;
940
+ }
941
+
942
+ .prose-sm > :where(ul > li > :first-child):not(:where([class~="not-prose"] *)) {
943
+ margin-top: 1.14286em;
944
+ }
945
+
946
+ .prose-sm > :where(ul > li > :last-child):not(:where([class~="not-prose"] *)) {
947
+ margin-bottom: 1.14286em;
948
+ }
949
+
950
+ .prose-sm > :where(ol > li > :first-child):not(:where([class~="not-prose"] *)) {
951
+ margin-top: 1.14286em;
952
+ }
953
+
954
+ .prose-sm > :where(ol > li > :last-child):not(:where([class~="not-prose"] *)) {
955
+ margin-bottom: 1.14286em;
956
+ }
957
+
958
+ .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
959
+ margin-top: .571429em;
960
+ margin-bottom: .571429em;
961
+ }
962
+
963
+ .prose-sm :where(hr):not(:where([class~="not-prose"] *)) {
964
+ margin-top: 2.85714em;
965
+ margin-bottom: 2.85714em;
966
+ }
967
+
968
+ .prose-sm :where(hr + *):not(:where([class~="not-prose"] *)) {
969
+ margin-top: 0;
970
+ }
971
+
972
+ .prose-sm :where(h2 + *):not(:where([class~="not-prose"] *)) {
973
+ margin-top: 0;
974
+ }
975
+
976
+ .prose-sm :where(h3 + *):not(:where([class~="not-prose"] *)) {
977
+ margin-top: 0;
978
+ }
979
+
980
+ .prose-sm :where(h4 + *):not(:where([class~="not-prose"] *)) {
981
+ margin-top: 0;
982
+ }
983
+
984
+ .prose-sm :where(table):not(:where([class~="not-prose"] *)) {
985
+ font-size: .857143em;
986
+ line-height: 1.5;
987
+ }
988
+
989
+ .prose-sm :where(thead th):not(:where([class~="not-prose"] *)) {
990
+ padding-bottom: .666667em;
991
+ padding-left: 1em;
992
+ padding-right: 1em;
993
+ }
994
+
995
+ .prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
996
+ padding-left: 0;
997
+ }
998
+
999
+ .prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1000
+ padding-right: 0;
1001
+ }
1002
+
1003
+ .prose-sm :where(tbody td):not(:where([class~="not-prose"] *)) {
1004
+ padding: .666667em 1em;
1005
+ }
1006
+
1007
+ .prose-sm :where(tbody td:first-child):not(:where([class~="not-prose"] *)) {
1008
+ padding-left: 0;
1009
+ }
1010
+
1011
+ .prose-sm :where(tbody td:last-child):not(:where([class~="not-prose"] *)) {
1012
+ padding-right: 0;
1013
+ }
1014
+
1015
+ .prose-sm > :where(:first-child):not(:where([class~="not-prose"] *)) {
1016
+ margin-top: 0;
1017
+ }
1018
+
1019
+ .prose-sm > :where(:last-child):not(:where([class~="not-prose"] *)) {
1020
+ margin-bottom: 0;
1021
+ }
1022
+
1023
+ .prose-lg {
1024
+ font-size: 1.125rem;
1025
+ line-height: 1.77778;
1026
+ }
1027
+
1028
+ .prose-lg :where(p):not(:where([class~="not-prose"] *)) {
1029
+ margin-top: 1.33333em;
1030
+ margin-bottom: 1.33333em;
1031
+ }
1032
+
1033
+ .prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
1034
+ margin-top: 1.09091em;
1035
+ margin-bottom: 1.09091em;
1036
+ font-size: 1.22222em;
1037
+ line-height: 1.45455;
1038
+ }
1039
+
1040
+ .prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) {
1041
+ margin-top: 1.66667em;
1042
+ margin-bottom: 1.66667em;
1043
+ padding-left: 1em;
1044
+ }
1045
+
1046
+ .prose-lg :where(h1):not(:where([class~="not-prose"] *)) {
1047
+ margin-top: 0;
1048
+ margin-bottom: .833333em;
1049
+ font-size: 2.66667em;
1050
+ line-height: 1;
1051
+ }
1052
+
1053
+ .prose-lg :where(h2):not(:where([class~="not-prose"] *)) {
1054
+ margin-top: 1.86667em;
1055
+ margin-bottom: 1.06667em;
1056
+ font-size: 1.66667em;
1057
+ line-height: 1.33333;
1058
+ }
1059
+
1060
+ .prose-lg :where(h3):not(:where([class~="not-prose"] *)) {
1061
+ margin-top: 1.66667em;
1062
+ margin-bottom: .666667em;
1063
+ font-size: 1.33333em;
1064
+ line-height: 1.5;
1065
+ }
1066
+
1067
+ .prose-lg :where(h4):not(:where([class~="not-prose"] *)) {
1068
+ margin-top: 1.77778em;
1069
+ margin-bottom: .444444em;
1070
+ line-height: 1.55556;
1071
+ }
1072
+
1073
+ .prose-lg :where(img):not(:where([class~="not-prose"] *)) {
1074
+ margin-top: 1.77778em;
1075
+ margin-bottom: 1.77778em;
1076
+ }
1077
+
1078
+ .prose-lg :where(video):not(:where([class~="not-prose"] *)) {
1079
+ margin-top: 1.77778em;
1080
+ margin-bottom: 1.77778em;
1081
+ }
1082
+
1083
+ .prose-lg :where(figure):not(:where([class~="not-prose"] *)) {
1084
+ margin-top: 1.77778em;
1085
+ margin-bottom: 1.77778em;
1086
+ }
1087
+
1088
+ .prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) {
1089
+ margin-top: 0;
1090
+ margin-bottom: 0;
1091
+ }
1092
+
1093
+ .prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) {
1094
+ margin-top: 1em;
1095
+ font-size: .888889em;
1096
+ line-height: 1.5;
1097
+ }
1098
+
1099
+ .prose-lg :where(code):not(:where([class~="not-prose"] *)) {
1100
+ font-size: .888889em;
1101
+ }
1102
+
1103
+ .prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) {
1104
+ font-size: .866667em;
1105
+ }
1106
+
1107
+ .prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) {
1108
+ font-size: .875em;
1109
+ }
1110
+
1111
+ .prose-lg :where(pre):not(:where([class~="not-prose"] *)) {
1112
+ border-radius: .375rem;
1113
+ margin-top: 2em;
1114
+ margin-bottom: 2em;
1115
+ padding: 1em 1.5em;
1116
+ font-size: .888889em;
1117
+ line-height: 1.75;
1118
+ }
1119
+
1120
+ .prose-lg :where(ol):not(:where([class~="not-prose"] *)) {
1121
+ padding-left: 1.55556em;
1122
+ }
1123
+
1124
+ .prose-lg :where(ul):not(:where([class~="not-prose"] *)) {
1125
+ padding-left: 1.55556em;
1126
+ }
1127
+
1128
+ .prose-lg :where(li):not(:where([class~="not-prose"] *)) {
1129
+ margin-top: .666667em;
1130
+ margin-bottom: .666667em;
1131
+ }
1132
+
1133
+ .prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) {
1134
+ padding-left: .444444em;
1135
+ }
1136
+
1137
+ .prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) {
1138
+ padding-left: .444444em;
1139
+ }
1140
+
1141
+ .prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) {
1142
+ margin-top: .888889em;
1143
+ margin-bottom: .888889em;
1144
+ }
1145
+
1146
+ .prose-lg > :where(ul > li > :first-child):not(:where([class~="not-prose"] *)) {
1147
+ margin-top: 1.33333em;
1148
+ }
1149
+
1150
+ .prose-lg > :where(ul > li > :last-child):not(:where([class~="not-prose"] *)) {
1151
+ margin-bottom: 1.33333em;
1152
+ }
1153
+
1154
+ .prose-lg > :where(ol > li > :first-child):not(:where([class~="not-prose"] *)) {
1155
+ margin-top: 1.33333em;
1156
+ }
1157
+
1158
+ .prose-lg > :where(ol > li > :last-child):not(:where([class~="not-prose"] *)) {
1159
+ margin-bottom: 1.33333em;
1160
+ }
1161
+
1162
+ .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
1163
+ margin-top: .888889em;
1164
+ margin-bottom: .888889em;
1165
+ }
1166
+
1167
+ .prose-lg :where(hr):not(:where([class~="not-prose"] *)) {
1168
+ margin-top: 3.11111em;
1169
+ margin-bottom: 3.11111em;
1170
+ }
1171
+
1172
+ .prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) {
1173
+ margin-top: 0;
1174
+ }
1175
+
1176
+ .prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) {
1177
+ margin-top: 0;
1178
+ }
1179
+
1180
+ .prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) {
1181
+ margin-top: 0;
1182
+ }
1183
+
1184
+ .prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) {
1185
+ margin-top: 0;
1186
+ }
1187
+
1188
+ .prose-lg :where(table):not(:where([class~="not-prose"] *)) {
1189
+ font-size: .888889em;
1190
+ line-height: 1.5;
1191
+ }
1192
+
1193
+ .prose-lg :where(thead th):not(:where([class~="not-prose"] *)) {
1194
+ padding-bottom: .75em;
1195
+ padding-left: .75em;
1196
+ padding-right: .75em;
1197
+ }
1198
+
1199
+ .prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1200
+ padding-left: 0;
1201
+ }
1202
+
1203
+ .prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1204
+ padding-right: 0;
1205
+ }
1206
+
1207
+ .prose-lg :where(tbody td):not(:where([class~="not-prose"] *)) {
1208
+ padding: .75em;
1209
+ }
1210
+
1211
+ .prose-lg :where(tbody td:first-child):not(:where([class~="not-prose"] *)) {
1212
+ padding-left: 0;
1213
+ }
1214
+
1215
+ .prose-lg :where(tbody td:last-child):not(:where([class~="not-prose"] *)) {
1216
+ padding-right: 0;
1217
+ }
1218
+
1219
+ .prose-lg > :where(:first-child):not(:where([class~="not-prose"] *)) {
1220
+ margin-top: 0;
1221
+ }
1222
+
1223
+ .prose-lg > :where(:last-child):not(:where([class~="not-prose"] *)) {
1224
+ margin-bottom: 0;
1225
+ }
1226
+
1227
+ .theme-github-light {
1228
+ --tw-bg-opacity: 1;
1229
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
1230
+ }
1231
+
1232
+ .theme-github-light .highlight .hll {
1233
+ background-color: #f8f8f8;
1234
+ border: 1px solid #ccc;
1235
+ border-radius: 3px;
1236
+ padding: 6px 10px;
1237
+ }
1238
+
1239
+ .theme-github-light .highlight .c {
1240
+ color: #998;
1241
+ font-style: italic;
1242
+ }
1243
+
1244
+ .theme-github-light .highlight .k, .theme-github-light .highlight .o {
1245
+ font-weight: bold;
1246
+ }
1247
+
1248
+ .theme-github-light .highlight .cm {
1249
+ color: #998;
1250
+ font-style: italic;
1251
+ }
1252
+
1253
+ .theme-github-light .highlight .cp {
1254
+ color: #999;
1255
+ font-weight: bold;
1256
+ }
1257
+
1258
+ .theme-github-light .highlight .c1 {
1259
+ color: #998;
1260
+ font-style: italic;
1261
+ }
1262
+
1263
+ .theme-github-light .highlight .cs {
1264
+ color: #999;
1265
+ font-style: italic;
1266
+ font-weight: bold;
1267
+ }
1268
+
1269
+ .theme-github-light .highlight .gd {
1270
+ color: #000;
1271
+ background-color: #fdd;
1272
+ }
1273
+
1274
+ .theme-github-light .highlight .gd .x {
1275
+ color: #000;
1276
+ background-color: #faa;
1277
+ }
1278
+
1279
+ .theme-github-light .highlight .ge {
1280
+ font-style: italic;
1281
+ }
1282
+
1283
+ .theme-github-light .highlight .gr {
1284
+ color: #a00;
1285
+ }
1286
+
1287
+ .theme-github-light .highlight .gh {
1288
+ color: #999;
1289
+ }
1290
+
1291
+ .theme-github-light .highlight .gi {
1292
+ color: #000;
1293
+ background-color: #dfd;
1294
+ }
1295
+
1296
+ .theme-github-light .highlight .gi .x {
1297
+ color: #000;
1298
+ background-color: #afa;
1299
+ }
1300
+
1301
+ .theme-github-light .highlight .go {
1302
+ color: #888;
1303
+ }
1304
+
1305
+ .theme-github-light .highlight .gp {
1306
+ color: #555;
1307
+ }
1308
+
1309
+ .theme-github-light .highlight .gs {
1310
+ font-weight: bold;
1311
+ }
1312
+
1313
+ .theme-github-light .highlight .gu {
1314
+ color: purple;
1315
+ font-weight: bold;
1316
+ }
1317
+
1318
+ .theme-github-light .highlight .gt {
1319
+ color: #a00;
1320
+ }
1321
+
1322
+ .theme-github-light .highlight .kc, .theme-github-light .highlight .kd, .theme-github-light .highlight .kn, .theme-github-light .highlight .kp, .theme-github-light .highlight .kr {
1323
+ font-weight: bold;
1324
+ }
1325
+
1326
+ .theme-github-light .highlight .kt {
1327
+ color: #458;
1328
+ font-weight: bold;
1329
+ }
1330
+
1331
+ .theme-github-light .highlight .m {
1332
+ color: #099;
1333
+ }
1334
+
1335
+ .theme-github-light .highlight .s {
1336
+ color: #d14;
1337
+ }
1338
+
1339
+ .theme-github-light .highlight .\!s {
1340
+ color: #d14 !important;
1341
+ }
1342
+
1343
+ .theme-github-light .highlight .n {
1344
+ color: #333;
1345
+ }
1346
+
1347
+ .theme-github-light .highlight .na {
1348
+ color: teal;
1349
+ }
1350
+
1351
+ .theme-github-light .highlight .nb {
1352
+ color: #0086b3;
1353
+ }
1354
+
1355
+ .theme-github-light .highlight .nc {
1356
+ color: #458;
1357
+ font-weight: bold;
1358
+ }
1359
+
1360
+ .theme-github-light .highlight .no {
1361
+ color: teal;
1362
+ }
1363
+
1364
+ .theme-github-light .highlight .ni {
1365
+ color: purple;
1366
+ }
1367
+
1368
+ .theme-github-light .highlight .ne, .theme-github-light .highlight .nf {
1369
+ color: #900;
1370
+ font-weight: bold;
1371
+ }
1372
+
1373
+ .theme-github-light .highlight .nn {
1374
+ color: #555;
1375
+ }
1376
+
1377
+ .theme-github-light .highlight .nt {
1378
+ color: navy;
1379
+ }
1380
+
1381
+ .theme-github-light .highlight .nv {
1382
+ color: teal;
1383
+ }
1384
+
1385
+ .theme-github-light .highlight .ow {
1386
+ font-weight: bold;
1387
+ }
1388
+
1389
+ .theme-github-light .highlight .w {
1390
+ color: #bbb;
1391
+ }
1392
+
1393
+ .theme-github-light .highlight .mf, .theme-github-light .highlight .mh, .theme-github-light .highlight .mi, .theme-github-light .highlight .mo {
1394
+ color: #099;
1395
+ }
1396
+
1397
+ .theme-github-light .highlight .sb, .theme-github-light .highlight .sc, .theme-github-light .highlight .sd, .theme-github-light .highlight .s2, .theme-github-light .highlight .se, .theme-github-light .highlight .sh, .theme-github-light .highlight .si, .theme-github-light .highlight .sx {
1398
+ color: #d14;
1399
+ }
1400
+
1401
+ .theme-github-light .highlight .sr {
1402
+ color: #009926;
1403
+ }
1404
+
1405
+ .theme-github-light .highlight .s1 {
1406
+ color: #d14;
1407
+ }
1408
+
1409
+ .theme-github-light .highlight .ss {
1410
+ color: #990073;
1411
+ }
1412
+
1413
+ .theme-github-light .highlight .bp {
1414
+ color: #999;
1415
+ }
1416
+
1417
+ .theme-github-light .highlight .vc, .theme-github-light .highlight .vg, .theme-github-light .highlight .vi {
1418
+ color: teal;
1419
+ }
1420
+
1421
+ .theme-github-light .highlight .il {
1422
+ color: #099;
1423
+ }
1424
+
1425
+ .theme-github-light .highlight .gc {
1426
+ color: #999;
1427
+ background-color: #eaf2f5;
1428
+ }
1429
+
1430
+ [data-component="code"] {
1431
+ padding-left: 1rem;
1432
+ padding-right: 1rem;
1433
+ font-size: .875rem;
1434
+ line-height: 1.25rem;
1435
+ overflow-x: hidden;
1436
+ }
1437
+
1438
+ [data-component="code"] .line {
1439
+ min-height: 1.625em;
1440
+ line-height: 1.625;
1441
+ }
1442
+
1443
+ [data-component="code"] .code {
1444
+ padding-top: 1rem;
1445
+ padding-bottom: 1rem;
1446
+ overflow-x: auto;
1447
+ overflow-y: hidden;
1448
+ }
1449
+
1450
+ [data-component="code"].numbered {
1451
+ padding: 0;
1452
+ }
1453
+
1454
+ [data-component="code"].numbered .wrapper {
1455
+ height: 100%;
1456
+ width: 100%;
1457
+ grid-template-columns: min-content 1fr;
1458
+ display: grid;
1459
+ position: relative;
1460
+ }
1461
+
1462
+ [data-component="code"].numbered .line-numbers {
1463
+ width: min-content;
1464
+ z-index: 10;
1465
+ height: 100%;
1466
+ -webkit-user-select: none;
1467
+ user-select: none;
1468
+ border-style: dashed;
1469
+ border-right-width: 1px;
1470
+ border-color: var(--lookbook-divider);
1471
+ --tw-bg-opacity: 1;
1472
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
1473
+ text-align: right;
1474
+ --tw-text-opacity: 1;
1475
+ color: rgb(156 163 175 / var(--tw-text-opacity) );
1476
+ padding: .75rem;
1477
+ }
1478
+
1479
+ [data-component="code"].numbered .line-number {
1480
+ min-width: 1.4em;
1481
+ padding-top: 4px;
1482
+ font-size: .75rem;
1483
+ line-height: 1rem;
1484
+ display: block;
1485
+ }
1486
+
1487
+ [data-component="code"].numbered .code {
1488
+ padding-top: .75rem;
1489
+ padding-bottom: .75rem;
1490
+ }
1491
+
1492
+ [data-component="code"].numbered .code .line {
1493
+ padding-left: .75rem;
1494
+ padding-right: .75rem;
1495
+ }
1496
+
1497
+ [data-component="code"].focussed .line:not(.highlighted) {
1498
+ opacity: .3 !important;
1499
+ }
1500
+
1501
+ [data-component="code"].focussed .code .line.highlighted {
1502
+ --tw-bg-opacity: 1;
1503
+ background-color: rgb(254 252 232 / var(--tw-bg-opacity) );
1504
+ }
1505
+
1506
+ [data-component="icon"] {
1507
+ flex: none;
1508
+ line-height: 1;
1509
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
1510
+ transition-duration: .15s;
1511
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
1512
+ display: block;
1513
+ }
1514
+
1515
+ [data-component="icon"] svg {
1516
+ height: 100%;
1517
+ width: 100%;
1518
+ fill: #0000;
1519
+ stroke: currentColor;
1520
+ stroke-width: 2px;
1521
+ stroke-linecap: round;
1522
+ stroke-linejoin: round;
1523
+ }
1524
+
1525
+ [data-component="prose"] [data-component="code"] {
1526
+ border-width: 1px;
1527
+ border-color: var(--lookbook-divider);
1528
+ border-radius: .375rem;
1529
+ }
1530
+
1531
+ [data-component="prose"] [data-component="embed"], [data-component="prose"] [data-component="code"] {
1532
+ margin-top: 2rem;
1533
+ margin-bottom: 2rem;
1534
+ }
1535
+
1536
+ [data-component="tabs-dropdown-tab"]:not(.hidden) {
1537
+ border-bottom-width: 1px;
1538
+ border-bottom-color: var(--lookbook-divider);
1539
+ }
1540
+
1541
+ [data-component="tabs-dropdown-tab"]:not(.hidden):last-child {
1542
+ border-bottom-width: 0;
1543
+ }
1544
+
1545
+ [data-component="toolbar"] .toolbar-sections > * {
1546
+ height: 2.5rem;
1547
+ white-space: nowrap;
1548
+ border-color: var(--lookbook-toolbar-divider);
1549
+ align-items: center;
1550
+ display: flex;
1551
+ }
1552
+
1553
+ [data-component="toolbar"] [data-component="button-group"] {
1554
+ padding-left: .45rem;
1555
+ padding-right: .45rem;
1556
+ }
1557
+
1558
+ [data-component="toolbar"] [data-component="tabs"] {
1559
+ margin-bottom: -1px;
1560
+ padding-left: 1rem;
1561
+ padding-right: 1rem;
1562
+ position: relative;
1563
+ }
1564
+
1565
+ [data-component="viewport"] {
1566
+ background-color: #fff;
1567
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cg fill='%23f3f3f3' fill-opacity='1'%3E%3Cpath fill-rule='evenodd' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/g%3E%3C/svg%3E");
1568
+ }
1569
+
1570
+ [data-component="viewport"] .resize-handle {
1571
+ height: 100%;
1572
+ width: 100%;
1573
+ border-color: var(--lookbook-divider);
1574
+ background-color: var(--lookbook-viewport-handle);
1575
+ justify-content: center;
1576
+ align-items: center;
1577
+ display: flex;
1578
+ }
1579
+
1580
+ [data-component="viewport"] .resize-handle:hover {
1581
+ background-color: rgb(224 231 255 / var(--tw-bg-opacity) );
1582
+ --tw-bg-opacity: .2;
1583
+ }
1584
+
1585
+ [data-component="viewport"] .resize-handle {
1586
+ touch-action: none;
1587
+ -webkit-user-select: none;
1588
+ user-select: none;
1589
+ color: var(--lookbook-viewport-handle-icon);
1590
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
1591
+ transition-duration: .15s;
1592
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
1593
+ }
1594
+
1595
+ [data-component="viewport"] .resize-handle:hover {
1596
+ color: var(--lookbook-viewport-handle-icon-hover);
1597
+ }
1598
+
1599
+ .form-input {
1600
+ color: var(--lookbook-input-text);
1601
+ }
1602
+
1603
+ .form-input::placeholder {
1604
+ color: var(--lookbook-input-text-placeholder);
1605
+ font-style: italic;
1606
+ }
1607
+
1608
+ .form-input {
1609
+ border-color: var(--lookbook-input-border);
1610
+ }
1611
+
1612
+ .form-input:focus {
1613
+ border-color: var(--lookbook-input-border-focus);
1614
+ --tw-ring-color: var(--lookbook-input-border-focus);
1615
+ }
1616
+
1617
+ .form-input {
1618
+ width: 100%;
1619
+ background-color: var(--lookbook-input);
1620
+ border-radius: .375rem;
1621
+ font-size: .875rem;
1622
+ line-height: 1.25rem;
1623
+ }
1624
+
1625
+ .pointer-events-none {
1626
+ pointer-events: none;
1627
+ }
1628
+
1629
+ .visible {
1630
+ visibility: visible;
1631
+ }
1632
+
1633
+ .invisible {
1634
+ visibility: hidden;
1635
+ }
1636
+
1637
+ .\!absolute {
1638
+ position: absolute !important;
1639
+ }
1640
+
1641
+ .absolute {
1642
+ position: absolute;
1643
+ }
1644
+
1645
+ .relative {
1646
+ position: relative;
1647
+ }
1648
+
1649
+ .sticky {
1650
+ position: sticky;
1651
+ }
1652
+
1653
+ .inset-0 {
1654
+ inset: 0;
1655
+ }
1656
+
1657
+ .-inset-px {
1658
+ inset: -1px;
1659
+ }
1660
+
1661
+ .top-0 {
1662
+ top: 0;
1663
+ }
1664
+
1665
+ .right-0 {
1666
+ right: 0;
1667
+ }
1668
+
1669
+ .bottom-0 {
1670
+ bottom: 0;
1671
+ }
1672
+
1673
+ .top-\[40px\] {
1674
+ top: 40px;
1675
+ }
1676
+
1677
+ .left-0 {
1678
+ left: 0;
1679
+ }
1680
+
1681
+ .top-\[39px\] {
1682
+ top: 39px;
1683
+ }
1684
+
1685
+ .-top-px {
1686
+ top: -1px;
1687
+ }
1688
+
1689
+ .top-1\/2 {
1690
+ top: 50%;
1691
+ }
1692
+
1693
+ .right-3 {
1694
+ right: .75rem;
1695
+ }
1696
+
1697
+ .-left-px {
1698
+ left: -1px;
1699
+ }
1700
+
1701
+ .-left-4 {
1702
+ left: -1rem;
1703
+ }
1704
+
1705
+ .-bottom-px {
1706
+ bottom: -1px;
1707
+ }
1708
+
1709
+ .z-50 {
1710
+ z-index: 50;
1711
+ }
1712
+
1713
+ .z-\[-1\] {
1714
+ z-index: -1;
1715
+ }
1716
+
1717
+ .\!z-40 {
1718
+ z-index: 40 !important;
1719
+ }
1720
+
1721
+ .z-0 {
1722
+ z-index: 0;
1723
+ }
1724
+
1725
+ .z-10 {
1726
+ z-index: 10;
1727
+ }
1728
+
1729
+ .mx-auto {
1730
+ margin-left: auto;
1731
+ margin-right: auto;
1732
+ }
1733
+
1734
+ .mx-8 {
1735
+ margin-left: 2rem;
1736
+ margin-right: 2rem;
1737
+ }
1738
+
1739
+ .mt-3 {
1740
+ margin-top: .75rem;
1741
+ }
1742
+
1743
+ .mt-2 {
1744
+ margin-top: .5rem;
1745
+ }
1746
+
1747
+ .mb-8 {
1748
+ margin-bottom: 2rem;
1749
+ }
1750
+
1751
+ .mb-2 {
1752
+ margin-bottom: .5rem;
1753
+ }
1754
+
1755
+ .mt-8 {
1756
+ margin-top: 2rem;
1757
+ }
1758
+
1759
+ .mt-6 {
1760
+ margin-top: 1.5rem;
1761
+ }
1762
+
1763
+ .ml-2 {
1764
+ margin-left: .5rem;
1765
+ }
1766
+
1767
+ .mr-1 {
1768
+ margin-right: .25rem;
1769
+ }
1770
+
1771
+ .mr-6 {
1772
+ margin-right: 1.5rem;
1773
+ }
1774
+
1775
+ .ml-auto {
1776
+ margin-left: auto;
1777
+ }
1778
+
1779
+ .mt-12 {
1780
+ margin-top: 3rem;
1781
+ }
1782
+
1783
+ .mr-2 {
1784
+ margin-right: .5rem;
1785
+ }
1786
+
1787
+ .mb-4 {
1788
+ margin-bottom: 1rem;
1789
+ }
1790
+
1791
+ .mb-\[-2px\] {
1792
+ margin-bottom: -2px;
1793
+ }
1794
+
1795
+ .mt-1 {
1796
+ margin-top: .25rem;
1797
+ }
1798
+
1799
+ .mb-6 {
1800
+ margin-bottom: 1.5rem;
1801
+ }
1802
+
1803
+ .-ml-3 {
1804
+ margin-left: -.75rem;
1805
+ }
1806
+
1807
+ .-mb-px {
1808
+ margin-bottom: -1px;
1809
+ }
1810
+
1811
+ .mr-auto {
1812
+ margin-right: auto;
1813
+ }
1814
+
1815
+ .mr-1\.5 {
1816
+ margin-right: .375rem;
1817
+ }
1818
+
1819
+ .\!block {
1820
+ display: block !important;
1821
+ }
1822
+
1823
+ .block {
1824
+ display: block;
1825
+ }
1826
+
1827
+ .inline-block {
1828
+ display: inline-block;
1829
+ }
1830
+
1831
+ .inline {
1832
+ display: inline;
1833
+ }
1834
+
1835
+ .flex {
1836
+ display: flex;
1837
+ }
1838
+
1839
+ .inline-flex {
1840
+ display: inline-flex;
1841
+ }
1842
+
1843
+ .grid {
1844
+ display: grid;
1845
+ }
1846
+
1847
+ .contents {
1848
+ display: contents;
1849
+ }
1850
+
1851
+ .\!hidden {
1852
+ display: none !important;
1853
+ }
1854
+
1855
+ .hidden {
1856
+ display: none;
1857
+ }
1858
+
1859
+ .h-screen {
1860
+ height: 100vh;
1861
+ }
1862
+
1863
+ .h-full {
1864
+ height: 100%;
1865
+ }
1866
+
1867
+ .h-\[calc\(100\%_-_40px\)\] {
1868
+ height: calc(100% - 40px);
1869
+ }
1870
+
1871
+ .h-\[calc\(100vh_-_2\.5rem\)\] {
1872
+ height: calc(100vh - 2.5rem);
1873
+ }
1874
+
1875
+ .h-\[calc\(100vh_-_40px\)\] {
1876
+ height: calc(100vh - 40px);
1877
+ }
1878
+
1879
+ .h-\[9px\] {
1880
+ height: 9px;
1881
+ }
1882
+
1883
+ .h-10 {
1884
+ height: 2.5rem;
1885
+ }
1886
+
1887
+ .h-4 {
1888
+ height: 1rem;
1889
+ }
1890
+
1891
+ .h-3\.5 {
1892
+ height: .875rem;
1893
+ }
1894
+
1895
+ .h-3 {
1896
+ height: .75rem;
1897
+ }
1898
+
1899
+ .h-6 {
1900
+ height: 1.5rem;
1901
+ }
1902
+
1903
+ .h-5 {
1904
+ height: 1.25rem;
1905
+ }
1906
+
1907
+ .\!h-auto {
1908
+ height: auto !important;
1909
+ }
1910
+
1911
+ .max-h-\[300px\] {
1912
+ max-height: 300px;
1913
+ }
1914
+
1915
+ .max-h-full {
1916
+ max-height: 100%;
1917
+ }
1918
+
1919
+ .min-h-0 {
1920
+ min-height: 0;
1921
+ }
1922
+
1923
+ .w-full {
1924
+ width: 100%;
1925
+ }
1926
+
1927
+ .w-screen {
1928
+ width: 100vw;
1929
+ }
1930
+
1931
+ .w-\[9px\] {
1932
+ width: 9px;
1933
+ }
1934
+
1935
+ .w-4 {
1936
+ width: 1rem;
1937
+ }
1938
+
1939
+ .w-3\.5 {
1940
+ width: .875rem;
1941
+ }
1942
+
1943
+ .w-3 {
1944
+ width: .75rem;
1945
+ }
1946
+
1947
+ .w-\[140px\] {
1948
+ width: 140px;
1949
+ }
1950
+
1951
+ .w-11 {
1952
+ width: 2.75rem;
1953
+ }
1954
+
1955
+ .w-5 {
1956
+ width: 1.25rem;
1957
+ }
1958
+
1959
+ .min-w-\[140px\] {
1960
+ min-width: 140px;
1961
+ }
1962
+
1963
+ .min-w-\[180px\] {
1964
+ min-width: 180px;
1965
+ }
1966
+
1967
+ .min-w-0 {
1968
+ min-width: 0;
1969
+ }
1970
+
1971
+ .max-w-sm {
1972
+ max-width: 24rem;
1973
+ }
1974
+
1975
+ .max-w-screen-lg {
1976
+ max-width: 1024px;
1977
+ }
1978
+
1979
+ .max-w-\[420px\] {
1980
+ max-width: 420px;
1981
+ }
1982
+
1983
+ .max-w-3xl {
1984
+ max-width: 48rem;
1985
+ }
1986
+
1987
+ .max-w-none {
1988
+ max-width: none;
1989
+ }
1990
+
1991
+ .max-w-xs {
1992
+ max-width: 20rem;
1993
+ }
1994
+
1995
+ .max-w-\[800px\] {
1996
+ max-width: 800px;
1997
+ }
1998
+
1999
+ .flex-none {
2000
+ flex: none;
2001
+ }
2002
+
2003
+ .flex-shrink-0 {
2004
+ flex-shrink: 0;
2005
+ }
2006
+
2007
+ .flex-grow {
2008
+ flex-grow: 1;
2009
+ }
2010
+
2011
+ .translate-x-0 {
2012
+ --tw-translate-x: 0px;
2013
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2014
+ }
2015
+
2016
+ .translate-x-full {
2017
+ --tw-translate-x: 100%;
2018
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2019
+ }
2020
+
2021
+ .-translate-y-1\/2 {
2022
+ --tw-translate-y: -50%;
2023
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2024
+ }
2025
+
2026
+ .-translate-x-1\/2 {
2027
+ --tw-translate-x: -50%;
2028
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2029
+ }
2030
+
2031
+ .translate-x-5 {
2032
+ --tw-translate-x: 1.25rem;
2033
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2034
+ }
2035
+
2036
+ .rotate-180 {
2037
+ --tw-rotate: 180deg;
2038
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2039
+ }
2040
+
2041
+ .rotate-90 {
2042
+ --tw-rotate: 90deg;
2043
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2044
+ }
2045
+
2046
+ .rotate-45 {
2047
+ --tw-rotate: 45deg;
2048
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y) ) rotate(var(--tw-rotate) ) skewX(var(--tw-skew-x) ) skewY(var(--tw-skew-y) ) scaleX(var(--tw-scale-x) ) scaleY(var(--tw-scale-y) );
2049
+ }
2050
+
2051
+ @keyframes spin {
2052
+ to {
2053
+ transform: rotate(360deg);
2054
+ }
2055
+ }
2056
+
2057
+ .animate-spin {
2058
+ animation: spin 1s linear infinite;
2059
+ }
2060
+
2061
+ .\!cursor-default {
2062
+ cursor: default !important;
2063
+ }
2064
+
2065
+ .cursor-\[not-allowed\] {
2066
+ cursor: not-allowed;
2067
+ }
2068
+
2069
+ .cursor-\[col-resize\] {
2070
+ cursor: col-resize;
2071
+ }
2072
+
2073
+ .cursor-\[row-resize\] {
2074
+ cursor: row-resize;
2075
+ }
2076
+
2077
+ .cursor-\[nwse-resize\] {
2078
+ cursor: nwse-resize;
2079
+ }
2080
+
2081
+ .cursor-pointer {
2082
+ cursor: pointer;
2083
+ }
2084
+
2085
+ .select-none {
2086
+ -webkit-user-select: none;
2087
+ user-select: none;
2088
+ }
2089
+
2090
+ .resize {
2091
+ resize: both;
2092
+ }
2093
+
2094
+ .list-none {
2095
+ list-style-type: none;
2096
+ }
2097
+
2098
+ .\!grid-cols-\[1fr\] {
2099
+ grid-template-columns: 1fr !important;
2100
+ }
2101
+
2102
+ .grid-cols-\[1fr_17px\] {
2103
+ grid-template-columns: 1fr 17px;
2104
+ }
2105
+
2106
+ .grid-rows-\[40px_1fr\] {
2107
+ grid-template-rows: 40px 1fr;
2108
+ }
2109
+
2110
+ .\!grid-rows-\[1fr\] {
2111
+ grid-template-rows: 1fr !important;
2112
+ }
2113
+
2114
+ .grid-rows-\[1fr_17px\] {
2115
+ grid-template-rows: 1fr 17px;
2116
+ }
2117
+
2118
+ .flex-col {
2119
+ flex-direction: column;
2120
+ }
2121
+
2122
+ .items-start {
2123
+ align-items: flex-start;
2124
+ }
2125
+
2126
+ .items-center {
2127
+ align-items: center;
2128
+ }
2129
+
2130
+ .items-stretch {
2131
+ align-items: stretch;
2132
+ }
2133
+
2134
+ .justify-center {
2135
+ justify-content: center;
2136
+ }
2137
+
2138
+ .justify-between {
2139
+ justify-content: space-between;
2140
+ }
2141
+
2142
+ .space-x-1 > :not([hidden]) ~ :not([hidden]) {
2143
+ --tw-space-x-reverse: 0;
2144
+ margin-right: calc(.25rem * var(--tw-space-x-reverse) );
2145
+ margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse) ) );
2146
+ }
2147
+
2148
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
2149
+ --tw-space-y-reverse: 0;
2150
+ margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse) ) );
2151
+ margin-bottom: calc(.5rem * var(--tw-space-y-reverse) );
2152
+ }
2153
+
2154
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
2155
+ --tw-space-x-reverse: 0;
2156
+ margin-right: calc(.5rem * var(--tw-space-x-reverse) );
2157
+ margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse) ) );
2158
+ }
2159
+
2160
+ .space-x-6 > :not([hidden]) ~ :not([hidden]) {
2161
+ --tw-space-x-reverse: 0;
2162
+ margin-right: calc(1.5rem * var(--tw-space-x-reverse) );
2163
+ margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse) ) );
2164
+ }
2165
+
2166
+ .space-x-3 > :not([hidden]) ~ :not([hidden]) {
2167
+ --tw-space-x-reverse: 0;
2168
+ margin-right: calc(.75rem * var(--tw-space-x-reverse) );
2169
+ margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse) ) );
2170
+ }
2171
+
2172
+ .divide-y > :not([hidden]) ~ :not([hidden]) {
2173
+ --tw-divide-y-reverse: 0;
2174
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse) ) );
2175
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse) );
2176
+ }
2177
+
2178
+ .divide-dashed > :not([hidden]) ~ :not([hidden]) {
2179
+ border-style: dashed;
2180
+ }
2181
+
2182
+ .divide-red-200 > :not([hidden]) ~ :not([hidden]) {
2183
+ --tw-divide-opacity: 1;
2184
+ border-color: rgb(254 202 202 / var(--tw-divide-opacity) );
2185
+ }
2186
+
2187
+ .divide-lookbook-divider > :not([hidden]) ~ :not([hidden]) {
2188
+ border-color: var(--lookbook-divider);
2189
+ }
2190
+
2191
+ .overflow-auto {
2192
+ overflow: auto;
2193
+ }
2194
+
2195
+ .overflow-hidden {
2196
+ overflow: hidden;
2197
+ }
2198
+
2199
+ .overflow-x-auto {
2200
+ overflow-x: auto;
2201
+ }
2202
+
2203
+ .overflow-y-auto {
2204
+ overflow-y: auto;
2205
+ }
2206
+
2207
+ .overflow-y-hidden {
2208
+ overflow-y: hidden;
2209
+ }
2210
+
2211
+ .scroll-smooth {
2212
+ scroll-behavior: smooth;
2213
+ }
2214
+
2215
+ .truncate {
2216
+ text-overflow: ellipsis;
2217
+ white-space: nowrap;
2218
+ overflow: hidden;
2219
+ }
2220
+
2221
+ .whitespace-nowrap {
2222
+ white-space: nowrap;
2223
+ }
2224
+
2225
+ .whitespace-pre-wrap {
2226
+ white-space: pre-wrap;
2227
+ }
2228
+
2229
+ .break-all {
2230
+ word-break: break-all;
2231
+ }
2232
+
2233
+ .rounded-sm {
2234
+ border-radius: .125rem;
2235
+ }
2236
+
2237
+ .rounded-md {
2238
+ border-radius: .375rem;
2239
+ }
2240
+
2241
+ .rounded-full {
2242
+ border-radius: 9999px;
2243
+ }
2244
+
2245
+ .rounded-bl-md {
2246
+ border-bottom-left-radius: .375rem;
2247
+ }
2248
+
2249
+ .border {
2250
+ border-width: 1px;
2251
+ }
2252
+
2253
+ .border-2 {
2254
+ border-width: 2px;
2255
+ }
2256
+
2257
+ .border-t {
2258
+ border-top-width: 1px;
2259
+ }
2260
+
2261
+ .border-b {
2262
+ border-bottom-width: 1px;
2263
+ }
2264
+
2265
+ .border-l {
2266
+ border-left-width: 1px;
2267
+ }
2268
+
2269
+ .border-r {
2270
+ border-right-width: 1px;
2271
+ }
2272
+
2273
+ .border-b-0 {
2274
+ border-bottom-width: 0;
2275
+ }
2276
+
2277
+ .border-l-2 {
2278
+ border-left-width: 2px;
2279
+ }
2280
+
2281
+ .border-b-2 {
2282
+ border-bottom-width: 2px;
2283
+ }
2284
+
2285
+ .border-t-0 {
2286
+ border-top-width: 0;
2287
+ }
2288
+
2289
+ .border-dashed {
2290
+ border-style: dashed;
2291
+ }
2292
+
2293
+ .border-red-200 {
2294
+ --tw-border-opacity: 1;
2295
+ border-color: rgb(254 202 202 / var(--tw-border-opacity) );
2296
+ }
2297
+
2298
+ .border-lookbook-divider {
2299
+ border-color: var(--lookbook-divider);
2300
+ }
2301
+
2302
+ .border-gray-300 {
2303
+ --tw-border-opacity: 1;
2304
+ border-color: rgb(209 213 219 / var(--tw-border-opacity) );
2305
+ }
2306
+
2307
+ .border-gray-200 {
2308
+ --tw-border-opacity: 1;
2309
+ border-color: rgb(229 231 235 / var(--tw-border-opacity) );
2310
+ }
2311
+
2312
+ .\!border-lookbook-header-border {
2313
+ border-color: var(--lookbook-header-border) !important;
2314
+ }
2315
+
2316
+ .border-transparent {
2317
+ border-color: #0000;
2318
+ }
2319
+
2320
+ .border-lookbook-tabs-highlight {
2321
+ border-color: var(--lookbook-tabs-highlight);
2322
+ }
2323
+
2324
+ .bg-white {
2325
+ --tw-bg-opacity: 1;
2326
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
2327
+ }
2328
+
2329
+ .bg-red-50 {
2330
+ --tw-bg-opacity: 1;
2331
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity) );
2332
+ }
2333
+
2334
+ .bg-red-100 {
2335
+ --tw-bg-opacity: 1;
2336
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity) );
2337
+ }
2338
+
2339
+ .bg-lookbook-sidebar {
2340
+ background-color: var(--lookbook-sidebar);
2341
+ }
2342
+
2343
+ .bg-black {
2344
+ --tw-bg-opacity: 1;
2345
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity) );
2346
+ }
2347
+
2348
+ .bg-lookbook-page {
2349
+ background-color: var(--lookbook-page);
2350
+ }
2351
+
2352
+ .bg-transparent {
2353
+ background-color: #0000;
2354
+ }
2355
+
2356
+ .\!bg-lookbook-header {
2357
+ background-color: var(--lookbook-header) !important;
2358
+ }
2359
+
2360
+ .bg-lookbook-drawer {
2361
+ background-color: var(--lookbook-drawer);
2362
+ }
2363
+
2364
+ .bg-lookbook-prose {
2365
+ background-color: var(--lookbook-prose);
2366
+ }
2367
+
2368
+ .bg-zinc-50 {
2369
+ --tw-bg-opacity: 1;
2370
+ background-color: rgb(250 250 250 / var(--tw-bg-opacity) );
2371
+ }
2372
+
2373
+ .bg-lookbook-divider {
2374
+ background-color: var(--lookbook-divider);
2375
+ }
2376
+
2377
+ .bg-lookbook-toolbar {
2378
+ background-color: var(--lookbook-toolbar);
2379
+ }
2380
+
2381
+ .bg-lookbook-viewport-handle {
2382
+ background-color: var(--lookbook-viewport-handle);
2383
+ }
2384
+
2385
+ .\!bg-lookbook-nav-item-active {
2386
+ background-color: var(--lookbook-nav-item-active) !important;
2387
+ }
2388
+
2389
+ .bg-lookbook-input-toggle-active {
2390
+ background-color: var(--lookbook-input-toggle-active);
2391
+ }
2392
+
2393
+ .bg-lookbook-input-toggle {
2394
+ background-color: var(--lookbook-input-toggle);
2395
+ }
2396
+
2397
+ .stroke-current {
2398
+ stroke: currentColor;
2399
+ }
2400
+
2401
+ .stroke-2 {
2402
+ stroke-width: 2px;
2403
+ }
2404
+
2405
+ .p-4 {
2406
+ padding: 1rem;
2407
+ }
2408
+
2409
+ .p-1 {
2410
+ padding: .25rem;
2411
+ }
2412
+
2413
+ .p-2 {
2414
+ padding: .5rem;
2415
+ }
2416
+
2417
+ .p-3 {
2418
+ padding: .75rem;
2419
+ }
2420
+
2421
+ .p-6 {
2422
+ padding: 1.5rem;
2423
+ }
2424
+
2425
+ .p-8 {
2426
+ padding: 2rem;
2427
+ }
2428
+
2429
+ .px-4 {
2430
+ padding-left: 1rem;
2431
+ padding-right: 1rem;
2432
+ }
2433
+
2434
+ .py-6 {
2435
+ padding-top: 1.5rem;
2436
+ padding-bottom: 1.5rem;
2437
+ }
2438
+
2439
+ .px-8 {
2440
+ padding-left: 2rem;
2441
+ padding-right: 2rem;
2442
+ }
2443
+
2444
+ .py-2 {
2445
+ padding-top: .5rem;
2446
+ padding-bottom: .5rem;
2447
+ }
2448
+
2449
+ .py-3 {
2450
+ padding-top: .75rem;
2451
+ padding-bottom: .75rem;
2452
+ }
2453
+
2454
+ .px-3 {
2455
+ padding-left: .75rem;
2456
+ padding-right: .75rem;
2457
+ }
2458
+
2459
+ .py-1 {
2460
+ padding-top: .25rem;
2461
+ padding-bottom: .25rem;
2462
+ }
2463
+
2464
+ .px-1 {
2465
+ padding-left: .25rem;
2466
+ padding-right: .25rem;
2467
+ }
2468
+
2469
+ .px-2 {
2470
+ padding-left: .5rem;
2471
+ padding-right: .5rem;
2472
+ }
2473
+
2474
+ .pb-10 {
2475
+ padding-bottom: 2.5rem;
2476
+ }
2477
+
2478
+ .pt-1 {
2479
+ padding-top: .25rem;
2480
+ }
2481
+
2482
+ .pr-0 {
2483
+ padding-right: 0;
2484
+ }
2485
+
2486
+ .pl-1 {
2487
+ padding-left: .25rem;
2488
+ }
2489
+
2490
+ .pb-1 {
2491
+ padding-bottom: .25rem;
2492
+ }
2493
+
2494
+ .pr-0\.5 {
2495
+ padding-right: .125rem;
2496
+ }
2497
+
2498
+ .pl-0\.5 {
2499
+ padding-left: .125rem;
2500
+ }
2501
+
2502
+ .pl-0 {
2503
+ padding-left: 0;
2504
+ }
2505
+
2506
+ .pt-8 {
2507
+ padding-top: 2rem;
2508
+ }
2509
+
2510
+ .pb-12 {
2511
+ padding-bottom: 3rem;
2512
+ }
2513
+
2514
+ .pb-0 {
2515
+ padding-bottom: 0;
2516
+ }
2517
+
2518
+ .pr-2 {
2519
+ padding-right: .5rem;
2520
+ }
2521
+
2522
+ .pt-2\.5 {
2523
+ padding-top: .625rem;
2524
+ }
2525
+
2526
+ .pb-1\.5 {
2527
+ padding-bottom: .375rem;
2528
+ }
2529
+
2530
+ .pt-2 {
2531
+ padding-top: .5rem;
2532
+ }
2533
+
2534
+ .text-left {
2535
+ text-align: left;
2536
+ }
2537
+
2538
+ .text-center {
2539
+ text-align: center;
2540
+ }
2541
+
2542
+ .font-mono {
2543
+ font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
2544
+ }
2545
+
2546
+ .font-sans {
2547
+ font-family: Nunito Sans, -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
2548
+ }
2549
+
2550
+ .text-base {
2551
+ font-size: 1rem;
2552
+ line-height: 1.5rem;
2553
+ }
2554
+
2555
+ .text-sm {
2556
+ font-size: .875rem;
2557
+ line-height: 1.25rem;
2558
+ }
2559
+
2560
+ .text-xl {
2561
+ font-size: 1.25rem;
2562
+ line-height: 1.75rem;
2563
+ }
2564
+
2565
+ .text-xs {
2566
+ font-size: .75rem;
2567
+ line-height: 1rem;
2568
+ }
2569
+
2570
+ .text-lg {
2571
+ font-size: 1.125rem;
2572
+ line-height: 1.75rem;
2573
+ }
2574
+
2575
+ .font-bold {
2576
+ font-weight: 700;
2577
+ }
2578
+
2579
+ .font-black {
2580
+ font-weight: 900;
2581
+ }
2582
+
2583
+ .uppercase {
2584
+ text-transform: uppercase;
2585
+ }
2586
+
2587
+ .italic {
2588
+ font-style: italic;
2589
+ }
2590
+
2591
+ .leading-relaxed {
2592
+ line-height: 1.625;
2593
+ }
2594
+
2595
+ .leading-tight {
2596
+ line-height: 1.25;
2597
+ }
2598
+
2599
+ .tracking-wider {
2600
+ letter-spacing: .05em;
2601
+ }
2602
+
2603
+ .text-red-300 {
2604
+ --tw-text-opacity: 1;
2605
+ color: rgb(252 165 165 / var(--tw-text-opacity) );
2606
+ }
2607
+
2608
+ .text-red-700 {
2609
+ --tw-text-opacity: 1;
2610
+ color: rgb(185 28 28 / var(--tw-text-opacity) );
2611
+ }
2612
+
2613
+ .text-red-900 {
2614
+ --tw-text-opacity: 1;
2615
+ color: rgb(127 29 29 / var(--tw-text-opacity) );
2616
+ }
2617
+
2618
+ .text-gray-400 {
2619
+ --tw-text-opacity: 1;
2620
+ color: rgb(156 163 175 / var(--tw-text-opacity) );
2621
+ }
2622
+
2623
+ .text-red-800 {
2624
+ --tw-text-opacity: 1;
2625
+ color: rgb(153 27 27 / var(--tw-text-opacity) );
2626
+ }
2627
+
2628
+ .\!text-lookbook-header-text {
2629
+ color: var(--lookbook-header-text) !important;
2630
+ }
2631
+
2632
+ .text-lookbook-button-text {
2633
+ color: var(--lookbook-button-text);
2634
+ }
2635
+
2636
+ .text-green-500 {
2637
+ --tw-text-opacity: 1;
2638
+ color: rgb(34 197 94 / var(--tw-text-opacity) );
2639
+ }
2640
+
2641
+ .text-lookbook-branding-text {
2642
+ color: var(--lookbook-branding-text);
2643
+ }
2644
+
2645
+ .text-green-600 {
2646
+ --tw-text-opacity: 1;
2647
+ color: rgb(22 163 74 / var(--tw-text-opacity) );
2648
+ }
2649
+
2650
+ .text-lookbook-prose-text {
2651
+ color: var(--lookbook-prose-text);
2652
+ }
2653
+
2654
+ .text-lookbook-viewport-handle-icon {
2655
+ color: var(--lookbook-viewport-handle-icon);
2656
+ }
2657
+
2658
+ .text-lookbook-nav-text {
2659
+ color: var(--lookbook-nav-text);
2660
+ }
2661
+
2662
+ .text-lookbook-nav-toggle {
2663
+ color: var(--lookbook-nav-toggle);
2664
+ }
2665
+
2666
+ .text-lookbook-nav-icon {
2667
+ color: var(--lookbook-nav-icon);
2668
+ }
2669
+
2670
+ .text-lookbook-tabs-text {
2671
+ color: var(--lookbook-tabs-text);
2672
+ }
2673
+
2674
+ .\!text-lookbook-tabs-text-disabled {
2675
+ color: var(--lookbook-tabs-text-disabled) !important;
2676
+ }
2677
+
2678
+ .underline {
2679
+ text-decoration-line: underline;
2680
+ }
2681
+
2682
+ .opacity-50 {
2683
+ opacity: .5;
2684
+ }
2685
+
2686
+ .opacity-30 {
2687
+ opacity: .3;
2688
+ }
2689
+
2690
+ .opacity-40 {
2691
+ opacity: .4;
2692
+ }
2693
+
2694
+ .opacity-80 {
2695
+ opacity: .8;
2696
+ }
2697
+
2698
+ .opacity-0 {
2699
+ opacity: 0;
2700
+ }
2701
+
2702
+ .\!opacity-30 {
2703
+ opacity: .3 !important;
2704
+ }
2705
+
2706
+ .opacity-90 {
2707
+ opacity: .9;
2708
+ }
2709
+
2710
+ .opacity-60 {
2711
+ opacity: .6;
2712
+ }
2713
+
2714
+ .opacity-70 {
2715
+ opacity: .7;
2716
+ }
2717
+
2718
+ .\!opacity-100 {
2719
+ opacity: 1 !important;
2720
+ }
2721
+
2722
+ .shadow {
2723
+ --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
2724
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2725
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2726
+ }
2727
+
2728
+ .ring-0 {
2729
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2730
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
2731
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2732
+ }
2733
+
2734
+ .blur {
2735
+ --tw-blur: blur(8px);
2736
+ 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);
2737
+ }
2738
+
2739
+ .filter {
2740
+ 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);
2741
+ }
2742
+
2743
+ .transition-colors {
2744
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
2745
+ transition-duration: .15s;
2746
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2747
+ }
2748
+
2749
+ .transition {
2750
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
2751
+ transition-duration: .15s;
2752
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2753
+ }
2754
+
2755
+ .transition-opacity {
2756
+ transition-property: opacity;
2757
+ transition-duration: .15s;
2758
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2759
+ }
2760
+
2761
+ .transition-all {
2762
+ transition-property: all;
2763
+ transition-duration: .15s;
2764
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2765
+ }
2766
+
2767
+ .duration-100 {
2768
+ transition-duration: .1s;
2769
+ }
2770
+
2771
+ .duration-200 {
2772
+ transition-duration: .2s;
2773
+ }
2774
+
2775
+ .ease-in-out {
2776
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2777
+ }
2778
+
2779
+ .tippy-box[data-animation="fade"][data-state="hidden"] {
2780
+ opacity: 0;
2781
+ }
2782
+
2783
+ [data-tippy-root] {
2784
+ max-width: calc(100vw - 10px);
2785
+ }
2786
+
2787
+ .tippy-box {
2788
+ color: #fff;
2789
+ white-space: normal;
2790
+ background-color: #333;
2791
+ border-radius: 4px;
2792
+ outline: none;
2793
+ font-size: 14px;
2794
+ line-height: 1.4;
2795
+ transition-property: transform, visibility, opacity;
2796
+ position: relative;
2797
+ }
2798
+
2799
+ .tippy-box[data-placement^="top"] > .tippy-arrow {
2800
+ bottom: 0;
2801
+ }
2802
+
2803
+ .tippy-box[data-placement^="top"] > .tippy-arrow:before {
2804
+ border-width: 8px 8px 0;
2805
+ border-top-color: initial;
2806
+ transform-origin: top;
2807
+ bottom: -7px;
2808
+ left: 0;
2809
+ }
2810
+
2811
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow {
2812
+ top: 0;
2813
+ }
2814
+
2815
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
2816
+ border-width: 0 8px 8px;
2817
+ border-bottom-color: initial;
2818
+ transform-origin: bottom;
2819
+ top: -7px;
2820
+ left: 0;
2821
+ }
2822
+
2823
+ .tippy-box[data-placement^="left"] > .tippy-arrow {
2824
+ right: 0;
2825
+ }
2826
+
2827
+ .tippy-box[data-placement^="left"] > .tippy-arrow:before {
2828
+ border-width: 8px 0 8px 8px;
2829
+ border-left-color: initial;
2830
+ transform-origin: 0;
2831
+ right: -7px;
2832
+ }
2833
+
2834
+ .tippy-box[data-placement^="right"] > .tippy-arrow {
2835
+ left: 0;
2836
+ }
2837
+
2838
+ .tippy-box[data-placement^="right"] > .tippy-arrow:before {
2839
+ border-width: 8px 8px 8px 0;
2840
+ border-right-color: initial;
2841
+ transform-origin: 100%;
2842
+ left: -7px;
2843
+ }
2844
+
2845
+ .tippy-box[data-inertia][data-state="visible"] {
2846
+ transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
2847
+ }
2848
+
2849
+ .tippy-arrow {
2850
+ width: 16px;
2851
+ height: 16px;
2852
+ color: #333;
2853
+ }
2854
+
2855
+ .tippy-arrow:before {
2856
+ content: "";
2857
+ border-style: solid;
2858
+ border-color: #0000;
2859
+ position: absolute;
2860
+ }
2861
+
2862
+ .tippy-content {
2863
+ z-index: 1;
2864
+ padding: 5px 9px;
2865
+ position: relative;
2866
+ }
2867
+
2868
+ .tippy-box {
2869
+ border: none;
2870
+ }
2871
+
2872
+ .tippy-box[data-placement^="top"] > .tippy-arrow:after {
2873
+ border-top-color: inherit;
2874
+ border-width: 8px 8px 0;
2875
+ bottom: -8px;
2876
+ left: 0;
2877
+ }
2878
+
2879
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow:after {
2880
+ border-bottom-color: inherit;
2881
+ border-width: 0 8px 8px;
2882
+ top: -8px;
2883
+ left: 0;
2884
+ }
2885
+
2886
+ .tippy-box[data-placement^="left"] > .tippy-arrow:after {
2887
+ border-left-color: inherit;
2888
+ border-width: 8px 0 8px 8px;
2889
+ top: 0;
2890
+ right: -8px;
2891
+ }
2892
+
2893
+ .tippy-box[data-placement^="right"] > .tippy-arrow:after {
2894
+ border-width: 8px 8px 8px 0;
2895
+ border-right-color: inherit;
2896
+ top: 0;
2897
+ left: -8px;
2898
+ }
2899
+
2900
+ .tippy-box[data-placement^="top"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2901
+ top: 17px;
2902
+ }
2903
+
2904
+ .tippy-box[data-placement^="bottom"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2905
+ bottom: 17px;
2906
+ }
2907
+
2908
+ .tippy-box[data-placement^="left"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2909
+ left: 12px;
2910
+ }
2911
+
2912
+ .tippy-box[data-placement^="right"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2913
+ right: 12px;
2914
+ }
2915
+
2916
+ .tippy-arrow {
2917
+ border-color: inherit;
2918
+ }
2919
+
2920
+ .tippy-arrow:after {
2921
+ content: "";
2922
+ z-index: -1;
2923
+ border-style: solid;
2924
+ border-color: #0000;
2925
+ position: absolute;
2926
+ }
2927
+
2928
+ .tippy-box[data-theme~="tooltip"] {
2929
+ opacity: .9;
2930
+ background-color: var(--lookbook-tooltip);
2931
+ color: var(--lookbook-tooltip-text);
2932
+ font-size: .75rem;
2933
+ line-height: 1rem;
2934
+ }
2935
+
2936
+ .tippy-box[data-theme~="tooltip"][data-placement^="top"] > .tippy-arrow:before {
2937
+ border-top-color: var(--lookbook-tooltip);
2938
+ }
2939
+
2940
+ .tippy-box[data-theme~="tooltip"][data-placement^="bottom"] > .tippy-arrow:before {
2941
+ border-bottom-color: var(--lookbook-tooltip);
2942
+ }
2943
+
2944
+ .tippy-box[data-theme~="tooltip"][data-placement^="left"] > .tippy-arrow:before {
2945
+ border-left-color: var(--lookbook-tooltip);
2946
+ }
2947
+
2948
+ .tippy-box[data-theme~="tooltip"][data-placement^="right"] > .tippy-arrow:before {
2949
+ border-right-color: var(--lookbook-tooltip);
2950
+ }
2951
+
2952
+ .tippy-box[data-theme~="menu"] {
2953
+ --tw-bg-opacity: 1;
2954
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
2955
+ --tw-text-opacity: 1;
2956
+ color: rgb(75 85 99 / var(--tw-text-opacity) );
2957
+ --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
2958
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
2959
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2960
+ border: 1px solid #d1d5db;
2961
+ }
2962
+
2963
+ .tippy-box[data-theme~="menu"] > .tippy-content {
2964
+ border-radius: .25rem;
2965
+ padding: 0;
2966
+ overflow: hidden;
2967
+ }
2968
+
2969
+ .tippy-box[data-theme~="menu"][data-placement^="top"] > .tippy-arrow:before {
2970
+ border-top-color: #fff;
2971
+ }
2972
+
2973
+ .tippy-box[data-theme~="menu"][data-placement^="bottom"] > .tippy-arrow:before {
2974
+ border-bottom-color: #fff;
2975
+ }
2976
+
2977
+ .tippy-box[data-theme~="menu"][data-placement^="left"] > .tippy-arrow:before {
2978
+ border-left-color: #fff;
2979
+ }
2980
+
2981
+ .tippy-box[data-theme~="menu"][data-placement^="right"] > .tippy-arrow:before {
2982
+ border-right-color: #fff;
2983
+ }
2984
+
2985
+ .hover\:bg-lookbook-draggable-hint:hover {
2986
+ background-color: var(--lookbook-draggable-hint);
2987
+ }
2988
+
2989
+ .hover\:bg-indigo-100:hover {
2990
+ --tw-bg-opacity: 1;
2991
+ background-color: rgb(224 231 255 / var(--tw-bg-opacity) );
2992
+ }
2993
+
2994
+ .hover\:bg-lookbook-nav-item-hover:hover {
2995
+ background-color: var(--lookbook-nav-item-hover);
2996
+ }
2997
+
2998
+ .hover\:text-gray-900:hover {
2999
+ --tw-text-opacity: 1;
3000
+ color: rgb(17 24 39 / var(--tw-text-opacity) );
3001
+ }
3002
+
3003
+ .hover\:text-indigo-800:hover {
3004
+ --tw-text-opacity: 1;
3005
+ color: rgb(55 48 163 / var(--tw-text-opacity) );
3006
+ }
3007
+
3008
+ .hover\:text-lookbook-button-text-hover:hover {
3009
+ color: var(--lookbook-button-text-hover);
3010
+ }
3011
+
3012
+ .hover\:text-lookbook-viewport-handle-icon-hover:hover {
3013
+ color: var(--lookbook-viewport-handle-icon-hover);
3014
+ }
3015
+
3016
+ .hover\:text-lookbook-tabs-text-hover:hover {
3017
+ color: var(--lookbook-tabs-text-hover);
3018
+ }
3019
+
3020
+ .hover\:underline:hover {
3021
+ text-decoration-line: underline;
3022
+ }
3023
+
3024
+ .hover\:opacity-100:hover {
3025
+ opacity: 1;
3026
+ }
3027
+
3028
+ .focus\:outline-none:focus {
3029
+ outline-offset: 2px;
3030
+ outline: 2px solid #0000;
3031
+ }
3032
+
3033
+ .focus\:ring-0:focus {
3034
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3035
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
3036
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3037
+ }
3038
+
3039
+ .focus\:ring-2:focus {
3040
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3041
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
3042
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3043
+ }
3044
+
3045
+ .focus\:ring-offset-2:focus {
3046
+ --tw-ring-offset-width: 2px;
3047
+ }
3048
+
3049
+ .focus-visible\:outline-none:focus-visible {
3050
+ outline-offset: 2px;
3051
+ outline: 2px solid #0000;
3052
+ }
3053
+
3054
+ .prose-a\:text-lookbook-prose-link :is(:where(a):not(:where([class~="not-prose"] *))) {
3055
+ color: var(--lookbook-prose-link);
3056
+ }
3057
+
3058
+ @media (min-width: 768px) {
3059
+ .md\:px-10 {
3060
+ padding-left: 2.5rem;
3061
+ padding-right: 2.5rem;
3062
+ }
3063
+
3064
+ .md\:pt-10 {
3065
+ padding-top: 2.5rem;
3066
+ }
3067
+ }
3068
+
3069
+ /*# sourceMappingURL=lookbook.css.map */