lookbook 0.9.3 → 1.0.0.beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (207) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -867
  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 +22 -16
  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 +10 -0
  43. data/app/components/lookbook/dimensions_display/component.js +30 -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/params_editor/component.html.erb +3 -0
  64. data/app/components/lookbook/params_editor/component.js +12 -0
  65. data/app/components/lookbook/params_editor/component.rb +11 -0
  66. data/app/components/lookbook/params_editor/field/component.html.erb +50 -0
  67. data/app/components/lookbook/params_editor/field/component.js +36 -0
  68. data/app/components/lookbook/params_editor/field/component.rb +41 -0
  69. data/app/components/lookbook/prose/component.css +12 -0
  70. data/app/components/lookbook/prose/component.html.erb +3 -0
  71. data/app/components/lookbook/prose/component.rb +26 -0
  72. data/app/components/lookbook/split_layout/component.html.erb +13 -0
  73. data/app/components/lookbook/split_layout/component.js +151 -0
  74. data/app/components/lookbook/split_layout/component.rb +11 -0
  75. data/app/components/lookbook/tabbed_content/component.html.erb +5 -0
  76. data/app/components/lookbook/tabbed_content/component.js +21 -0
  77. data/app/components/lookbook/tabbed_content/component.rb +20 -0
  78. data/app/components/lookbook/tabbed_content/section/component.html.erb +8 -0
  79. data/app/components/lookbook/tabbed_content/section/component.rb +9 -0
  80. data/app/components/lookbook/tabs/component.css +8 -0
  81. data/app/components/lookbook/tabs/component.html.erb +14 -0
  82. data/app/components/lookbook/tabs/component.js +107 -0
  83. data/app/components/lookbook/tabs/component.rb +30 -0
  84. data/app/components/lookbook/tabs/dropdown_tab/component.html.erb +14 -0
  85. data/app/components/lookbook/tabs/dropdown_tab/component.rb +16 -0
  86. data/app/components/lookbook/tabs/tab/component.html.erb +18 -0
  87. data/app/components/lookbook/tabs/tab/component.rb +16 -0
  88. data/app/components/lookbook/tag_component.rb +29 -0
  89. data/app/components/lookbook/toolbar/component.css +16 -0
  90. data/app/components/lookbook/toolbar/component.html.erb +5 -0
  91. data/app/components/lookbook/toolbar/component.rb +26 -0
  92. data/app/components/lookbook/viewport/component.css +11 -0
  93. data/app/components/lookbook/viewport/component.html.erb +57 -0
  94. data/app/{assets/lookbook/js/components/preview-window.js → components/lookbook/viewport/component.js} +57 -14
  95. data/app/components/lookbook/viewport/component.rb +21 -0
  96. data/app/controllers/lookbook/application_controller.rb +16 -5
  97. data/app/controllers/lookbook/pages_controller.rb +18 -10
  98. data/app/controllers/lookbook/previews_controller.rb +62 -25
  99. data/app/helpers/lookbook/application_helper.rb +7 -3
  100. data/app/helpers/lookbook/component_helper.rb +22 -10
  101. data/app/helpers/lookbook/output_helper.rb +8 -4
  102. data/app/helpers/lookbook/page_helper.rb +13 -21
  103. data/app/views/layouts/lookbook/application.html.erb +76 -28
  104. data/app/views/layouts/lookbook/inspector.html.erb +7 -0
  105. data/app/views/layouts/lookbook/page.html.erb +53 -0
  106. data/app/views/layouts/lookbook/shell.html.erb +64 -0
  107. data/app/views/layouts/lookbook/skeleton.html.erb +27 -10
  108. data/app/views/layouts/lookbook/standalone.html.erb +5 -0
  109. data/app/views/lookbook/404.html.erb +15 -0
  110. data/app/views/lookbook/error.html.erb +34 -34
  111. data/app/views/lookbook/index.html.erb +11 -6
  112. data/app/views/lookbook/pages/show.html.erb +29 -93
  113. data/app/views/{layouts/lookbook → lookbook}/preview.html.erb +3 -5
  114. data/app/views/lookbook/previews/panels/_notes.html.erb +19 -25
  115. data/app/views/lookbook/previews/panels/_output.html.erb +7 -18
  116. data/app/views/lookbook/previews/panels/_params.html.erb +13 -15
  117. data/app/views/lookbook/previews/panels/_preview.html.erb +6 -52
  118. data/app/views/lookbook/previews/panels/_source.html.erb +7 -16
  119. data/app/views/lookbook/previews/show.html.erb +130 -24
  120. data/config/routes.rb +7 -7
  121. data/lib/lookbook/code_formatter.rb +37 -13
  122. data/lib/lookbook/collection.rb +19 -16
  123. data/lib/lookbook/config.rb +125 -0
  124. data/lib/lookbook/engine.rb +69 -67
  125. data/lib/lookbook/entity.rb +47 -0
  126. data/lib/lookbook/error.rb +1 -2
  127. data/lib/lookbook/features.rb +1 -1
  128. data/lib/lookbook/markdown.rb +3 -5
  129. data/lib/lookbook/page.rb +26 -43
  130. data/lib/lookbook/page_collection.rb +8 -0
  131. data/lib/lookbook/params.rb +14 -3
  132. data/lib/lookbook/parser.rb +4 -0
  133. data/lib/lookbook/preview.rb +16 -7
  134. data/lib/lookbook/preview_collection.rb +8 -0
  135. data/lib/lookbook/preview_controller.rb +6 -2
  136. data/lib/lookbook/preview_example.rb +5 -6
  137. data/lib/lookbook/preview_group.rb +4 -9
  138. data/lib/lookbook/{code_inspector.rb → source_inspector.rb} +2 -2
  139. data/lib/lookbook/theme.rb +22 -0
  140. data/lib/lookbook/utils.rb +11 -3
  141. data/lib/lookbook/version.rb +1 -1
  142. data/lib/lookbook.rb +4 -1
  143. data/lib/tasks/lookbook_tasks.rake +13 -1
  144. data/public/lookbook-assets/css/app.css +2340 -1
  145. data/public/lookbook-assets/css/app.css.map +11 -1
  146. data/public/lookbook-assets/css/lookbook.css +3040 -0
  147. data/public/lookbook-assets/css/lookbook.css.map +1 -0
  148. data/public/lookbook-assets/css/themes/blue.css +44 -0
  149. data/public/lookbook-assets/css/themes/blue.css.map +1 -0
  150. data/public/lookbook-assets/css/themes/indigo.css +44 -0
  151. data/public/lookbook-assets/css/themes/indigo.css.map +1 -0
  152. data/public/lookbook-assets/css/themes/zinc.css +44 -0
  153. data/public/lookbook-assets/css/themes/zinc.css.map +1 -0
  154. data/public/lookbook-assets/js/app.js +10861 -1
  155. data/public/lookbook-assets/js/app.js.map +2571 -1
  156. data/public/lookbook-assets/js/embed.js +895 -1
  157. data/public/lookbook-assets/js/embed.js.map +1 -1
  158. data/public/lookbook-assets/js/lookbook.js +13529 -0
  159. data/public/lookbook-assets/js/lookbook.js.map +1 -0
  160. metadata +128 -116
  161. data/app/assets/lookbook/css/app.css +0 -161
  162. data/app/assets/lookbook/css/code_theme.css +0 -214
  163. data/app/assets/lookbook/js/components/app.js +0 -55
  164. data/app/assets/lookbook/js/components/code.js +0 -5
  165. data/app/assets/lookbook/js/components/copy.js +0 -20
  166. data/app/assets/lookbook/js/components/embed.js +0 -89
  167. data/app/assets/lookbook/js/components/filter.js +0 -35
  168. data/app/assets/lookbook/js/components/inspector.js +0 -66
  169. data/app/assets/lookbook/js/components/nav-group.js +0 -47
  170. data/app/assets/lookbook/js/components/nav-item.js +0 -29
  171. data/app/assets/lookbook/js/components/nav.js +0 -28
  172. data/app/assets/lookbook/js/components/page-tabs.js +0 -9
  173. data/app/assets/lookbook/js/components/page.js +0 -25
  174. data/app/assets/lookbook/js/components/param.js +0 -34
  175. data/app/assets/lookbook/js/components/sidebar.js +0 -18
  176. data/app/assets/lookbook/js/components/sizes.js +0 -16
  177. data/app/assets/lookbook/js/components/splitter.js +0 -25
  178. data/app/assets/lookbook/js/components/tabs.js +0 -52
  179. data/app/assets/lookbook/js/lib/split.js +0 -15
  180. data/app/assets/lookbook/js/stores/sidebar.js +0 -26
  181. data/app/views/layouts/lookbook/basic.html.erb +0 -7
  182. data/app/views/lookbook/components/_branding.html.erb +0 -8
  183. data/app/views/lookbook/components/_code.html.erb +0 -17
  184. data/app/views/lookbook/components/_copy_button.html.erb +0 -11
  185. data/app/views/lookbook/components/_drawer.html.erb +0 -112
  186. data/app/views/lookbook/components/_embed.html.erb +0 -39
  187. data/app/views/lookbook/components/_errors.html.erb +0 -13
  188. data/app/views/lookbook/components/_filter.html.erb +0 -18
  189. data/app/views/lookbook/components/_header.html.erb +0 -6
  190. data/app/views/lookbook/components/_icon.html.erb +0 -5
  191. data/app/views/lookbook/components/_nav.html.erb +0 -16
  192. data/app/views/lookbook/components/_nav_collection.html.erb +0 -5
  193. data/app/views/lookbook/components/_nav_group.html.erb +0 -14
  194. data/app/views/lookbook/components/_nav_item.html.erb +0 -24
  195. data/app/views/lookbook/components/_nav_page.html.erb +0 -22
  196. data/app/views/lookbook/components/_nav_preview.html.erb +0 -13
  197. data/app/views/lookbook/components/_not_found.html.erb +0 -11
  198. data/app/views/lookbook/components/_param.html.erb +0 -21
  199. data/app/views/lookbook/components/_preview.html.erb +0 -77
  200. data/app/views/lookbook/components/_sidebar.html.erb +0 -69
  201. data/app/views/lookbook/pages/not_found.html.erb +0 -15
  202. data/app/views/lookbook/previews/error.html.erb +0 -1
  203. data/app/views/lookbook/previews/inputs/_select.html.erb +0 -7
  204. data/app/views/lookbook/previews/inputs/_text.html.erb +0 -8
  205. data/app/views/lookbook/previews/inputs/_textarea.html.erb +0 -8
  206. data/app/views/lookbook/previews/inputs/_toggle.html.erb +0 -13
  207. data/app/views/lookbook/previews/not_found.html.erb +0 -23
@@ -0,0 +1,3040 @@
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
+ position: relative;
1561
+ }
1562
+
1563
+ [data-component="viewport"] {
1564
+ background-color: #fff;
1565
+ 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");
1566
+ }
1567
+
1568
+ [data-component="viewport"] .resize-handle {
1569
+ height: 100%;
1570
+ width: 100%;
1571
+ border-color: var(--lookbook-divider);
1572
+ background-color: var(--lookbook-viewport-handle);
1573
+ justify-content: center;
1574
+ align-items: center;
1575
+ display: flex;
1576
+ }
1577
+
1578
+ [data-component="viewport"] .resize-handle:hover {
1579
+ background-color: rgb(224 231 255 / var(--tw-bg-opacity) );
1580
+ --tw-bg-opacity: .2;
1581
+ }
1582
+
1583
+ [data-component="viewport"] .resize-handle {
1584
+ touch-action: none;
1585
+ -webkit-user-select: none;
1586
+ user-select: none;
1587
+ color: var(--lookbook-viewport-handle-icon);
1588
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
1589
+ transition-duration: .15s;
1590
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
1591
+ }
1592
+
1593
+ [data-component="viewport"] .resize-handle:hover {
1594
+ color: var(--lookbook-viewport-handle-icon-hover);
1595
+ }
1596
+
1597
+ .form-input {
1598
+ color: var(--lookbook-input-text);
1599
+ }
1600
+
1601
+ .form-input::placeholder {
1602
+ color: var(--lookbook-input-text-placeholder);
1603
+ font-style: italic;
1604
+ }
1605
+
1606
+ .form-input {
1607
+ border-color: var(--lookbook-input-border);
1608
+ }
1609
+
1610
+ .form-input:focus {
1611
+ border-color: var(--lookbook-input-border-focus);
1612
+ --tw-ring-color: var(--lookbook-input-border-focus);
1613
+ }
1614
+
1615
+ .form-input {
1616
+ width: 100%;
1617
+ background-color: var(--lookbook-input);
1618
+ border-radius: .375rem;
1619
+ font-size: .875rem;
1620
+ line-height: 1.25rem;
1621
+ }
1622
+
1623
+ .pointer-events-none {
1624
+ pointer-events: none;
1625
+ }
1626
+
1627
+ .visible {
1628
+ visibility: visible;
1629
+ }
1630
+
1631
+ .invisible {
1632
+ visibility: hidden;
1633
+ }
1634
+
1635
+ .\!absolute {
1636
+ position: absolute !important;
1637
+ }
1638
+
1639
+ .absolute {
1640
+ position: absolute;
1641
+ }
1642
+
1643
+ .relative {
1644
+ position: relative;
1645
+ }
1646
+
1647
+ .sticky {
1648
+ position: sticky;
1649
+ }
1650
+
1651
+ .inset-0 {
1652
+ inset: 0;
1653
+ }
1654
+
1655
+ .-inset-px {
1656
+ inset: -1px;
1657
+ }
1658
+
1659
+ .top-0 {
1660
+ top: 0;
1661
+ }
1662
+
1663
+ .right-0 {
1664
+ right: 0;
1665
+ }
1666
+
1667
+ .bottom-0 {
1668
+ bottom: 0;
1669
+ }
1670
+
1671
+ .top-\[40px\] {
1672
+ top: 40px;
1673
+ }
1674
+
1675
+ .left-0 {
1676
+ left: 0;
1677
+ }
1678
+
1679
+ .top-\[39px\] {
1680
+ top: 39px;
1681
+ }
1682
+
1683
+ .-top-px {
1684
+ top: -1px;
1685
+ }
1686
+
1687
+ .top-1\/2 {
1688
+ top: 50%;
1689
+ }
1690
+
1691
+ .right-3 {
1692
+ right: .75rem;
1693
+ }
1694
+
1695
+ .-left-px {
1696
+ left: -1px;
1697
+ }
1698
+
1699
+ .-left-4 {
1700
+ left: -1rem;
1701
+ }
1702
+
1703
+ .z-50 {
1704
+ z-index: 50;
1705
+ }
1706
+
1707
+ .z-\[-1\] {
1708
+ z-index: -1;
1709
+ }
1710
+
1711
+ .\!z-40 {
1712
+ z-index: 40 !important;
1713
+ }
1714
+
1715
+ .z-0 {
1716
+ z-index: 0;
1717
+ }
1718
+
1719
+ .z-10 {
1720
+ z-index: 10;
1721
+ }
1722
+
1723
+ .mx-auto {
1724
+ margin-left: auto;
1725
+ margin-right: auto;
1726
+ }
1727
+
1728
+ .mx-8 {
1729
+ margin-left: 2rem;
1730
+ margin-right: 2rem;
1731
+ }
1732
+
1733
+ .mt-3 {
1734
+ margin-top: .75rem;
1735
+ }
1736
+
1737
+ .mt-2 {
1738
+ margin-top: .5rem;
1739
+ }
1740
+
1741
+ .mb-8 {
1742
+ margin-bottom: 2rem;
1743
+ }
1744
+
1745
+ .mb-2 {
1746
+ margin-bottom: .5rem;
1747
+ }
1748
+
1749
+ .mt-8 {
1750
+ margin-top: 2rem;
1751
+ }
1752
+
1753
+ .mt-6 {
1754
+ margin-top: 1.5rem;
1755
+ }
1756
+
1757
+ .ml-2 {
1758
+ margin-left: .5rem;
1759
+ }
1760
+
1761
+ .mr-1 {
1762
+ margin-right: .25rem;
1763
+ }
1764
+
1765
+ .mr-6 {
1766
+ margin-right: 1.5rem;
1767
+ }
1768
+
1769
+ .ml-auto {
1770
+ margin-left: auto;
1771
+ }
1772
+
1773
+ .mt-12 {
1774
+ margin-top: 3rem;
1775
+ }
1776
+
1777
+ .mr-2 {
1778
+ margin-right: .5rem;
1779
+ }
1780
+
1781
+ .mb-4 {
1782
+ margin-bottom: 1rem;
1783
+ }
1784
+
1785
+ .mb-\[-2px\] {
1786
+ margin-bottom: -2px;
1787
+ }
1788
+
1789
+ .mt-1 {
1790
+ margin-top: .25rem;
1791
+ }
1792
+
1793
+ .-ml-3 {
1794
+ margin-left: -.75rem;
1795
+ }
1796
+
1797
+ .mr-auto {
1798
+ margin-right: auto;
1799
+ }
1800
+
1801
+ .mr-1\.5 {
1802
+ margin-right: .375rem;
1803
+ }
1804
+
1805
+ .\!block {
1806
+ display: block !important;
1807
+ }
1808
+
1809
+ .block {
1810
+ display: block;
1811
+ }
1812
+
1813
+ .inline-block {
1814
+ display: inline-block;
1815
+ }
1816
+
1817
+ .inline {
1818
+ display: inline;
1819
+ }
1820
+
1821
+ .flex {
1822
+ display: flex;
1823
+ }
1824
+
1825
+ .inline-flex {
1826
+ display: inline-flex;
1827
+ }
1828
+
1829
+ .grid {
1830
+ display: grid;
1831
+ }
1832
+
1833
+ .\!hidden {
1834
+ display: none !important;
1835
+ }
1836
+
1837
+ .hidden {
1838
+ display: none;
1839
+ }
1840
+
1841
+ .h-screen {
1842
+ height: 100vh;
1843
+ }
1844
+
1845
+ .h-full {
1846
+ height: 100%;
1847
+ }
1848
+
1849
+ .h-\[calc\(100\%_-_40px\)\] {
1850
+ height: calc(100% - 40px);
1851
+ }
1852
+
1853
+ .h-\[calc\(100vh_-_2\.5rem\)\] {
1854
+ height: calc(100vh - 2.5rem);
1855
+ }
1856
+
1857
+ .h-\[calc\(100vh_-_40px\)\] {
1858
+ height: calc(100vh - 40px);
1859
+ }
1860
+
1861
+ .h-\[9px\] {
1862
+ height: 9px;
1863
+ }
1864
+
1865
+ .h-10 {
1866
+ height: 2.5rem;
1867
+ }
1868
+
1869
+ .h-4 {
1870
+ height: 1rem;
1871
+ }
1872
+
1873
+ .h-3\.5 {
1874
+ height: .875rem;
1875
+ }
1876
+
1877
+ .h-3 {
1878
+ height: .75rem;
1879
+ }
1880
+
1881
+ .h-6 {
1882
+ height: 1.5rem;
1883
+ }
1884
+
1885
+ .h-5 {
1886
+ height: 1.25rem;
1887
+ }
1888
+
1889
+ .\!h-auto {
1890
+ height: auto !important;
1891
+ }
1892
+
1893
+ .max-h-\[300px\] {
1894
+ max-height: 300px;
1895
+ }
1896
+
1897
+ .max-h-full {
1898
+ max-height: 100%;
1899
+ }
1900
+
1901
+ .min-h-0 {
1902
+ min-height: 0;
1903
+ }
1904
+
1905
+ .w-full {
1906
+ width: 100%;
1907
+ }
1908
+
1909
+ .w-screen {
1910
+ width: 100vw;
1911
+ }
1912
+
1913
+ .w-\[9px\] {
1914
+ width: 9px;
1915
+ }
1916
+
1917
+ .w-4 {
1918
+ width: 1rem;
1919
+ }
1920
+
1921
+ .w-3\.5 {
1922
+ width: .875rem;
1923
+ }
1924
+
1925
+ .w-3 {
1926
+ width: .75rem;
1927
+ }
1928
+
1929
+ .w-\[140px\] {
1930
+ width: 140px;
1931
+ }
1932
+
1933
+ .w-11 {
1934
+ width: 2.75rem;
1935
+ }
1936
+
1937
+ .w-5 {
1938
+ width: 1.25rem;
1939
+ }
1940
+
1941
+ .min-w-\[140px\] {
1942
+ min-width: 140px;
1943
+ }
1944
+
1945
+ .min-w-\[180px\] {
1946
+ min-width: 180px;
1947
+ }
1948
+
1949
+ .min-w-0 {
1950
+ min-width: 0;
1951
+ }
1952
+
1953
+ .max-w-sm {
1954
+ max-width: 24rem;
1955
+ }
1956
+
1957
+ .max-w-screen-lg {
1958
+ max-width: 1024px;
1959
+ }
1960
+
1961
+ .max-w-\[420px\] {
1962
+ max-width: 420px;
1963
+ }
1964
+
1965
+ .max-w-3xl {
1966
+ max-width: 48rem;
1967
+ }
1968
+
1969
+ .max-w-none {
1970
+ max-width: none;
1971
+ }
1972
+
1973
+ .max-w-xs {
1974
+ max-width: 20rem;
1975
+ }
1976
+
1977
+ .max-w-\[800px\] {
1978
+ max-width: 800px;
1979
+ }
1980
+
1981
+ .flex-none {
1982
+ flex: none;
1983
+ }
1984
+
1985
+ .flex-shrink-0 {
1986
+ flex-shrink: 0;
1987
+ }
1988
+
1989
+ .flex-grow {
1990
+ flex-grow: 1;
1991
+ }
1992
+
1993
+ .translate-x-0 {
1994
+ --tw-translate-x: 0px;
1995
+ 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) );
1996
+ }
1997
+
1998
+ .translate-x-full {
1999
+ --tw-translate-x: 100%;
2000
+ 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) );
2001
+ }
2002
+
2003
+ .-translate-y-1\/2 {
2004
+ --tw-translate-y: -50%;
2005
+ 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) );
2006
+ }
2007
+
2008
+ .-translate-x-1\/2 {
2009
+ --tw-translate-x: -50%;
2010
+ 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) );
2011
+ }
2012
+
2013
+ .translate-x-5 {
2014
+ --tw-translate-x: 1.25rem;
2015
+ 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) );
2016
+ }
2017
+
2018
+ .rotate-180 {
2019
+ --tw-rotate: 180deg;
2020
+ 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) );
2021
+ }
2022
+
2023
+ .rotate-90 {
2024
+ --tw-rotate: 90deg;
2025
+ 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) );
2026
+ }
2027
+
2028
+ .rotate-45 {
2029
+ --tw-rotate: 45deg;
2030
+ 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) );
2031
+ }
2032
+
2033
+ @keyframes spin {
2034
+ to {
2035
+ transform: rotate(360deg);
2036
+ }
2037
+ }
2038
+
2039
+ .animate-spin {
2040
+ animation: spin 1s linear infinite;
2041
+ }
2042
+
2043
+ .\!cursor-default {
2044
+ cursor: default !important;
2045
+ }
2046
+
2047
+ .cursor-\[not-allowed\] {
2048
+ cursor: not-allowed;
2049
+ }
2050
+
2051
+ .cursor-\[col-resize\] {
2052
+ cursor: col-resize;
2053
+ }
2054
+
2055
+ .cursor-\[row-resize\] {
2056
+ cursor: row-resize;
2057
+ }
2058
+
2059
+ .cursor-\[nwse-resize\] {
2060
+ cursor: nwse-resize;
2061
+ }
2062
+
2063
+ .cursor-pointer {
2064
+ cursor: pointer;
2065
+ }
2066
+
2067
+ .select-none {
2068
+ -webkit-user-select: none;
2069
+ user-select: none;
2070
+ }
2071
+
2072
+ .resize {
2073
+ resize: both;
2074
+ }
2075
+
2076
+ .list-none {
2077
+ list-style-type: none;
2078
+ }
2079
+
2080
+ .\!grid-cols-\[1fr\] {
2081
+ grid-template-columns: 1fr !important;
2082
+ }
2083
+
2084
+ .grid-cols-\[1fr_17px\] {
2085
+ grid-template-columns: 1fr 17px;
2086
+ }
2087
+
2088
+ .grid-rows-\[40px_1fr\] {
2089
+ grid-template-rows: 40px 1fr;
2090
+ }
2091
+
2092
+ .\!grid-rows-\[1fr\] {
2093
+ grid-template-rows: 1fr !important;
2094
+ }
2095
+
2096
+ .grid-rows-\[1fr_17px\] {
2097
+ grid-template-rows: 1fr 17px;
2098
+ }
2099
+
2100
+ .flex-col {
2101
+ flex-direction: column;
2102
+ }
2103
+
2104
+ .items-start {
2105
+ align-items: flex-start;
2106
+ }
2107
+
2108
+ .items-center {
2109
+ align-items: center;
2110
+ }
2111
+
2112
+ .items-stretch {
2113
+ align-items: stretch;
2114
+ }
2115
+
2116
+ .justify-center {
2117
+ justify-content: center;
2118
+ }
2119
+
2120
+ .justify-between {
2121
+ justify-content: space-between;
2122
+ }
2123
+
2124
+ .space-x-1 > :not([hidden]) ~ :not([hidden]) {
2125
+ --tw-space-x-reverse: 0;
2126
+ margin-right: calc(.25rem * var(--tw-space-x-reverse) );
2127
+ margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse) ) );
2128
+ }
2129
+
2130
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
2131
+ --tw-space-y-reverse: 0;
2132
+ margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse) ) );
2133
+ margin-bottom: calc(.5rem * var(--tw-space-y-reverse) );
2134
+ }
2135
+
2136
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
2137
+ --tw-space-x-reverse: 0;
2138
+ margin-right: calc(.5rem * var(--tw-space-x-reverse) );
2139
+ margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse) ) );
2140
+ }
2141
+
2142
+ .space-x-6 > :not([hidden]) ~ :not([hidden]) {
2143
+ --tw-space-x-reverse: 0;
2144
+ margin-right: calc(1.5rem * var(--tw-space-x-reverse) );
2145
+ margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse) ) );
2146
+ }
2147
+
2148
+ .divide-y > :not([hidden]) ~ :not([hidden]) {
2149
+ --tw-divide-y-reverse: 0;
2150
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse) ) );
2151
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse) );
2152
+ }
2153
+
2154
+ .divide-dashed > :not([hidden]) ~ :not([hidden]) {
2155
+ border-style: dashed;
2156
+ }
2157
+
2158
+ .divide-red-200 > :not([hidden]) ~ :not([hidden]) {
2159
+ --tw-divide-opacity: 1;
2160
+ border-color: rgb(254 202 202 / var(--tw-divide-opacity) );
2161
+ }
2162
+
2163
+ .divide-lookbook-divider > :not([hidden]) ~ :not([hidden]) {
2164
+ border-color: var(--lookbook-divider);
2165
+ }
2166
+
2167
+ .overflow-auto {
2168
+ overflow: auto;
2169
+ }
2170
+
2171
+ .overflow-hidden {
2172
+ overflow: hidden;
2173
+ }
2174
+
2175
+ .overflow-x-auto {
2176
+ overflow-x: auto;
2177
+ }
2178
+
2179
+ .overflow-y-auto {
2180
+ overflow-y: auto;
2181
+ }
2182
+
2183
+ .overflow-y-hidden {
2184
+ overflow-y: hidden;
2185
+ }
2186
+
2187
+ .scroll-smooth {
2188
+ scroll-behavior: smooth;
2189
+ }
2190
+
2191
+ .truncate {
2192
+ text-overflow: ellipsis;
2193
+ white-space: nowrap;
2194
+ overflow: hidden;
2195
+ }
2196
+
2197
+ .whitespace-nowrap {
2198
+ white-space: nowrap;
2199
+ }
2200
+
2201
+ .whitespace-pre-wrap {
2202
+ white-space: pre-wrap;
2203
+ }
2204
+
2205
+ .break-all {
2206
+ word-break: break-all;
2207
+ }
2208
+
2209
+ .rounded-sm {
2210
+ border-radius: .125rem;
2211
+ }
2212
+
2213
+ .rounded-md {
2214
+ border-radius: .375rem;
2215
+ }
2216
+
2217
+ .rounded-full {
2218
+ border-radius: 9999px;
2219
+ }
2220
+
2221
+ .rounded-bl-md {
2222
+ border-bottom-left-radius: .375rem;
2223
+ }
2224
+
2225
+ .border {
2226
+ border-width: 1px;
2227
+ }
2228
+
2229
+ .border-2 {
2230
+ border-width: 2px;
2231
+ }
2232
+
2233
+ .border-t {
2234
+ border-top-width: 1px;
2235
+ }
2236
+
2237
+ .border-b {
2238
+ border-bottom-width: 1px;
2239
+ }
2240
+
2241
+ .border-l {
2242
+ border-left-width: 1px;
2243
+ }
2244
+
2245
+ .border-r {
2246
+ border-right-width: 1px;
2247
+ }
2248
+
2249
+ .border-b-0 {
2250
+ border-bottom-width: 0;
2251
+ }
2252
+
2253
+ .border-l-2 {
2254
+ border-left-width: 2px;
2255
+ }
2256
+
2257
+ .border-b-2 {
2258
+ border-bottom-width: 2px;
2259
+ }
2260
+
2261
+ .border-t-0 {
2262
+ border-top-width: 0;
2263
+ }
2264
+
2265
+ .border-dashed {
2266
+ border-style: dashed;
2267
+ }
2268
+
2269
+ .border-red-200 {
2270
+ --tw-border-opacity: 1;
2271
+ border-color: rgb(254 202 202 / var(--tw-border-opacity) );
2272
+ }
2273
+
2274
+ .border-lookbook-divider {
2275
+ border-color: var(--lookbook-divider);
2276
+ }
2277
+
2278
+ .border-gray-300 {
2279
+ --tw-border-opacity: 1;
2280
+ border-color: rgb(209 213 219 / var(--tw-border-opacity) );
2281
+ }
2282
+
2283
+ .border-gray-200 {
2284
+ --tw-border-opacity: 1;
2285
+ border-color: rgb(229 231 235 / var(--tw-border-opacity) );
2286
+ }
2287
+
2288
+ .\!border-lookbook-header-border {
2289
+ border-color: var(--lookbook-header-border) !important;
2290
+ }
2291
+
2292
+ .border-transparent {
2293
+ border-color: #0000;
2294
+ }
2295
+
2296
+ .border-lookbook-tabs-highlight {
2297
+ border-color: var(--lookbook-tabs-highlight);
2298
+ }
2299
+
2300
+ .bg-white {
2301
+ --tw-bg-opacity: 1;
2302
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
2303
+ }
2304
+
2305
+ .bg-red-50 {
2306
+ --tw-bg-opacity: 1;
2307
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity) );
2308
+ }
2309
+
2310
+ .bg-red-100 {
2311
+ --tw-bg-opacity: 1;
2312
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity) );
2313
+ }
2314
+
2315
+ .bg-lookbook-sidebar {
2316
+ background-color: var(--lookbook-sidebar);
2317
+ }
2318
+
2319
+ .bg-black {
2320
+ --tw-bg-opacity: 1;
2321
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity) );
2322
+ }
2323
+
2324
+ .bg-lookbook-page {
2325
+ background-color: var(--lookbook-page);
2326
+ }
2327
+
2328
+ .bg-transparent {
2329
+ background-color: #0000;
2330
+ }
2331
+
2332
+ .\!bg-lookbook-header {
2333
+ background-color: var(--lookbook-header) !important;
2334
+ }
2335
+
2336
+ .bg-lookbook-drawer {
2337
+ background-color: var(--lookbook-drawer);
2338
+ }
2339
+
2340
+ .bg-lookbook-prose {
2341
+ background-color: var(--lookbook-prose);
2342
+ }
2343
+
2344
+ .bg-zinc-50 {
2345
+ --tw-bg-opacity: 1;
2346
+ background-color: rgb(250 250 250 / var(--tw-bg-opacity) );
2347
+ }
2348
+
2349
+ .bg-lookbook-divider {
2350
+ background-color: var(--lookbook-divider);
2351
+ }
2352
+
2353
+ .bg-lookbook-toolbar {
2354
+ background-color: var(--lookbook-toolbar);
2355
+ }
2356
+
2357
+ .bg-lookbook-viewport-handle {
2358
+ background-color: var(--lookbook-viewport-handle);
2359
+ }
2360
+
2361
+ .\!bg-lookbook-nav-item-active {
2362
+ background-color: var(--lookbook-nav-item-active) !important;
2363
+ }
2364
+
2365
+ .bg-lookbook-input-toggle-active {
2366
+ background-color: var(--lookbook-input-toggle-active);
2367
+ }
2368
+
2369
+ .bg-lookbook-input-toggle {
2370
+ background-color: var(--lookbook-input-toggle);
2371
+ }
2372
+
2373
+ .stroke-current {
2374
+ stroke: currentColor;
2375
+ }
2376
+
2377
+ .stroke-2 {
2378
+ stroke-width: 2px;
2379
+ }
2380
+
2381
+ .p-4 {
2382
+ padding: 1rem;
2383
+ }
2384
+
2385
+ .p-1 {
2386
+ padding: .25rem;
2387
+ }
2388
+
2389
+ .p-2 {
2390
+ padding: .5rem;
2391
+ }
2392
+
2393
+ .p-3 {
2394
+ padding: .75rem;
2395
+ }
2396
+
2397
+ .p-6 {
2398
+ padding: 1.5rem;
2399
+ }
2400
+
2401
+ .p-8 {
2402
+ padding: 2rem;
2403
+ }
2404
+
2405
+ .px-4 {
2406
+ padding-left: 1rem;
2407
+ padding-right: 1rem;
2408
+ }
2409
+
2410
+ .py-6 {
2411
+ padding-top: 1.5rem;
2412
+ padding-bottom: 1.5rem;
2413
+ }
2414
+
2415
+ .px-8 {
2416
+ padding-left: 2rem;
2417
+ padding-right: 2rem;
2418
+ }
2419
+
2420
+ .py-2 {
2421
+ padding-top: .5rem;
2422
+ padding-bottom: .5rem;
2423
+ }
2424
+
2425
+ .py-3 {
2426
+ padding-top: .75rem;
2427
+ padding-bottom: .75rem;
2428
+ }
2429
+
2430
+ .px-3 {
2431
+ padding-left: .75rem;
2432
+ padding-right: .75rem;
2433
+ }
2434
+
2435
+ .py-4 {
2436
+ padding-top: 1rem;
2437
+ padding-bottom: 1rem;
2438
+ }
2439
+
2440
+ .py-1 {
2441
+ padding-top: .25rem;
2442
+ padding-bottom: .25rem;
2443
+ }
2444
+
2445
+ .px-1 {
2446
+ padding-left: .25rem;
2447
+ padding-right: .25rem;
2448
+ }
2449
+
2450
+ .pb-10 {
2451
+ padding-bottom: 2.5rem;
2452
+ }
2453
+
2454
+ .pt-1 {
2455
+ padding-top: .25rem;
2456
+ }
2457
+
2458
+ .pr-0 {
2459
+ padding-right: 0;
2460
+ }
2461
+
2462
+ .pl-1 {
2463
+ padding-left: .25rem;
2464
+ }
2465
+
2466
+ .pb-1 {
2467
+ padding-bottom: .25rem;
2468
+ }
2469
+
2470
+ .pr-0\.5 {
2471
+ padding-right: .125rem;
2472
+ }
2473
+
2474
+ .pl-0\.5 {
2475
+ padding-left: .125rem;
2476
+ }
2477
+
2478
+ .pl-0 {
2479
+ padding-left: 0;
2480
+ }
2481
+
2482
+ .pt-8 {
2483
+ padding-top: 2rem;
2484
+ }
2485
+
2486
+ .pb-12 {
2487
+ padding-bottom: 3rem;
2488
+ }
2489
+
2490
+ .pb-0 {
2491
+ padding-bottom: 0;
2492
+ }
2493
+
2494
+ .pr-2 {
2495
+ padding-right: .5rem;
2496
+ }
2497
+
2498
+ .pt-2\.5 {
2499
+ padding-top: .625rem;
2500
+ }
2501
+
2502
+ .pb-1\.5 {
2503
+ padding-bottom: .375rem;
2504
+ }
2505
+
2506
+ .pt-2 {
2507
+ padding-top: .5rem;
2508
+ }
2509
+
2510
+ .text-left {
2511
+ text-align: left;
2512
+ }
2513
+
2514
+ .text-center {
2515
+ text-align: center;
2516
+ }
2517
+
2518
+ .font-mono {
2519
+ font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
2520
+ }
2521
+
2522
+ .font-sans {
2523
+ font-family: Nunito Sans, -apple-system, \.SFNSText-Regular, San Francisco, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
2524
+ }
2525
+
2526
+ .text-base {
2527
+ font-size: 1rem;
2528
+ line-height: 1.5rem;
2529
+ }
2530
+
2531
+ .text-sm {
2532
+ font-size: .875rem;
2533
+ line-height: 1.25rem;
2534
+ }
2535
+
2536
+ .text-xl {
2537
+ font-size: 1.25rem;
2538
+ line-height: 1.75rem;
2539
+ }
2540
+
2541
+ .text-xs {
2542
+ font-size: .75rem;
2543
+ line-height: 1rem;
2544
+ }
2545
+
2546
+ .font-bold {
2547
+ font-weight: 700;
2548
+ }
2549
+
2550
+ .font-black {
2551
+ font-weight: 900;
2552
+ }
2553
+
2554
+ .uppercase {
2555
+ text-transform: uppercase;
2556
+ }
2557
+
2558
+ .italic {
2559
+ font-style: italic;
2560
+ }
2561
+
2562
+ .leading-relaxed {
2563
+ line-height: 1.625;
2564
+ }
2565
+
2566
+ .leading-tight {
2567
+ line-height: 1.25;
2568
+ }
2569
+
2570
+ .tracking-wider {
2571
+ letter-spacing: .05em;
2572
+ }
2573
+
2574
+ .text-red-300 {
2575
+ --tw-text-opacity: 1;
2576
+ color: rgb(252 165 165 / var(--tw-text-opacity) );
2577
+ }
2578
+
2579
+ .text-red-700 {
2580
+ --tw-text-opacity: 1;
2581
+ color: rgb(185 28 28 / var(--tw-text-opacity) );
2582
+ }
2583
+
2584
+ .text-red-900 {
2585
+ --tw-text-opacity: 1;
2586
+ color: rgb(127 29 29 / var(--tw-text-opacity) );
2587
+ }
2588
+
2589
+ .text-gray-400 {
2590
+ --tw-text-opacity: 1;
2591
+ color: rgb(156 163 175 / var(--tw-text-opacity) );
2592
+ }
2593
+
2594
+ .text-red-800 {
2595
+ --tw-text-opacity: 1;
2596
+ color: rgb(153 27 27 / var(--tw-text-opacity) );
2597
+ }
2598
+
2599
+ .\!text-lookbook-header-text {
2600
+ color: var(--lookbook-header-text) !important;
2601
+ }
2602
+
2603
+ .text-lookbook-button-text {
2604
+ color: var(--lookbook-button-text);
2605
+ }
2606
+
2607
+ .text-green-500 {
2608
+ --tw-text-opacity: 1;
2609
+ color: rgb(34 197 94 / var(--tw-text-opacity) );
2610
+ }
2611
+
2612
+ .text-lookbook-branding-text {
2613
+ color: var(--lookbook-branding-text);
2614
+ }
2615
+
2616
+ .text-green-600 {
2617
+ --tw-text-opacity: 1;
2618
+ color: rgb(22 163 74 / var(--tw-text-opacity) );
2619
+ }
2620
+
2621
+ .text-lookbook-prose-text {
2622
+ color: var(--lookbook-prose-text);
2623
+ }
2624
+
2625
+ .text-lookbook-viewport-handle-icon {
2626
+ color: var(--lookbook-viewport-handle-icon);
2627
+ }
2628
+
2629
+ .text-lookbook-nav-text {
2630
+ color: var(--lookbook-nav-text);
2631
+ }
2632
+
2633
+ .text-lookbook-nav-toggle {
2634
+ color: var(--lookbook-nav-toggle);
2635
+ }
2636
+
2637
+ .text-lookbook-nav-icon {
2638
+ color: var(--lookbook-nav-icon);
2639
+ }
2640
+
2641
+ .text-lookbook-tabs-text {
2642
+ color: var(--lookbook-tabs-text);
2643
+ }
2644
+
2645
+ .\!text-lookbook-tabs-text-disabled {
2646
+ color: var(--lookbook-tabs-text-disabled) !important;
2647
+ }
2648
+
2649
+ .underline {
2650
+ text-decoration-line: underline;
2651
+ }
2652
+
2653
+ .opacity-50 {
2654
+ opacity: .5;
2655
+ }
2656
+
2657
+ .opacity-30 {
2658
+ opacity: .3;
2659
+ }
2660
+
2661
+ .opacity-40 {
2662
+ opacity: .4;
2663
+ }
2664
+
2665
+ .opacity-80 {
2666
+ opacity: .8;
2667
+ }
2668
+
2669
+ .opacity-0 {
2670
+ opacity: 0;
2671
+ }
2672
+
2673
+ .\!opacity-30 {
2674
+ opacity: .3 !important;
2675
+ }
2676
+
2677
+ .opacity-90 {
2678
+ opacity: .9;
2679
+ }
2680
+
2681
+ .opacity-60 {
2682
+ opacity: .6;
2683
+ }
2684
+
2685
+ .opacity-70 {
2686
+ opacity: .7;
2687
+ }
2688
+
2689
+ .\!opacity-100 {
2690
+ opacity: 1 !important;
2691
+ }
2692
+
2693
+ .shadow {
2694
+ --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
2695
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2696
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2697
+ }
2698
+
2699
+ .ring-0 {
2700
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2701
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
2702
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2703
+ }
2704
+
2705
+ .blur {
2706
+ --tw-blur: blur(8px);
2707
+ 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);
2708
+ }
2709
+
2710
+ .filter {
2711
+ 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);
2712
+ }
2713
+
2714
+ .transition-colors {
2715
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
2716
+ transition-duration: .15s;
2717
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2718
+ }
2719
+
2720
+ .transition {
2721
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter, backdrop-filter;
2722
+ transition-duration: .15s;
2723
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2724
+ }
2725
+
2726
+ .transition-opacity {
2727
+ transition-property: opacity;
2728
+ transition-duration: .15s;
2729
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2730
+ }
2731
+
2732
+ .transition-all {
2733
+ transition-property: all;
2734
+ transition-duration: .15s;
2735
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2736
+ }
2737
+
2738
+ .duration-100 {
2739
+ transition-duration: .1s;
2740
+ }
2741
+
2742
+ .duration-200 {
2743
+ transition-duration: .2s;
2744
+ }
2745
+
2746
+ .ease-in-out {
2747
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
2748
+ }
2749
+
2750
+ .tippy-box[data-animation="fade"][data-state="hidden"] {
2751
+ opacity: 0;
2752
+ }
2753
+
2754
+ [data-tippy-root] {
2755
+ max-width: calc(100vw - 10px);
2756
+ }
2757
+
2758
+ .tippy-box {
2759
+ color: #fff;
2760
+ white-space: normal;
2761
+ background-color: #333;
2762
+ border-radius: 4px;
2763
+ outline: none;
2764
+ font-size: 14px;
2765
+ line-height: 1.4;
2766
+ transition-property: transform, visibility, opacity;
2767
+ position: relative;
2768
+ }
2769
+
2770
+ .tippy-box[data-placement^="top"] > .tippy-arrow {
2771
+ bottom: 0;
2772
+ }
2773
+
2774
+ .tippy-box[data-placement^="top"] > .tippy-arrow:before {
2775
+ border-width: 8px 8px 0;
2776
+ border-top-color: initial;
2777
+ transform-origin: top;
2778
+ bottom: -7px;
2779
+ left: 0;
2780
+ }
2781
+
2782
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow {
2783
+ top: 0;
2784
+ }
2785
+
2786
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
2787
+ border-width: 0 8px 8px;
2788
+ border-bottom-color: initial;
2789
+ transform-origin: bottom;
2790
+ top: -7px;
2791
+ left: 0;
2792
+ }
2793
+
2794
+ .tippy-box[data-placement^="left"] > .tippy-arrow {
2795
+ right: 0;
2796
+ }
2797
+
2798
+ .tippy-box[data-placement^="left"] > .tippy-arrow:before {
2799
+ border-width: 8px 0 8px 8px;
2800
+ border-left-color: initial;
2801
+ transform-origin: 0;
2802
+ right: -7px;
2803
+ }
2804
+
2805
+ .tippy-box[data-placement^="right"] > .tippy-arrow {
2806
+ left: 0;
2807
+ }
2808
+
2809
+ .tippy-box[data-placement^="right"] > .tippy-arrow:before {
2810
+ border-width: 8px 8px 8px 0;
2811
+ border-right-color: initial;
2812
+ transform-origin: 100%;
2813
+ left: -7px;
2814
+ }
2815
+
2816
+ .tippy-box[data-inertia][data-state="visible"] {
2817
+ transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
2818
+ }
2819
+
2820
+ .tippy-arrow {
2821
+ width: 16px;
2822
+ height: 16px;
2823
+ color: #333;
2824
+ }
2825
+
2826
+ .tippy-arrow:before {
2827
+ content: "";
2828
+ border-style: solid;
2829
+ border-color: #0000;
2830
+ position: absolute;
2831
+ }
2832
+
2833
+ .tippy-content {
2834
+ z-index: 1;
2835
+ padding: 5px 9px;
2836
+ position: relative;
2837
+ }
2838
+
2839
+ .tippy-box {
2840
+ border: none;
2841
+ }
2842
+
2843
+ .tippy-box[data-placement^="top"] > .tippy-arrow:after {
2844
+ border-top-color: inherit;
2845
+ border-width: 8px 8px 0;
2846
+ bottom: -8px;
2847
+ left: 0;
2848
+ }
2849
+
2850
+ .tippy-box[data-placement^="bottom"] > .tippy-arrow:after {
2851
+ border-bottom-color: inherit;
2852
+ border-width: 0 8px 8px;
2853
+ top: -8px;
2854
+ left: 0;
2855
+ }
2856
+
2857
+ .tippy-box[data-placement^="left"] > .tippy-arrow:after {
2858
+ border-left-color: inherit;
2859
+ border-width: 8px 0 8px 8px;
2860
+ top: 0;
2861
+ right: -8px;
2862
+ }
2863
+
2864
+ .tippy-box[data-placement^="right"] > .tippy-arrow:after {
2865
+ border-width: 8px 8px 8px 0;
2866
+ border-right-color: inherit;
2867
+ top: 0;
2868
+ left: -8px;
2869
+ }
2870
+
2871
+ .tippy-box[data-placement^="top"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2872
+ top: 17px;
2873
+ }
2874
+
2875
+ .tippy-box[data-placement^="bottom"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2876
+ bottom: 17px;
2877
+ }
2878
+
2879
+ .tippy-box[data-placement^="left"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2880
+ left: 12px;
2881
+ }
2882
+
2883
+ .tippy-box[data-placement^="right"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
2884
+ right: 12px;
2885
+ }
2886
+
2887
+ .tippy-arrow {
2888
+ border-color: inherit;
2889
+ }
2890
+
2891
+ .tippy-arrow:after {
2892
+ content: "";
2893
+ z-index: -1;
2894
+ border-style: solid;
2895
+ border-color: #0000;
2896
+ position: absolute;
2897
+ }
2898
+
2899
+ .tippy-box[data-theme~="tooltip"] {
2900
+ opacity: .9;
2901
+ background-color: var(--lookbook-tooltip);
2902
+ color: var(--lookbook-tooltip-text);
2903
+ font-size: .75rem;
2904
+ line-height: 1rem;
2905
+ }
2906
+
2907
+ .tippy-box[data-theme~="tooltip"][data-placement^="top"] > .tippy-arrow:before {
2908
+ border-top-color: var(--lookbook-tooltip);
2909
+ }
2910
+
2911
+ .tippy-box[data-theme~="tooltip"][data-placement^="bottom"] > .tippy-arrow:before {
2912
+ border-bottom-color: var(--lookbook-tooltip);
2913
+ }
2914
+
2915
+ .tippy-box[data-theme~="tooltip"][data-placement^="left"] > .tippy-arrow:before {
2916
+ border-left-color: var(--lookbook-tooltip);
2917
+ }
2918
+
2919
+ .tippy-box[data-theme~="tooltip"][data-placement^="right"] > .tippy-arrow:before {
2920
+ border-right-color: var(--lookbook-tooltip);
2921
+ }
2922
+
2923
+ .tippy-box[data-theme~="menu"] {
2924
+ --tw-bg-opacity: 1;
2925
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity) );
2926
+ --tw-text-opacity: 1;
2927
+ color: rgb(75 85 99 / var(--tw-text-opacity) );
2928
+ --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
2929
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
2930
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2931
+ border: 1px solid #d1d5db;
2932
+ }
2933
+
2934
+ .tippy-box[data-theme~="menu"] > .tippy-content {
2935
+ border-radius: .25rem;
2936
+ padding: 0;
2937
+ overflow: hidden;
2938
+ }
2939
+
2940
+ .tippy-box[data-theme~="menu"][data-placement^="top"] > .tippy-arrow:before {
2941
+ border-top-color: #fff;
2942
+ }
2943
+
2944
+ .tippy-box[data-theme~="menu"][data-placement^="bottom"] > .tippy-arrow:before {
2945
+ border-bottom-color: #fff;
2946
+ }
2947
+
2948
+ .tippy-box[data-theme~="menu"][data-placement^="left"] > .tippy-arrow:before {
2949
+ border-left-color: #fff;
2950
+ }
2951
+
2952
+ .tippy-box[data-theme~="menu"][data-placement^="right"] > .tippy-arrow:before {
2953
+ border-right-color: #fff;
2954
+ }
2955
+
2956
+ .hover\:bg-lookbook-draggable-hint:hover {
2957
+ background-color: var(--lookbook-draggable-hint);
2958
+ }
2959
+
2960
+ .hover\:bg-indigo-100:hover {
2961
+ --tw-bg-opacity: 1;
2962
+ background-color: rgb(224 231 255 / var(--tw-bg-opacity) );
2963
+ }
2964
+
2965
+ .hover\:bg-lookbook-nav-item-hover:hover {
2966
+ background-color: var(--lookbook-nav-item-hover);
2967
+ }
2968
+
2969
+ .hover\:text-gray-900:hover {
2970
+ --tw-text-opacity: 1;
2971
+ color: rgb(17 24 39 / var(--tw-text-opacity) );
2972
+ }
2973
+
2974
+ .hover\:text-indigo-800:hover {
2975
+ --tw-text-opacity: 1;
2976
+ color: rgb(55 48 163 / var(--tw-text-opacity) );
2977
+ }
2978
+
2979
+ .hover\:text-lookbook-button-text-hover:hover {
2980
+ color: var(--lookbook-button-text-hover);
2981
+ }
2982
+
2983
+ .hover\:text-lookbook-viewport-handle-icon-hover:hover {
2984
+ color: var(--lookbook-viewport-handle-icon-hover);
2985
+ }
2986
+
2987
+ .hover\:text-lookbook-tabs-text-hover:hover {
2988
+ color: var(--lookbook-tabs-text-hover);
2989
+ }
2990
+
2991
+ .hover\:underline:hover {
2992
+ text-decoration-line: underline;
2993
+ }
2994
+
2995
+ .hover\:opacity-100:hover {
2996
+ opacity: 1;
2997
+ }
2998
+
2999
+ .focus\:outline-none:focus {
3000
+ outline-offset: 2px;
3001
+ outline: 2px solid #0000;
3002
+ }
3003
+
3004
+ .focus\:ring-0:focus {
3005
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3006
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
3007
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3008
+ }
3009
+
3010
+ .focus\:ring-2:focus {
3011
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3012
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width) ) var(--tw-ring-color);
3013
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3014
+ }
3015
+
3016
+ .focus\:ring-offset-2:focus {
3017
+ --tw-ring-offset-width: 2px;
3018
+ }
3019
+
3020
+ .focus-visible\:outline-none:focus-visible {
3021
+ outline-offset: 2px;
3022
+ outline: 2px solid #0000;
3023
+ }
3024
+
3025
+ .prose-a\:text-lookbook-prose-link :is(:where(a):not(:where([class~="not-prose"] *))) {
3026
+ color: var(--lookbook-prose-link);
3027
+ }
3028
+
3029
+ @media (min-width: 768px) {
3030
+ .md\:px-10 {
3031
+ padding-left: 2.5rem;
3032
+ padding-right: 2.5rem;
3033
+ }
3034
+
3035
+ .md\:pt-10 {
3036
+ padding-top: 2.5rem;
3037
+ }
3038
+ }
3039
+
3040
+ /*# sourceMappingURL=lookbook.css.map */