tinacms 1.5.17 → 1.5.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/TinaCloudProvider.d.ts +3 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +13064 -1819
- package/dist/index.mjs +27834 -16567
- package/dist/internalClient/index.d.ts +15 -3
- package/dist/tina-cms.d.ts +0 -3
- package/dist/toolkit/alerts/alerts.d.ts +34 -0
- package/dist/toolkit/alerts/index.d.ts +1 -0
- package/dist/toolkit/browser-storage/browser-storage-client.d.ts +12 -0
- package/dist/toolkit/browser-storage/get-flattened-form-values.d.ts +2 -0
- package/dist/toolkit/browser-storage/index.d.ts +2 -0
- package/dist/toolkit/browser-storage/use-form-browser-cache.d.ts +2 -0
- package/dist/toolkit/components/active-field-indicator.d.ts +2 -0
- package/dist/toolkit/components/media/breadcrumb.d.ts +7 -0
- package/dist/toolkit/components/media/copy-field.d.ts +8 -0
- package/dist/toolkit/components/media/index.d.ts +6 -0
- package/dist/toolkit/components/media/media-item.d.ts +12 -0
- package/dist/toolkit/components/media/media-manager.d.ts +10 -0
- package/dist/toolkit/components/media/modal.d.ts +13 -0
- package/dist/toolkit/components/media/pagination.d.ts +9 -0
- package/dist/toolkit/components/media/utils.d.ts +4 -0
- package/dist/toolkit/components/mutation-signal.d.ts +12 -0
- package/dist/toolkit/components/tina-cms-provider.d.ts +8 -0
- package/dist/toolkit/components/tina-provider.d.ts +14 -0
- package/dist/toolkit/components/tina-ui.d.ts +13 -0
- package/dist/toolkit/core/cms.d.ts +156 -0
- package/dist/toolkit/core/event.d.ts +17 -0
- package/dist/toolkit/core/flags.d.ts +13 -0
- package/dist/toolkit/core/index.d.ts +7 -0
- package/dist/toolkit/core/media-store.default.d.ts +45 -0
- package/dist/toolkit/core/media.d.ts +138 -0
- package/dist/toolkit/core/plugins.d.ts +249 -0
- package/dist/toolkit/core/subscribable.d.ts +72 -0
- package/dist/toolkit/fields/components/button-toggle.d.ts +23 -0
- package/dist/toolkit/fields/components/checkbox-group.d.ts +22 -0
- package/dist/toolkit/fields/components/color-picker/color-formatter.d.ts +20 -0
- package/dist/toolkit/fields/components/color-picker/color-picker.d.ts +11 -0
- package/dist/toolkit/fields/components/color-picker/index.d.ts +1 -0
- package/dist/toolkit/fields/components/image-upload/image-upload.d.ts +23 -0
- package/dist/toolkit/fields/components/image-upload/index.d.ts +1 -0
- package/dist/toolkit/fields/components/index.d.ts +12 -0
- package/dist/toolkit/fields/components/input.d.ts +10 -0
- package/dist/toolkit/fields/components/number-input.d.ts +7 -0
- package/dist/toolkit/fields/components/radio-group.d.ts +21 -0
- package/dist/toolkit/fields/components/reference/index.d.ts +21 -0
- package/dist/toolkit/fields/components/reference/reference-link.d.ts +8 -0
- package/dist/toolkit/fields/components/reference/reference-select.d.ts +11 -0
- package/dist/toolkit/fields/components/select.d.ts +23 -0
- package/dist/toolkit/fields/components/text-field.d.ts +9 -0
- package/dist/toolkit/fields/components/textarea.d.ts +8 -0
- package/dist/toolkit/fields/components/toggle.d.ts +22 -0
- package/dist/toolkit/fields/field-events.d.ts +11 -0
- package/dist/toolkit/fields/index.d.ts +3 -0
- package/dist/toolkit/fields/plugins/blocks-field-plugin/block-selector-big.d.ts +9 -0
- package/dist/toolkit/fields/plugins/blocks-field-plugin/block-selector.d.ts +8 -0
- package/dist/toolkit/fields/plugins/blocks-field-plugin/index.d.ts +47 -0
- package/dist/toolkit/fields/plugins/button-toggle-field-plugin.d.ts +6 -0
- package/dist/toolkit/fields/plugins/checkbox-group-field-plugin.d.ts +7 -0
- package/dist/toolkit/fields/plugins/color-field-plugin.d.ts +14 -0
- package/dist/toolkit/fields/plugins/date-field-plugin.d.ts +14 -0
- package/dist/toolkit/fields/plugins/date-format.d.ts +5 -0
- package/dist/toolkit/fields/plugins/field-props.d.ts +6 -0
- package/dist/toolkit/fields/plugins/group-field-plugin.d.ts +36 -0
- package/dist/toolkit/fields/plugins/group-list-field-plugin.d.ts +57 -0
- package/dist/toolkit/fields/plugins/hidden-field-plugin.d.ts +7 -0
- package/dist/toolkit/fields/plugins/image-field-plugin.d.ts +15 -0
- package/dist/toolkit/fields/plugins/index.d.ts +19 -0
- package/dist/toolkit/fields/plugins/list-field-meta.d.ts +32 -0
- package/dist/toolkit/fields/plugins/list-field-plugin.d.ts +44 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/index.d.ts +20 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/monaco/error-message.d.ts +38 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/monaco/index.d.ts +4 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/monaco/use-debounce.d.ts +1 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/editor-context.d.ts +20 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/hooks/embed-hooks.d.ts +7 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/hooks/use-resize.d.ts +1 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/index.d.ts +3 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/nested-form.d.ts +10 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/autoformat/autoformat-block.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/autoformat/autoformat-lists.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/autoformat/autoformat-marks.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/autoformat/autoformat-rules.d.ts +1 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/autoformat/autoformat-utils.d.ts +6 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/common.d.ts +11 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/formatting.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/index.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/core/with-correct-void-behavior.d.ts +8 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-code-block/index.d.ts +3 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-img-plugin/component.d.ts +9 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-img-plugin/index.d.ts +5 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-invalid-markdown-plugin/index.d.ts +6 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-link-plugin/index.d.ts +14 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-mdx-plugins/component.d.ts +15 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/create-mdx-plugins/index.d.ts +9 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/soft-break/create-soft-break-plugin.d.ts +7 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/soft-break/index.d.ts +6 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/soft-break/on-key-down-soft-break.d.ts +5 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/soft-break/types.d.ts +11 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/autocomplete.d.ts +14 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/code-block/index.d.ts +9 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/components.d.ts +140 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/dropdown.d.ts +9 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/helpers.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/icons.d.ts +24 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/toolbar/floating-toolbar.d.ts +5 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/toolbar/index.d.ts +10 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/toolbar/overflow-menu.d.ts +6 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/toolbar/toolbar-item.d.ts +19 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/transforms/insert-empty-block.d.ts +2 -0
- package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/types.d.ts +9 -0
- package/dist/toolkit/fields/plugins/number-field-plugin.d.ts +15 -0
- package/dist/toolkit/fields/plugins/number-format.d.ts +1 -0
- package/dist/toolkit/fields/plugins/radio-group-field-plugin.d.ts +7 -0
- package/dist/toolkit/fields/plugins/reference-field-plugin.d.ts +9 -0
- package/dist/toolkit/fields/plugins/select-field-plugin.d.ts +9 -0
- package/dist/toolkit/fields/plugins/tags-field-plugin.d.ts +12 -0
- package/dist/toolkit/fields/plugins/text-field-plugin.d.ts +14 -0
- package/dist/toolkit/fields/plugins/text-format.d.ts +1 -0
- package/dist/toolkit/fields/plugins/textarea-field-plugin.d.ts +13 -0
- package/dist/toolkit/fields/plugins/toggle-field-plugin.d.ts +8 -0
- package/dist/toolkit/fields/plugins/wrap-field-with-meta.d.ts +36 -0
- package/dist/toolkit/form-builder/field-plugin.d.ts +14 -0
- package/dist/toolkit/form-builder/fields-builder.d.ts +13 -0
- package/dist/toolkit/form-builder/form-actions.d.ts +11 -0
- package/dist/toolkit/form-builder/form-builder.d.ts +32 -0
- package/dist/toolkit/form-builder/form-legacy.d.ts +8 -0
- package/dist/toolkit/form-builder/form-portal.d.ts +8 -0
- package/dist/toolkit/form-builder/form.d.ts +28 -0
- package/dist/toolkit/form-builder/index.d.ts +10 -0
- package/dist/toolkit/form-builder/loading-dots.d.ts +7 -0
- package/dist/toolkit/form-builder/reset-form.d.ts +10 -0
- package/dist/toolkit/forms/content-creator-plugin.d.ts +13 -0
- package/dist/toolkit/forms/field.d.ts +26 -0
- package/dist/toolkit/forms/form.d.ts +138 -0
- package/dist/toolkit/forms/index.d.ts +4 -0
- package/dist/toolkit/git-client/git-client.d.ts +92 -0
- package/dist/toolkit/git-client/git-file.d.ts +16 -0
- package/dist/toolkit/git-client/git-media-store.d.ts +11 -0
- package/dist/toolkit/git-client/index.d.ts +4 -0
- package/dist/toolkit/git-client/use-git-file.d.ts +2 -0
- package/dist/toolkit/hooks/use-field-reference.d.ts +12 -0
- package/dist/toolkit/hooks/use-local-storage.d.ts +1 -0
- package/dist/toolkit/icons/Add.d.ts +9 -0
- package/dist/toolkit/icons/Alert.d.ts +9 -0
- package/dist/toolkit/icons/AlignCenter.d.ts +9 -0
- package/dist/toolkit/icons/AlignLeft.d.ts +9 -0
- package/dist/toolkit/icons/AlignRight.d.ts +9 -0
- package/dist/toolkit/icons/Bold.d.ts +9 -0
- package/dist/toolkit/icons/ChevronDown.d.ts +9 -0
- package/dist/toolkit/icons/ChevronLeft.d.ts +9 -0
- package/dist/toolkit/icons/ChevronRight.d.ts +9 -0
- package/dist/toolkit/icons/ChevronUp.d.ts +9 -0
- package/dist/toolkit/icons/Circle.d.ts +9 -0
- package/dist/toolkit/icons/CircleCheck.d.ts +9 -0
- package/dist/toolkit/icons/Close.d.ts +9 -0
- package/dist/toolkit/icons/Code.d.ts +9 -0
- package/dist/toolkit/icons/Drag.d.ts +9 -0
- package/dist/toolkit/icons/Duplicate.d.ts +9 -0
- package/dist/toolkit/icons/Edit.d.ts +9 -0
- package/dist/toolkit/icons/EllipsisVertical.d.ts +9 -0
- package/dist/toolkit/icons/Error.d.ts +9 -0
- package/dist/toolkit/icons/Exit.d.ts +9 -0
- package/dist/toolkit/icons/File.d.ts +9 -0
- package/dist/toolkit/icons/Folder.d.ts +9 -0
- package/dist/toolkit/icons/Hamburger.d.ts +9 -0
- package/dist/toolkit/icons/Heading.d.ts +9 -0
- package/dist/toolkit/icons/Info.d.ts +9 -0
- package/dist/toolkit/icons/Italic.d.ts +9 -0
- package/dist/toolkit/icons/LeftArrow.d.ts +9 -0
- package/dist/toolkit/icons/Link.d.ts +9 -0
- package/dist/toolkit/icons/Lock.d.ts +9 -0
- package/dist/toolkit/icons/Markdown.d.ts +9 -0
- package/dist/toolkit/icons/Media.d.ts +9 -0
- package/dist/toolkit/icons/OrderedList.d.ts +9 -0
- package/dist/toolkit/icons/PullRequest.d.ts +9 -0
- package/dist/toolkit/icons/Quote.d.ts +9 -0
- package/dist/toolkit/icons/Redo.d.ts +9 -0
- package/dist/toolkit/icons/Reorder.d.ts +9 -0
- package/dist/toolkit/icons/ReorderRow.d.ts +9 -0
- package/dist/toolkit/icons/Reset.d.ts +9 -0
- package/dist/toolkit/icons/RightArrow.d.ts +9 -0
- package/dist/toolkit/icons/Settings.d.ts +9 -0
- package/dist/toolkit/icons/Strikethrough.d.ts +9 -0
- package/dist/toolkit/icons/Table.d.ts +9 -0
- package/dist/toolkit/icons/Tina.d.ts +9 -0
- package/dist/toolkit/icons/Trash.d.ts +9 -0
- package/dist/toolkit/icons/Underline.d.ts +9 -0
- package/dist/toolkit/icons/Undo.d.ts +9 -0
- package/dist/toolkit/icons/UnorderedList.d.ts +9 -0
- package/dist/toolkit/icons/Upload.d.ts +9 -0
- package/dist/toolkit/icons/Warning.d.ts +9 -0
- package/dist/toolkit/icons/index.d.ts +54 -0
- package/dist/toolkit/index.d.ts +40 -0
- package/dist/toolkit/plugin-branch-switcher/branch-banner.d.ts +2 -0
- package/dist/toolkit/plugin-branch-switcher/branch-button.d.ts +2 -0
- package/dist/toolkit/plugin-branch-switcher/branch-data.d.ts +11 -0
- package/dist/toolkit/plugin-branch-switcher/branch-modal.d.ts +6 -0
- package/dist/toolkit/plugin-branch-switcher/branch-switcher-legacy.d.ts +11 -0
- package/dist/toolkit/plugin-branch-switcher/branch-switcher.d.ts +6 -0
- package/dist/toolkit/plugin-branch-switcher/index.d.ts +6 -0
- package/dist/toolkit/plugin-branch-switcher/plugin.d.ts +14 -0
- package/dist/toolkit/plugin-branch-switcher/types.d.ts +30 -0
- package/dist/toolkit/plugin-fields/index.d.ts +1 -0
- package/dist/toolkit/plugin-fields/markdown.d.ts +11 -0
- package/dist/toolkit/plugin-form-meta/index.d.ts +7 -0
- package/dist/toolkit/plugin-screens/index.d.ts +16 -0
- package/dist/toolkit/plugin-screens/media-manager-screen.d.ts +3 -0
- package/dist/toolkit/react-alerts/alerts.d.ts +6 -0
- package/dist/toolkit/react-alerts/index.d.ts +1 -0
- package/dist/toolkit/react-cloud-config/cloud-config-plugin.d.ts +37 -0
- package/dist/toolkit/react-cloud-config/index.d.ts +2 -0
- package/dist/toolkit/react-cloud-config/use-cloud-config-plugin.d.ts +3 -0
- package/dist/toolkit/react-core/index.d.ts +7 -0
- package/dist/toolkit/react-core/tina-error-boundary.d.ts +21 -0
- package/dist/toolkit/react-core/use-cms-event.d.ts +8 -0
- package/dist/toolkit/react-core/use-cms.d.ts +10 -0
- package/dist/toolkit/react-core/use-form.d.ts +14 -0
- package/dist/toolkit/react-core/use-plugin.d.ts +12 -0
- package/dist/toolkit/react-core/use-subscribable.d.ts +10 -0
- package/dist/toolkit/react-core/use-watch-form-values.d.ts +6 -0
- package/dist/toolkit/react-core/with-plugin.d.ts +18 -0
- package/dist/toolkit/react-datetime/DateTime.d.ts +126 -0
- package/dist/toolkit/react-datetime/parts/ViewNavigation.d.ts +8 -0
- package/dist/toolkit/react-datetime/views/DaysView.d.ts +15 -0
- package/dist/toolkit/react-datetime/views/MonthsView.d.ts +11 -0
- package/dist/toolkit/react-datetime/views/TimeView.d.ts +23 -0
- package/dist/toolkit/react-datetime/views/YearsView.d.ts +16 -0
- package/dist/toolkit/react-dismissible/dismissible.d.ts +32 -0
- package/dist/toolkit/react-dismissible/index.d.ts +1 -0
- package/dist/toolkit/react-forms/form-modal.d.ts +2 -0
- package/dist/toolkit/react-forms/index.d.ts +1 -0
- package/dist/toolkit/react-modals/fullscreen-modal.d.ts +15 -0
- package/dist/toolkit/react-modals/index.d.ts +4 -0
- package/dist/toolkit/react-modals/modal/index.d.ts +5 -0
- package/dist/toolkit/react-modals/modal/modal-actions.d.ts +4 -0
- package/dist/toolkit/react-modals/modal/modal-body.d.ts +6 -0
- package/dist/toolkit/react-modals/modal/modal-header.d.ts +6 -0
- package/dist/toolkit/react-modals/modal/modal-overlay.d.ts +4 -0
- package/dist/toolkit/react-modals/modal/modal.d.ts +3 -0
- package/dist/toolkit/react-modals/modal-provider.d.ts +6 -0
- package/dist/toolkit/react-modals/popup-modal.d.ts +15 -0
- package/dist/toolkit/react-screens/components/screen-plugin-modal.d.ts +7 -0
- package/dist/toolkit/react-screens/index.d.ts +3 -0
- package/dist/toolkit/react-screens/screen-plugin.d.ts +42 -0
- package/dist/toolkit/react-screens/use-screen-plugin.d.ts +3 -0
- package/dist/toolkit/react-sidebar/components/form-list.d.ts +25 -0
- package/dist/toolkit/react-sidebar/components/local-warning.d.ts +3 -0
- package/dist/toolkit/react-sidebar/components/nav.d.ts +34 -0
- package/dist/toolkit/react-sidebar/components/no-forms-placeholder.d.ts +8 -0
- package/dist/toolkit/react-sidebar/components/resize-handle.d.ts +7 -0
- package/dist/toolkit/react-sidebar/components/sidebar-body.d.ts +19 -0
- package/dist/toolkit/react-sidebar/components/sidebar.d.ts +26 -0
- package/dist/toolkit/react-sidebar/components/sync-status.d.ts +31 -0
- package/dist/toolkit/react-sidebar/index.d.ts +5 -0
- package/dist/toolkit/react-sidebar/sidebar.d.ts +34 -0
- package/dist/toolkit/react-tinacms/index.d.ts +10 -0
- package/dist/toolkit/react-tinacms/use-cms.d.ts +3 -0
- package/dist/toolkit/react-tinacms/use-form.d.ts +12 -0
- package/dist/toolkit/react-tinacms/use-plugin.d.ts +1 -0
- package/dist/toolkit/react-tinacms/use-subscribable.d.ts +1 -0
- package/dist/toolkit/react-tinacms/use-watch-form-values.d.ts +1 -0
- package/dist/toolkit/react-tinacms/with-plugin.d.ts +1 -0
- package/dist/toolkit/react-tinacms/with-tina.d.ts +3 -0
- package/dist/toolkit/styles/button.d.ts +15 -0
- package/dist/toolkit/styles/container.d.ts +7 -0
- package/dist/toolkit/styles/font-loader.d.ts +1 -0
- package/dist/toolkit/styles/index.d.ts +4 -0
- package/dist/toolkit/styles/message.d.ts +9 -0
- package/dist/toolkit/styles/overflow-menu.d.ts +6 -0
- package/dist/toolkit/tina-cms.d.ts +41 -0
- package/dist/toolkit/tina-state.d.ts +84 -0
- package/dist/types/cms.d.ts +2 -1
- package/dist/utils/index.d.ts +1 -0
- package/package.json +60 -14
- package/dist/style.css +0 -1536
package/dist/style.css
DELETED
|
@@ -1,1536 +0,0 @@
|
|
|
1
|
-
.tina-tailwind {
|
|
2
|
-
line-height: 1.5;
|
|
3
|
-
-webkit-text-size-adjust: 100%;
|
|
4
|
-
-moz-tab-size: 4;
|
|
5
|
-
tab-size: 4;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.tina-tailwind *,
|
|
9
|
-
.tina-tailwind ::before,
|
|
10
|
-
.tina-tailwind ::after {
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
border-width: 0;
|
|
13
|
-
border-style: solid;
|
|
14
|
-
border-color: transparent;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.tina-tailwind ::before,
|
|
18
|
-
.tina-tailwind ::after {
|
|
19
|
-
--tw-content: '';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.tina-tailwind hr {
|
|
23
|
-
height: 0; /* 1 */
|
|
24
|
-
color: inherit; /* 2 */
|
|
25
|
-
border-top-width: 1px; /* 3 */
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.tina-tailwind abbr:where([title]) {
|
|
29
|
-
text-decoration: underline dotted;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.tina-tailwind h1,
|
|
33
|
-
.tina-tailwind h2,
|
|
34
|
-
.tina-tailwind h3,
|
|
35
|
-
.tina-tailwind h4,
|
|
36
|
-
.tina-tailwind h5,
|
|
37
|
-
.tina-tailwind h6 {
|
|
38
|
-
font-size: inherit;
|
|
39
|
-
font-weight: inherit;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.tina-tailwind a {
|
|
43
|
-
color: inherit;
|
|
44
|
-
text-decoration: inherit;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.tina-tailwind b,
|
|
48
|
-
.tina-tailwind strong {
|
|
49
|
-
font-weight: bolder;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.tina-tailwind code,
|
|
53
|
-
.tina-tailwind kbd,
|
|
54
|
-
.tina-tailwind samp,
|
|
55
|
-
.tina-tailwind pre {
|
|
56
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
57
|
-
font-size: 1em; /* 2 */
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.tina-tailwind small {
|
|
61
|
-
font-size: 80%;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.tina-tailwind sub,
|
|
65
|
-
.tina-tailwind sup {
|
|
66
|
-
font-size: 75%;
|
|
67
|
-
line-height: 0;
|
|
68
|
-
position: relative;
|
|
69
|
-
vertical-align: baseline;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.tina-tailwind sub {
|
|
73
|
-
bottom: -0.25em;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.tina-tailwind sup {
|
|
77
|
-
top: -0.5em;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.tina-tailwind table {
|
|
81
|
-
text-indent: 0; /* 1 */
|
|
82
|
-
border-color: inherit; /* 2 */
|
|
83
|
-
border-collapse: collapse; /* 3 */
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.tina-tailwind button,
|
|
87
|
-
.tina-tailwind input,
|
|
88
|
-
.tina-tailwind optgroup,
|
|
89
|
-
.tina-tailwind select,
|
|
90
|
-
.tina-tailwind textarea {
|
|
91
|
-
font-family: inherit; /* 1 */
|
|
92
|
-
font-size: 100%; /* 1 */
|
|
93
|
-
line-height: inherit; /* 1 */
|
|
94
|
-
color: inherit; /* 1 */
|
|
95
|
-
margin: 0; /* 2 */
|
|
96
|
-
padding: 0; /* 3 */
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.tina-tailwind button,
|
|
100
|
-
.tina-tailwind select {
|
|
101
|
-
text-transform: none;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.tina-tailwind button,
|
|
105
|
-
.tina-tailwind [type='button'],
|
|
106
|
-
.tina-tailwind [type='reset'],
|
|
107
|
-
.tina-tailwind [type='submit'] {
|
|
108
|
-
-webkit-appearance: button; /* 1 */
|
|
109
|
-
background-color: transparent; /* 2 */
|
|
110
|
-
background-image: none; /* 2 */
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.tina-tailwind :-moz-focusring {
|
|
114
|
-
outline: auto;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.tina-tailwind :-moz-ui-invalid {
|
|
118
|
-
box-shadow: none;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.tina-tailwind progress {
|
|
122
|
-
vertical-align: baseline;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.tina-tailwind ::-webkit-inner-spin-button,
|
|
126
|
-
.tina-tailwind ::-webkit-outer-spin-button {
|
|
127
|
-
height: auto;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.tina-tailwind [type='search'] {
|
|
131
|
-
-webkit-appearance: textfield; /* 1 */
|
|
132
|
-
outline-offset: -2px; /* 2 */
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.tina-tailwind ::-webkit-search-decoration {
|
|
136
|
-
-webkit-appearance: none;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.tina-tailwind ::-webkit-file-upload-button {
|
|
140
|
-
-webkit-appearance: button; /* 1 */
|
|
141
|
-
font: inherit; /* 2 */
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.tina-tailwind summary {
|
|
145
|
-
display: list-item;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.tina-tailwind blockquote,
|
|
149
|
-
.tina-tailwind dl,
|
|
150
|
-
.tina-tailwind dd,
|
|
151
|
-
.tina-tailwind h1,
|
|
152
|
-
.tina-tailwind h2,
|
|
153
|
-
.tina-tailwind h3,
|
|
154
|
-
.tina-tailwind h4,
|
|
155
|
-
.tina-tailwind h5,
|
|
156
|
-
.tina-tailwind h6,
|
|
157
|
-
.tina-tailwind hr,
|
|
158
|
-
.tina-tailwind figure,
|
|
159
|
-
.tina-tailwind p,
|
|
160
|
-
.tina-tailwind pre {
|
|
161
|
-
margin: 0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.tina-tailwind fieldset {
|
|
165
|
-
margin: 0;
|
|
166
|
-
padding: 0;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.tina-tailwind legend {
|
|
170
|
-
padding: 0;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.tina-tailwind ol,
|
|
174
|
-
.tina-tailwind ul,
|
|
175
|
-
.tina-tailwind menu {
|
|
176
|
-
list-style: none;
|
|
177
|
-
margin: 0;
|
|
178
|
-
padding: 0;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.tina-tailwind li:before {
|
|
182
|
-
display: none;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.tina-tailwind textarea {
|
|
186
|
-
resize: vertical;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.tina-tailwind input::placeholder,
|
|
190
|
-
.tina-tailwind textarea::placeholder {
|
|
191
|
-
opacity: 1; /* 1 */
|
|
192
|
-
color: #918c9e; /* 2 */
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.tina-tailwind button,
|
|
196
|
-
.tina-tailwind [role='button'] {
|
|
197
|
-
cursor: pointer;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.tina-tailwind :disabled {
|
|
201
|
-
cursor: default;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.tina-tailwind img,
|
|
205
|
-
.tina-tailwind svg,
|
|
206
|
-
.tina-tailwind video,
|
|
207
|
-
.tina-tailwind canvas,
|
|
208
|
-
.tina-tailwind audio,
|
|
209
|
-
.tina-tailwind iframe,
|
|
210
|
-
.tina-tailwind embed,
|
|
211
|
-
.tina-tailwind object {
|
|
212
|
-
display: block; /* 1 */
|
|
213
|
-
vertical-align: middle; /* 2 */
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.tina-tailwind img,
|
|
217
|
-
.tina-tailwind video {
|
|
218
|
-
max-width: 100%;
|
|
219
|
-
height: auto;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.tina-tailwind [hidden] {
|
|
223
|
-
display: none;
|
|
224
|
-
}
|
|
225
|
-
*, ::before, ::after {
|
|
226
|
-
--tw-border-spacing-x: 0;
|
|
227
|
-
--tw-border-spacing-y: 0;
|
|
228
|
-
--tw-translate-x: 0;
|
|
229
|
-
--tw-translate-y: 0;
|
|
230
|
-
--tw-rotate: 0;
|
|
231
|
-
--tw-skew-x: 0;
|
|
232
|
-
--tw-skew-y: 0;
|
|
233
|
-
--tw-scale-x: 1;
|
|
234
|
-
--tw-scale-y: 1;
|
|
235
|
-
--tw-pan-x: ;
|
|
236
|
-
--tw-pan-y: ;
|
|
237
|
-
--tw-pinch-zoom: ;
|
|
238
|
-
--tw-scroll-snap-strictness: proximity;
|
|
239
|
-
--tw-ordinal: ;
|
|
240
|
-
--tw-slashed-zero: ;
|
|
241
|
-
--tw-numeric-figure: ;
|
|
242
|
-
--tw-numeric-spacing: ;
|
|
243
|
-
--tw-numeric-fraction: ;
|
|
244
|
-
--tw-ring-inset: ;
|
|
245
|
-
--tw-ring-offset-width: 0px;
|
|
246
|
-
--tw-ring-offset-color: #fff;
|
|
247
|
-
--tw-ring-color: rgb(0 132 255 / 0.5);
|
|
248
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
249
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
250
|
-
--tw-shadow: 0 0 #0000;
|
|
251
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
252
|
-
--tw-blur: ;
|
|
253
|
-
--tw-brightness: ;
|
|
254
|
-
--tw-contrast: ;
|
|
255
|
-
--tw-grayscale: ;
|
|
256
|
-
--tw-hue-rotate: ;
|
|
257
|
-
--tw-invert: ;
|
|
258
|
-
--tw-saturate: ;
|
|
259
|
-
--tw-sepia: ;
|
|
260
|
-
--tw-drop-shadow: ;
|
|
261
|
-
--tw-backdrop-blur: ;
|
|
262
|
-
--tw-backdrop-brightness: ;
|
|
263
|
-
--tw-backdrop-contrast: ;
|
|
264
|
-
--tw-backdrop-grayscale: ;
|
|
265
|
-
--tw-backdrop-hue-rotate: ;
|
|
266
|
-
--tw-backdrop-invert: ;
|
|
267
|
-
--tw-backdrop-opacity: ;
|
|
268
|
-
--tw-backdrop-saturate: ;
|
|
269
|
-
--tw-backdrop-sepia: ;
|
|
270
|
-
}
|
|
271
|
-
::backdrop {
|
|
272
|
-
--tw-border-spacing-x: 0;
|
|
273
|
-
--tw-border-spacing-y: 0;
|
|
274
|
-
--tw-translate-x: 0;
|
|
275
|
-
--tw-translate-y: 0;
|
|
276
|
-
--tw-rotate: 0;
|
|
277
|
-
--tw-skew-x: 0;
|
|
278
|
-
--tw-skew-y: 0;
|
|
279
|
-
--tw-scale-x: 1;
|
|
280
|
-
--tw-scale-y: 1;
|
|
281
|
-
--tw-pan-x: ;
|
|
282
|
-
--tw-pan-y: ;
|
|
283
|
-
--tw-pinch-zoom: ;
|
|
284
|
-
--tw-scroll-snap-strictness: proximity;
|
|
285
|
-
--tw-ordinal: ;
|
|
286
|
-
--tw-slashed-zero: ;
|
|
287
|
-
--tw-numeric-figure: ;
|
|
288
|
-
--tw-numeric-spacing: ;
|
|
289
|
-
--tw-numeric-fraction: ;
|
|
290
|
-
--tw-ring-inset: ;
|
|
291
|
-
--tw-ring-offset-width: 0px;
|
|
292
|
-
--tw-ring-offset-color: #fff;
|
|
293
|
-
--tw-ring-color: rgb(0 132 255 / 0.5);
|
|
294
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
295
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
296
|
-
--tw-shadow: 0 0 #0000;
|
|
297
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
298
|
-
--tw-blur: ;
|
|
299
|
-
--tw-brightness: ;
|
|
300
|
-
--tw-contrast: ;
|
|
301
|
-
--tw-grayscale: ;
|
|
302
|
-
--tw-hue-rotate: ;
|
|
303
|
-
--tw-invert: ;
|
|
304
|
-
--tw-saturate: ;
|
|
305
|
-
--tw-sepia: ;
|
|
306
|
-
--tw-drop-shadow: ;
|
|
307
|
-
--tw-backdrop-blur: ;
|
|
308
|
-
--tw-backdrop-brightness: ;
|
|
309
|
-
--tw-backdrop-contrast: ;
|
|
310
|
-
--tw-backdrop-grayscale: ;
|
|
311
|
-
--tw-backdrop-hue-rotate: ;
|
|
312
|
-
--tw-backdrop-invert: ;
|
|
313
|
-
--tw-backdrop-opacity: ;
|
|
314
|
-
--tw-backdrop-saturate: ;
|
|
315
|
-
--tw-backdrop-sepia: ;
|
|
316
|
-
}
|
|
317
|
-
.tina-prose {
|
|
318
|
-
color: var(--tw-prose-body);
|
|
319
|
-
max-width: 65ch;
|
|
320
|
-
}
|
|
321
|
-
.tina-prose :where([class~="lead"]):not(:where([class~="not-tina-prose"] *)) {
|
|
322
|
-
color: var(--tw-prose-lead);
|
|
323
|
-
font-size: 1.25em;
|
|
324
|
-
line-height: 1.6;
|
|
325
|
-
margin-top: 1.2em;
|
|
326
|
-
margin-bottom: 1.2em;
|
|
327
|
-
}
|
|
328
|
-
.tina-prose :where(a):not(:where([class~="not-tina-prose"] *)) {
|
|
329
|
-
color: var(--tw-prose-links);
|
|
330
|
-
text-decoration: underline;
|
|
331
|
-
font-weight: 500;
|
|
332
|
-
}
|
|
333
|
-
.tina-prose :where(strong):not(:where([class~="not-tina-prose"] *)) {
|
|
334
|
-
color: var(--tw-prose-bold);
|
|
335
|
-
font-weight: 600;
|
|
336
|
-
}
|
|
337
|
-
.tina-prose :where(ol):not(:where([class~="not-tina-prose"] *)) {
|
|
338
|
-
list-style-type: decimal;
|
|
339
|
-
padding-left: 1.625em;
|
|
340
|
-
}
|
|
341
|
-
.tina-prose :where(ol[type="A"]):not(:where([class~="not-tina-prose"] *)) {
|
|
342
|
-
list-style-type: upper-alpha;
|
|
343
|
-
}
|
|
344
|
-
.tina-prose :where(ol[type="a"]):not(:where([class~="not-tina-prose"] *)) {
|
|
345
|
-
list-style-type: lower-alpha;
|
|
346
|
-
}
|
|
347
|
-
.tina-prose :where(ol[type="A" s]):not(:where([class~="not-tina-prose"] *)) {
|
|
348
|
-
list-style-type: upper-alpha;
|
|
349
|
-
}
|
|
350
|
-
.tina-prose :where(ol[type="a" s]):not(:where([class~="not-tina-prose"] *)) {
|
|
351
|
-
list-style-type: lower-alpha;
|
|
352
|
-
}
|
|
353
|
-
.tina-prose :where(ol[type="I"]):not(:where([class~="not-tina-prose"] *)) {
|
|
354
|
-
list-style-type: upper-roman;
|
|
355
|
-
}
|
|
356
|
-
.tina-prose :where(ol[type="i"]):not(:where([class~="not-tina-prose"] *)) {
|
|
357
|
-
list-style-type: lower-roman;
|
|
358
|
-
}
|
|
359
|
-
.tina-prose :where(ol[type="I" s]):not(:where([class~="not-tina-prose"] *)) {
|
|
360
|
-
list-style-type: upper-roman;
|
|
361
|
-
}
|
|
362
|
-
.tina-prose :where(ol[type="i" s]):not(:where([class~="not-tina-prose"] *)) {
|
|
363
|
-
list-style-type: lower-roman;
|
|
364
|
-
}
|
|
365
|
-
.tina-prose :where(ol[type="1"]):not(:where([class~="not-tina-prose"] *)) {
|
|
366
|
-
list-style-type: decimal;
|
|
367
|
-
}
|
|
368
|
-
.tina-prose :where(ul):not(:where([class~="not-tina-prose"] *)) {
|
|
369
|
-
list-style-type: disc;
|
|
370
|
-
padding-left: 1.625em;
|
|
371
|
-
}
|
|
372
|
-
.tina-prose :where(ol > li):not(:where([class~="not-tina-prose"] *))::marker {
|
|
373
|
-
font-weight: 400;
|
|
374
|
-
color: var(--tw-prose-counters);
|
|
375
|
-
}
|
|
376
|
-
.tina-prose :where(ul > li):not(:where([class~="not-tina-prose"] *))::marker {
|
|
377
|
-
color: var(--tw-prose-bullets);
|
|
378
|
-
}
|
|
379
|
-
.tina-prose :where(hr):not(:where([class~="not-tina-prose"] *)) {
|
|
380
|
-
border-color: var(--tw-prose-hr);
|
|
381
|
-
border-top-width: 1px;
|
|
382
|
-
margin-top: 3em;
|
|
383
|
-
margin-bottom: 3em;
|
|
384
|
-
}
|
|
385
|
-
.tina-prose :where(blockquote):not(:where([class~="not-tina-prose"] *)) {
|
|
386
|
-
font-weight: 500;
|
|
387
|
-
font-style: italic;
|
|
388
|
-
color: var(--tw-prose-quotes);
|
|
389
|
-
border-left-width: 0.25rem;
|
|
390
|
-
border-left-color: var(--tw-prose-quote-borders);
|
|
391
|
-
quotes: "\201C""\201D""\2018""\2019";
|
|
392
|
-
margin-top: 1.6em;
|
|
393
|
-
margin-bottom: 1.6em;
|
|
394
|
-
padding-left: 1em;
|
|
395
|
-
}
|
|
396
|
-
.tina-prose :where(blockquote p:first-of-type):not(:where([class~="not-tina-prose"] *))::before {
|
|
397
|
-
content: open-quote;
|
|
398
|
-
}
|
|
399
|
-
.tina-prose :where(blockquote p:last-of-type):not(:where([class~="not-tina-prose"] *))::after {
|
|
400
|
-
content: close-quote;
|
|
401
|
-
}
|
|
402
|
-
.tina-prose :where(h1):not(:where([class~="not-tina-prose"] *)) {
|
|
403
|
-
color: var(--tw-prose-headings);
|
|
404
|
-
font-weight: 800;
|
|
405
|
-
font-size: 2.25em;
|
|
406
|
-
margin-top: 0;
|
|
407
|
-
margin-bottom: 0.8888889em;
|
|
408
|
-
line-height: 1.1111111;
|
|
409
|
-
}
|
|
410
|
-
.tina-prose :where(h1 strong):not(:where([class~="not-tina-prose"] *)) {
|
|
411
|
-
font-weight: 900;
|
|
412
|
-
}
|
|
413
|
-
.tina-prose :where(h2):not(:where([class~="not-tina-prose"] *)) {
|
|
414
|
-
color: var(--tw-prose-headings);
|
|
415
|
-
font-weight: 700;
|
|
416
|
-
font-size: 1.5em;
|
|
417
|
-
margin-top: 2em;
|
|
418
|
-
margin-bottom: 1em;
|
|
419
|
-
line-height: 1.3333333;
|
|
420
|
-
}
|
|
421
|
-
.tina-prose :where(h2 strong):not(:where([class~="not-tina-prose"] *)) {
|
|
422
|
-
font-weight: 800;
|
|
423
|
-
}
|
|
424
|
-
.tina-prose :where(h3):not(:where([class~="not-tina-prose"] *)) {
|
|
425
|
-
color: var(--tw-prose-headings);
|
|
426
|
-
font-weight: 600;
|
|
427
|
-
font-size: 1.25em;
|
|
428
|
-
margin-top: 1.6em;
|
|
429
|
-
margin-bottom: 0.6em;
|
|
430
|
-
line-height: 1.6;
|
|
431
|
-
}
|
|
432
|
-
.tina-prose :where(h3 strong):not(:where([class~="not-tina-prose"] *)) {
|
|
433
|
-
font-weight: 700;
|
|
434
|
-
}
|
|
435
|
-
.tina-prose :where(h4):not(:where([class~="not-tina-prose"] *)) {
|
|
436
|
-
color: var(--tw-prose-headings);
|
|
437
|
-
font-weight: 600;
|
|
438
|
-
margin-top: 1.5em;
|
|
439
|
-
margin-bottom: 0.5em;
|
|
440
|
-
line-height: 1.5;
|
|
441
|
-
}
|
|
442
|
-
.tina-prose :where(h4 strong):not(:where([class~="not-tina-prose"] *)) {
|
|
443
|
-
font-weight: 700;
|
|
444
|
-
}
|
|
445
|
-
.tina-prose :where(figure > *):not(:where([class~="not-tina-prose"] *)) {
|
|
446
|
-
margin-top: 0;
|
|
447
|
-
margin-bottom: 0;
|
|
448
|
-
}
|
|
449
|
-
.tina-prose :where(figcaption):not(:where([class~="not-tina-prose"] *)) {
|
|
450
|
-
color: var(--tw-prose-captions);
|
|
451
|
-
font-size: 0.875em;
|
|
452
|
-
line-height: 1.4285714;
|
|
453
|
-
margin-top: 0.8571429em;
|
|
454
|
-
}
|
|
455
|
-
.tina-prose :where(code):not(:where([class~="not-tina-prose"] *)) {
|
|
456
|
-
color: var(--tw-prose-code);
|
|
457
|
-
font-weight: 600;
|
|
458
|
-
font-size: 0.875em;
|
|
459
|
-
}
|
|
460
|
-
.tina-prose :where(code):not(:where([class~="not-tina-prose"] *))::before {
|
|
461
|
-
content: "`";
|
|
462
|
-
}
|
|
463
|
-
.tina-prose :where(code):not(:where([class~="not-tina-prose"] *))::after {
|
|
464
|
-
content: "`";
|
|
465
|
-
}
|
|
466
|
-
.tina-prose :where(a code):not(:where([class~="not-tina-prose"] *)) {
|
|
467
|
-
color: var(--tw-prose-links);
|
|
468
|
-
}
|
|
469
|
-
.tina-prose :where(pre):not(:where([class~="not-tina-prose"] *)) {
|
|
470
|
-
color: var(--tw-prose-pre-code);
|
|
471
|
-
background-color: var(--tw-prose-pre-bg);
|
|
472
|
-
overflow-x: auto;
|
|
473
|
-
font-weight: 400;
|
|
474
|
-
font-size: 0.875em;
|
|
475
|
-
line-height: 1.7142857;
|
|
476
|
-
margin-top: 1.7142857em;
|
|
477
|
-
margin-bottom: 1.7142857em;
|
|
478
|
-
border-radius: 0.375rem;
|
|
479
|
-
padding-top: 0.8571429em;
|
|
480
|
-
padding-right: 1.1428571em;
|
|
481
|
-
padding-bottom: 0.8571429em;
|
|
482
|
-
padding-left: 1.1428571em;
|
|
483
|
-
}
|
|
484
|
-
.tina-prose :where(pre code):not(:where([class~="not-tina-prose"] *)) {
|
|
485
|
-
background-color: transparent;
|
|
486
|
-
border-width: 0;
|
|
487
|
-
border-radius: 0;
|
|
488
|
-
padding: 0;
|
|
489
|
-
font-weight: inherit;
|
|
490
|
-
color: inherit;
|
|
491
|
-
font-size: inherit;
|
|
492
|
-
font-family: inherit;
|
|
493
|
-
line-height: inherit;
|
|
494
|
-
}
|
|
495
|
-
.tina-prose :where(pre code):not(:where([class~="not-tina-prose"] *))::before {
|
|
496
|
-
content: none;
|
|
497
|
-
}
|
|
498
|
-
.tina-prose :where(pre code):not(:where([class~="not-tina-prose"] *))::after {
|
|
499
|
-
content: none;
|
|
500
|
-
}
|
|
501
|
-
.tina-prose :where(table):not(:where([class~="not-tina-prose"] *)) {
|
|
502
|
-
width: 100%;
|
|
503
|
-
table-layout: auto;
|
|
504
|
-
text-align: left;
|
|
505
|
-
margin-top: 2em;
|
|
506
|
-
margin-bottom: 2em;
|
|
507
|
-
font-size: 0.875em;
|
|
508
|
-
line-height: 1.7142857;
|
|
509
|
-
}
|
|
510
|
-
.tina-prose :where(thead):not(:where([class~="not-tina-prose"] *)) {
|
|
511
|
-
border-bottom-width: 1px;
|
|
512
|
-
border-bottom-color: var(--tw-prose-th-borders);
|
|
513
|
-
}
|
|
514
|
-
.tina-prose :where(thead th):not(:where([class~="not-tina-prose"] *)) {
|
|
515
|
-
color: var(--tw-prose-headings);
|
|
516
|
-
font-weight: 600;
|
|
517
|
-
vertical-align: bottom;
|
|
518
|
-
padding-right: 0.5714286em;
|
|
519
|
-
padding-bottom: 0.5714286em;
|
|
520
|
-
padding-left: 0.5714286em;
|
|
521
|
-
}
|
|
522
|
-
.tina-prose :where(tbody tr):not(:where([class~="not-tina-prose"] *)) {
|
|
523
|
-
border-bottom-width: 1px;
|
|
524
|
-
border-bottom-color: var(--tw-prose-td-borders);
|
|
525
|
-
}
|
|
526
|
-
.tina-prose :where(tbody tr:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
527
|
-
border-bottom-width: 0;
|
|
528
|
-
}
|
|
529
|
-
.tina-prose :where(tbody td):not(:where([class~="not-tina-prose"] *)) {
|
|
530
|
-
vertical-align: baseline;
|
|
531
|
-
padding-top: 0.5714286em;
|
|
532
|
-
padding-right: 0.5714286em;
|
|
533
|
-
padding-bottom: 0.5714286em;
|
|
534
|
-
padding-left: 0.5714286em;
|
|
535
|
-
}
|
|
536
|
-
.tina-prose {
|
|
537
|
-
--tw-prose-body: #374151;
|
|
538
|
-
--tw-prose-headings: #111827;
|
|
539
|
-
--tw-prose-lead: #4b5563;
|
|
540
|
-
--tw-prose-links: #111827;
|
|
541
|
-
--tw-prose-bold: #111827;
|
|
542
|
-
--tw-prose-counters: #6b7280;
|
|
543
|
-
--tw-prose-bullets: #d1d5db;
|
|
544
|
-
--tw-prose-hr: #e5e7eb;
|
|
545
|
-
--tw-prose-quotes: #111827;
|
|
546
|
-
--tw-prose-quote-borders: #e5e7eb;
|
|
547
|
-
--tw-prose-captions: #6b7280;
|
|
548
|
-
--tw-prose-code: #111827;
|
|
549
|
-
--tw-prose-pre-code: #e5e7eb;
|
|
550
|
-
--tw-prose-pre-bg: #1f2937;
|
|
551
|
-
--tw-prose-th-borders: #d1d5db;
|
|
552
|
-
--tw-prose-td-borders: #e5e7eb;
|
|
553
|
-
--tw-prose-invert-body: #d1d5db;
|
|
554
|
-
--tw-prose-invert-headings: #fff;
|
|
555
|
-
--tw-prose-invert-lead: #9ca3af;
|
|
556
|
-
--tw-prose-invert-links: #fff;
|
|
557
|
-
--tw-prose-invert-bold: #fff;
|
|
558
|
-
--tw-prose-invert-counters: #9ca3af;
|
|
559
|
-
--tw-prose-invert-bullets: #4b5563;
|
|
560
|
-
--tw-prose-invert-hr: #374151;
|
|
561
|
-
--tw-prose-invert-quotes: #f3f4f6;
|
|
562
|
-
--tw-prose-invert-quote-borders: #374151;
|
|
563
|
-
--tw-prose-invert-captions: #9ca3af;
|
|
564
|
-
--tw-prose-invert-code: #fff;
|
|
565
|
-
--tw-prose-invert-pre-code: #d1d5db;
|
|
566
|
-
--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
|
|
567
|
-
--tw-prose-invert-th-borders: #4b5563;
|
|
568
|
-
--tw-prose-invert-td-borders: #374151;
|
|
569
|
-
font-size: 1rem;
|
|
570
|
-
line-height: 1.75;
|
|
571
|
-
}
|
|
572
|
-
.tina-prose :where(p):not(:where([class~="not-tina-prose"] *)) {
|
|
573
|
-
margin-top: 1.25em;
|
|
574
|
-
margin-bottom: 1.25em;
|
|
575
|
-
}
|
|
576
|
-
.tina-prose :where(img):not(:where([class~="not-tina-prose"] *)) {
|
|
577
|
-
margin-top: 2em;
|
|
578
|
-
margin-bottom: 2em;
|
|
579
|
-
}
|
|
580
|
-
.tina-prose :where(video):not(:where([class~="not-tina-prose"] *)) {
|
|
581
|
-
margin-top: 2em;
|
|
582
|
-
margin-bottom: 2em;
|
|
583
|
-
}
|
|
584
|
-
.tina-prose :where(figure):not(:where([class~="not-tina-prose"] *)) {
|
|
585
|
-
margin-top: 2em;
|
|
586
|
-
margin-bottom: 2em;
|
|
587
|
-
}
|
|
588
|
-
.tina-prose :where(h2 code):not(:where([class~="not-tina-prose"] *)) {
|
|
589
|
-
font-size: 0.875em;
|
|
590
|
-
}
|
|
591
|
-
.tina-prose :where(h3 code):not(:where([class~="not-tina-prose"] *)) {
|
|
592
|
-
font-size: 0.9em;
|
|
593
|
-
}
|
|
594
|
-
.tina-prose :where(li):not(:where([class~="not-tina-prose"] *)) {
|
|
595
|
-
margin-top: 0.5em;
|
|
596
|
-
margin-bottom: 0.5em;
|
|
597
|
-
}
|
|
598
|
-
.tina-prose :where(ol > li):not(:where([class~="not-tina-prose"] *)) {
|
|
599
|
-
padding-left: 0.375em;
|
|
600
|
-
}
|
|
601
|
-
.tina-prose :where(ul > li):not(:where([class~="not-tina-prose"] *)) {
|
|
602
|
-
padding-left: 0.375em;
|
|
603
|
-
}
|
|
604
|
-
.tina-prose > :where(ul > li p):not(:where([class~="not-tina-prose"] *)) {
|
|
605
|
-
margin-top: 0.75em;
|
|
606
|
-
margin-bottom: 0.75em;
|
|
607
|
-
}
|
|
608
|
-
.tina-prose > :where(ul > li > *:first-child):not(:where([class~="not-tina-prose"] *)) {
|
|
609
|
-
margin-top: 1.25em;
|
|
610
|
-
}
|
|
611
|
-
.tina-prose > :where(ul > li > *:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
612
|
-
margin-bottom: 1.25em;
|
|
613
|
-
}
|
|
614
|
-
.tina-prose > :where(ol > li > *:first-child):not(:where([class~="not-tina-prose"] *)) {
|
|
615
|
-
margin-top: 1.25em;
|
|
616
|
-
}
|
|
617
|
-
.tina-prose > :where(ol > li > *:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
618
|
-
margin-bottom: 1.25em;
|
|
619
|
-
}
|
|
620
|
-
.tina-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-tina-prose"] *)) {
|
|
621
|
-
margin-top: 0.75em;
|
|
622
|
-
margin-bottom: 0.75em;
|
|
623
|
-
}
|
|
624
|
-
.tina-prose :where(hr + *):not(:where([class~="not-tina-prose"] *)) {
|
|
625
|
-
margin-top: 0;
|
|
626
|
-
}
|
|
627
|
-
.tina-prose :where(h2 + *):not(:where([class~="not-tina-prose"] *)) {
|
|
628
|
-
margin-top: 0;
|
|
629
|
-
}
|
|
630
|
-
.tina-prose :where(h3 + *):not(:where([class~="not-tina-prose"] *)) {
|
|
631
|
-
margin-top: 0;
|
|
632
|
-
}
|
|
633
|
-
.tina-prose :where(h4 + *):not(:where([class~="not-tina-prose"] *)) {
|
|
634
|
-
margin-top: 0;
|
|
635
|
-
}
|
|
636
|
-
.tina-prose :where(thead th:first-child):not(:where([class~="not-tina-prose"] *)) {
|
|
637
|
-
padding-left: 0;
|
|
638
|
-
}
|
|
639
|
-
.tina-prose :where(thead th:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
640
|
-
padding-right: 0;
|
|
641
|
-
}
|
|
642
|
-
.tina-prose :where(tbody td:first-child):not(:where([class~="not-tina-prose"] *)) {
|
|
643
|
-
padding-left: 0;
|
|
644
|
-
}
|
|
645
|
-
.tina-prose :where(tbody td:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
646
|
-
padding-right: 0;
|
|
647
|
-
}
|
|
648
|
-
.tina-prose > :where(:first-child):not(:where([class~="not-tina-prose"] *)) {
|
|
649
|
-
margin-top: 0;
|
|
650
|
-
}
|
|
651
|
-
.tina-prose > :where(:last-child):not(:where([class~="not-tina-prose"] *)) {
|
|
652
|
-
margin-bottom: 0;
|
|
653
|
-
}
|
|
654
|
-
.tina-tailwind .pointer-events-none {
|
|
655
|
-
pointer-events: none;
|
|
656
|
-
}
|
|
657
|
-
.tina-tailwind .pointer-events-auto {
|
|
658
|
-
pointer-events: auto;
|
|
659
|
-
}
|
|
660
|
-
.tina-tailwind .static {
|
|
661
|
-
position: static;
|
|
662
|
-
}
|
|
663
|
-
.tina-tailwind .fixed {
|
|
664
|
-
position: fixed;
|
|
665
|
-
}
|
|
666
|
-
.tina-tailwind .absolute {
|
|
667
|
-
position: absolute;
|
|
668
|
-
}
|
|
669
|
-
.tina-tailwind .relative {
|
|
670
|
-
position: relative;
|
|
671
|
-
}
|
|
672
|
-
.tina-tailwind .inset-0 {
|
|
673
|
-
top: 0px;
|
|
674
|
-
right: 0px;
|
|
675
|
-
bottom: 0px;
|
|
676
|
-
left: 0px;
|
|
677
|
-
}
|
|
678
|
-
.tina-tailwind .left-0 {
|
|
679
|
-
left: 0px;
|
|
680
|
-
}
|
|
681
|
-
.tina-tailwind .left-2 {
|
|
682
|
-
left: 8px;
|
|
683
|
-
}
|
|
684
|
-
.tina-tailwind .right-0 {
|
|
685
|
-
right: 0px;
|
|
686
|
-
}
|
|
687
|
-
.tina-tailwind .top-0 {
|
|
688
|
-
top: 0px;
|
|
689
|
-
}
|
|
690
|
-
.tina-tailwind .top-1\/2 {
|
|
691
|
-
top: 50%;
|
|
692
|
-
}
|
|
693
|
-
.tina-tailwind .top-10 {
|
|
694
|
-
top: 40px;
|
|
695
|
-
}
|
|
696
|
-
.tina-tailwind .top-4 {
|
|
697
|
-
top: 16px;
|
|
698
|
-
}
|
|
699
|
-
.tina-tailwind .top-8 {
|
|
700
|
-
top: 32px;
|
|
701
|
-
}
|
|
702
|
-
.tina-tailwind .z-50 {
|
|
703
|
-
z-index: 50;
|
|
704
|
-
}
|
|
705
|
-
.tina-tailwind .z-menu {
|
|
706
|
-
z-index: 9800;
|
|
707
|
-
}
|
|
708
|
-
.tina-tailwind .z-overlay {
|
|
709
|
-
z-index: 10600;
|
|
710
|
-
}
|
|
711
|
-
.tina-tailwind .mx-auto {
|
|
712
|
-
margin-left: auto;
|
|
713
|
-
margin-right: auto;
|
|
714
|
-
}
|
|
715
|
-
.tina-tailwind .my-8 {
|
|
716
|
-
margin-top: 32px;
|
|
717
|
-
margin-bottom: 32px;
|
|
718
|
-
}
|
|
719
|
-
.tina-tailwind .-ml-px {
|
|
720
|
-
margin-left: -1px;
|
|
721
|
-
}
|
|
722
|
-
.tina-tailwind .mb-1 {
|
|
723
|
-
margin-bottom: 4px;
|
|
724
|
-
}
|
|
725
|
-
.tina-tailwind .mb-4 {
|
|
726
|
-
margin-bottom: 16px;
|
|
727
|
-
}
|
|
728
|
-
.tina-tailwind .mb-6 {
|
|
729
|
-
margin-bottom: 24px;
|
|
730
|
-
}
|
|
731
|
-
.tina-tailwind .mb-8 {
|
|
732
|
-
margin-bottom: 32px;
|
|
733
|
-
}
|
|
734
|
-
.tina-tailwind .ml-1 {
|
|
735
|
-
margin-left: 4px;
|
|
736
|
-
}
|
|
737
|
-
.tina-tailwind .ml-1\.5 {
|
|
738
|
-
margin-left: 6px;
|
|
739
|
-
}
|
|
740
|
-
.tina-tailwind .mr-1 {
|
|
741
|
-
margin-right: 4px;
|
|
742
|
-
}
|
|
743
|
-
.tina-tailwind .mr-1\.5 {
|
|
744
|
-
margin-right: 6px;
|
|
745
|
-
}
|
|
746
|
-
.tina-tailwind .mr-2 {
|
|
747
|
-
margin-right: 8px;
|
|
748
|
-
}
|
|
749
|
-
.tina-tailwind .mt-2 {
|
|
750
|
-
margin-top: 8px;
|
|
751
|
-
}
|
|
752
|
-
.tina-tailwind .block {
|
|
753
|
-
display: block;
|
|
754
|
-
}
|
|
755
|
-
.tina-tailwind .inline-block {
|
|
756
|
-
display: inline-block;
|
|
757
|
-
}
|
|
758
|
-
.tina-tailwind .flex {
|
|
759
|
-
display: flex;
|
|
760
|
-
}
|
|
761
|
-
.tina-tailwind .inline-flex {
|
|
762
|
-
display: inline-flex;
|
|
763
|
-
}
|
|
764
|
-
.tina-tailwind .table {
|
|
765
|
-
display: table;
|
|
766
|
-
}
|
|
767
|
-
.tina-tailwind .grid {
|
|
768
|
-
display: grid;
|
|
769
|
-
}
|
|
770
|
-
.tina-tailwind .h-10 {
|
|
771
|
-
height: 40px;
|
|
772
|
-
}
|
|
773
|
-
.tina-tailwind .h-12 {
|
|
774
|
-
height: 48px;
|
|
775
|
-
}
|
|
776
|
-
.tina-tailwind .h-5 {
|
|
777
|
-
height: 20px;
|
|
778
|
-
}
|
|
779
|
-
.tina-tailwind .h-6 {
|
|
780
|
-
height: 24px;
|
|
781
|
-
}
|
|
782
|
-
.tina-tailwind .h-7 {
|
|
783
|
-
height: 28px;
|
|
784
|
-
}
|
|
785
|
-
.tina-tailwind .h-auto {
|
|
786
|
-
height: auto;
|
|
787
|
-
}
|
|
788
|
-
.tina-tailwind .h-full {
|
|
789
|
-
height: 100%;
|
|
790
|
-
}
|
|
791
|
-
.tina-tailwind .h-screen {
|
|
792
|
-
height: 100vh;
|
|
793
|
-
}
|
|
794
|
-
.tina-tailwind .w-0 {
|
|
795
|
-
width: 0px;
|
|
796
|
-
}
|
|
797
|
-
.tina-tailwind .w-10 {
|
|
798
|
-
width: 40px;
|
|
799
|
-
}
|
|
800
|
-
.tina-tailwind .w-12 {
|
|
801
|
-
width: 48px;
|
|
802
|
-
}
|
|
803
|
-
.tina-tailwind .w-5 {
|
|
804
|
-
width: 20px;
|
|
805
|
-
}
|
|
806
|
-
.tina-tailwind .w-56 {
|
|
807
|
-
width: 224px;
|
|
808
|
-
}
|
|
809
|
-
.tina-tailwind .w-6 {
|
|
810
|
-
width: 24px;
|
|
811
|
-
}
|
|
812
|
-
.tina-tailwind .w-7 {
|
|
813
|
-
width: 28px;
|
|
814
|
-
}
|
|
815
|
-
.tina-tailwind .w-\[15\%\] {
|
|
816
|
-
width: 15%;
|
|
817
|
-
}
|
|
818
|
-
.tina-tailwind .w-auto {
|
|
819
|
-
width: auto;
|
|
820
|
-
}
|
|
821
|
-
.tina-tailwind .w-full {
|
|
822
|
-
width: 100%;
|
|
823
|
-
}
|
|
824
|
-
.tina-tailwind .min-w-\[200px\] {
|
|
825
|
-
min-width: 200px;
|
|
826
|
-
}
|
|
827
|
-
.tina-tailwind .min-w-\[48px\] {
|
|
828
|
-
min-width: 48px;
|
|
829
|
-
}
|
|
830
|
-
.tina-tailwind .max-w-0 {
|
|
831
|
-
max-width: 0rem;
|
|
832
|
-
}
|
|
833
|
-
.tina-tailwind .max-w-5xl {
|
|
834
|
-
max-width: 64rem;
|
|
835
|
-
}
|
|
836
|
-
.tina-tailwind .max-w-form {
|
|
837
|
-
max-width: 900px;
|
|
838
|
-
}
|
|
839
|
-
.tina-tailwind .max-w-full {
|
|
840
|
-
max-width: 100%;
|
|
841
|
-
}
|
|
842
|
-
.tina-tailwind .max-w-lg {
|
|
843
|
-
max-width: 32rem;
|
|
844
|
-
}
|
|
845
|
-
.tina-tailwind .max-w-screen-xl {
|
|
846
|
-
max-width: 1280px;
|
|
847
|
-
}
|
|
848
|
-
.tina-tailwind .flex-1 {
|
|
849
|
-
flex: 1 1 0%;
|
|
850
|
-
}
|
|
851
|
-
.tina-tailwind .flex-shrink-0 {
|
|
852
|
-
flex-shrink: 0;
|
|
853
|
-
}
|
|
854
|
-
.tina-tailwind .shrink {
|
|
855
|
-
flex-shrink: 1;
|
|
856
|
-
}
|
|
857
|
-
.tina-tailwind .shrink-0 {
|
|
858
|
-
flex-shrink: 0;
|
|
859
|
-
}
|
|
860
|
-
.tina-tailwind .flex-grow-0 {
|
|
861
|
-
flex-grow: 0;
|
|
862
|
-
}
|
|
863
|
-
.tina-tailwind .grow-0 {
|
|
864
|
-
flex-grow: 0;
|
|
865
|
-
}
|
|
866
|
-
.tina-tailwind .basis-0 {
|
|
867
|
-
flex-basis: 0px;
|
|
868
|
-
}
|
|
869
|
-
.tina-tailwind .table-auto {
|
|
870
|
-
table-layout: auto;
|
|
871
|
-
}
|
|
872
|
-
.tina-tailwind .origin-top-right {
|
|
873
|
-
transform-origin: top right;
|
|
874
|
-
}
|
|
875
|
-
.tina-tailwind .-translate-x-full {
|
|
876
|
-
--tw-translate-x: -100%;
|
|
877
|
-
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));
|
|
878
|
-
}
|
|
879
|
-
.tina-tailwind .-translate-y-1\/2 {
|
|
880
|
-
--tw-translate-y: -50%;
|
|
881
|
-
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));
|
|
882
|
-
}
|
|
883
|
-
.tina-tailwind .translate-x-0 {
|
|
884
|
-
--tw-translate-x: 0px;
|
|
885
|
-
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));
|
|
886
|
-
}
|
|
887
|
-
.tina-tailwind .translate-x-full {
|
|
888
|
-
--tw-translate-x: 100%;
|
|
889
|
-
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));
|
|
890
|
-
}
|
|
891
|
-
.tina-tailwind .scale-100 {
|
|
892
|
-
--tw-scale-x: 1;
|
|
893
|
-
--tw-scale-y: 1;
|
|
894
|
-
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));
|
|
895
|
-
}
|
|
896
|
-
.tina-tailwind .scale-95 {
|
|
897
|
-
--tw-scale-x: .95;
|
|
898
|
-
--tw-scale-y: .95;
|
|
899
|
-
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));
|
|
900
|
-
}
|
|
901
|
-
.tina-tailwind .transform {
|
|
902
|
-
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));
|
|
903
|
-
}
|
|
904
|
-
@keyframes spin {
|
|
905
|
-
|
|
906
|
-
to {
|
|
907
|
-
transform: rotate(360deg);
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
.tina-tailwind .animate-spin {
|
|
911
|
-
animation: spin 1s linear infinite;
|
|
912
|
-
}
|
|
913
|
-
.tina-tailwind .cursor-pointer {
|
|
914
|
-
cursor: pointer;
|
|
915
|
-
}
|
|
916
|
-
.tina-tailwind .grid-flow-col {
|
|
917
|
-
grid-auto-flow: column;
|
|
918
|
-
}
|
|
919
|
-
.tina-tailwind .flex-col {
|
|
920
|
-
flex-direction: column;
|
|
921
|
-
}
|
|
922
|
-
.tina-tailwind .flex-wrap {
|
|
923
|
-
flex-wrap: wrap;
|
|
924
|
-
}
|
|
925
|
-
.tina-tailwind .items-start {
|
|
926
|
-
align-items: flex-start;
|
|
927
|
-
}
|
|
928
|
-
.tina-tailwind .items-end {
|
|
929
|
-
align-items: flex-end;
|
|
930
|
-
}
|
|
931
|
-
.tina-tailwind .items-center {
|
|
932
|
-
align-items: center;
|
|
933
|
-
}
|
|
934
|
-
.tina-tailwind .items-stretch {
|
|
935
|
-
align-items: stretch;
|
|
936
|
-
}
|
|
937
|
-
.tina-tailwind .justify-start {
|
|
938
|
-
justify-content: flex-start;
|
|
939
|
-
}
|
|
940
|
-
.tina-tailwind .justify-end {
|
|
941
|
-
justify-content: flex-end;
|
|
942
|
-
}
|
|
943
|
-
.tina-tailwind .justify-center {
|
|
944
|
-
justify-content: center;
|
|
945
|
-
}
|
|
946
|
-
.tina-tailwind .justify-between {
|
|
947
|
-
justify-content: space-between;
|
|
948
|
-
}
|
|
949
|
-
.tina-tailwind .gap-0 {
|
|
950
|
-
gap: 0px;
|
|
951
|
-
}
|
|
952
|
-
.tina-tailwind .gap-0\.5 {
|
|
953
|
-
gap: 2px;
|
|
954
|
-
}
|
|
955
|
-
.tina-tailwind .gap-1 {
|
|
956
|
-
gap: 4px;
|
|
957
|
-
}
|
|
958
|
-
.tina-tailwind .gap-1\.5 {
|
|
959
|
-
gap: 6px;
|
|
960
|
-
}
|
|
961
|
-
.tina-tailwind .gap-2 {
|
|
962
|
-
gap: 8px;
|
|
963
|
-
}
|
|
964
|
-
.tina-tailwind .gap-3 {
|
|
965
|
-
gap: 12px;
|
|
966
|
-
}
|
|
967
|
-
.tina-tailwind .gap-4 {
|
|
968
|
-
gap: 16px;
|
|
969
|
-
}
|
|
970
|
-
.tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
971
|
-
--tw-divide-y-reverse: 0;
|
|
972
|
-
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
973
|
-
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
974
|
-
}
|
|
975
|
-
.tina-tailwind .divide-gray-150 > :not([hidden]) ~ :not([hidden]) {
|
|
976
|
-
--tw-divide-opacity: 1;
|
|
977
|
-
border-color: rgb(230 227 239 / var(--tw-divide-opacity));
|
|
978
|
-
}
|
|
979
|
-
.tina-tailwind .self-end {
|
|
980
|
-
align-self: flex-end;
|
|
981
|
-
}
|
|
982
|
-
.tina-tailwind .justify-self-end {
|
|
983
|
-
justify-self: end;
|
|
984
|
-
}
|
|
985
|
-
.tina-tailwind .overflow-hidden {
|
|
986
|
-
overflow: hidden;
|
|
987
|
-
}
|
|
988
|
-
.tina-tailwind .overflow-scroll {
|
|
989
|
-
overflow: scroll;
|
|
990
|
-
}
|
|
991
|
-
.tina-tailwind .overflow-y-auto {
|
|
992
|
-
overflow-y: auto;
|
|
993
|
-
}
|
|
994
|
-
.tina-tailwind .truncate {
|
|
995
|
-
overflow: hidden;
|
|
996
|
-
text-overflow: ellipsis;
|
|
997
|
-
white-space: nowrap;
|
|
998
|
-
}
|
|
999
|
-
.tina-tailwind .whitespace-normal {
|
|
1000
|
-
white-space: normal;
|
|
1001
|
-
}
|
|
1002
|
-
.tina-tailwind .whitespace-nowrap {
|
|
1003
|
-
white-space: nowrap;
|
|
1004
|
-
}
|
|
1005
|
-
.tina-tailwind .rounded {
|
|
1006
|
-
border-radius: 4px;
|
|
1007
|
-
}
|
|
1008
|
-
.tina-tailwind .rounded-full {
|
|
1009
|
-
border-radius: 9999px;
|
|
1010
|
-
}
|
|
1011
|
-
.tina-tailwind .rounded-lg {
|
|
1012
|
-
border-radius: 8px;
|
|
1013
|
-
}
|
|
1014
|
-
.tina-tailwind .rounded-md {
|
|
1015
|
-
border-radius: 6px;
|
|
1016
|
-
}
|
|
1017
|
-
.tina-tailwind .rounded-r-md {
|
|
1018
|
-
border-top-right-radius: 6px;
|
|
1019
|
-
border-bottom-right-radius: 6px;
|
|
1020
|
-
}
|
|
1021
|
-
.tina-tailwind .border {
|
|
1022
|
-
border-width: 1px;
|
|
1023
|
-
}
|
|
1024
|
-
.tina-tailwind .border-0 {
|
|
1025
|
-
border-width: 0;
|
|
1026
|
-
}
|
|
1027
|
-
.tina-tailwind .border-b {
|
|
1028
|
-
border-bottom-width: 1px;
|
|
1029
|
-
}
|
|
1030
|
-
.tina-tailwind .border-l-2 {
|
|
1031
|
-
border-left-width: 2px;
|
|
1032
|
-
}
|
|
1033
|
-
.tina-tailwind .border-r {
|
|
1034
|
-
border-right-width: 1px;
|
|
1035
|
-
}
|
|
1036
|
-
.tina-tailwind .border-gray-100 {
|
|
1037
|
-
--tw-border-opacity: 1;
|
|
1038
|
-
border-color: rgb(237 236 243 / var(--tw-border-opacity));
|
|
1039
|
-
}
|
|
1040
|
-
.tina-tailwind .border-gray-150 {
|
|
1041
|
-
--tw-border-opacity: 1;
|
|
1042
|
-
border-color: rgb(230 227 239 / var(--tw-border-opacity));
|
|
1043
|
-
}
|
|
1044
|
-
.tina-tailwind .border-gray-200 {
|
|
1045
|
-
--tw-border-opacity: 1;
|
|
1046
|
-
border-color: rgb(225 221 236 / var(--tw-border-opacity));
|
|
1047
|
-
}
|
|
1048
|
-
.tina-tailwind .bg-blue-500 {
|
|
1049
|
-
--tw-bg-opacity: 1;
|
|
1050
|
-
background-color: rgb(0 132 255 / var(--tw-bg-opacity));
|
|
1051
|
-
}
|
|
1052
|
-
.tina-tailwind .bg-gray-100 {
|
|
1053
|
-
--tw-bg-opacity: 1;
|
|
1054
|
-
background-color: rgb(237 236 243 / var(--tw-bg-opacity));
|
|
1055
|
-
}
|
|
1056
|
-
.tina-tailwind .bg-gray-50 {
|
|
1057
|
-
--tw-bg-opacity: 1;
|
|
1058
|
-
background-color: rgb(246 246 249 / var(--tw-bg-opacity));
|
|
1059
|
-
}
|
|
1060
|
-
.tina-tailwind .bg-gray-50\/30 {
|
|
1061
|
-
background-color: rgb(246 246 249 / .3);
|
|
1062
|
-
}
|
|
1063
|
-
.tina-tailwind .bg-transparent {
|
|
1064
|
-
background-color: transparent;
|
|
1065
|
-
}
|
|
1066
|
-
.tina-tailwind .bg-white {
|
|
1067
|
-
--tw-bg-opacity: 1;
|
|
1068
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1069
|
-
}
|
|
1070
|
-
.tina-tailwind .bg-gradient-to-b {
|
|
1071
|
-
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
1072
|
-
}
|
|
1073
|
-
.tina-tailwind .bg-gradient-to-br {
|
|
1074
|
-
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
1075
|
-
}
|
|
1076
|
-
.tina-tailwind .from-blue-900 {
|
|
1077
|
-
--tw-gradient-from: #1D2C6C;
|
|
1078
|
-
--tw-gradient-to: rgb(29 44 108 / 0);
|
|
1079
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1080
|
-
}
|
|
1081
|
-
.tina-tailwind .from-gray-50\/50 {
|
|
1082
|
-
--tw-gradient-from: rgb(246 246 249 / .5);
|
|
1083
|
-
--tw-gradient-to: rgb(246 246 249 / 0);
|
|
1084
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1085
|
-
}
|
|
1086
|
-
.tina-tailwind .from-gray-800 {
|
|
1087
|
-
--tw-gradient-from: #363145;
|
|
1088
|
-
--tw-gradient-to: rgb(54 49 69 / 0);
|
|
1089
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1090
|
-
}
|
|
1091
|
-
.tina-tailwind .via-gray-900 {
|
|
1092
|
-
--tw-gradient-to: rgb(37 35 54 / 0);
|
|
1093
|
-
--tw-gradient-stops: var(--tw-gradient-from), #252336, var(--tw-gradient-to);
|
|
1094
|
-
}
|
|
1095
|
-
.tina-tailwind .to-black {
|
|
1096
|
-
--tw-gradient-to: #000;
|
|
1097
|
-
}
|
|
1098
|
-
.tina-tailwind .to-gray-50 {
|
|
1099
|
-
--tw-gradient-to: #F6F6F9;
|
|
1100
|
-
}
|
|
1101
|
-
.tina-tailwind .to-gray-900 {
|
|
1102
|
-
--tw-gradient-to: #252336;
|
|
1103
|
-
}
|
|
1104
|
-
.tina-tailwind .fill-current {
|
|
1105
|
-
fill: currentColor;
|
|
1106
|
-
}
|
|
1107
|
-
.tina-tailwind .p-0 {
|
|
1108
|
-
padding: 0px;
|
|
1109
|
-
}
|
|
1110
|
-
.tina-tailwind .p-6 {
|
|
1111
|
-
padding: 24px;
|
|
1112
|
-
}
|
|
1113
|
-
.tina-tailwind .p-8 {
|
|
1114
|
-
padding: 32px;
|
|
1115
|
-
}
|
|
1116
|
-
.tina-tailwind .px-12 {
|
|
1117
|
-
padding-left: 48px;
|
|
1118
|
-
padding-right: 48px;
|
|
1119
|
-
}
|
|
1120
|
-
.tina-tailwind .px-2 {
|
|
1121
|
-
padding-left: 8px;
|
|
1122
|
-
padding-right: 8px;
|
|
1123
|
-
}
|
|
1124
|
-
.tina-tailwind .px-20 {
|
|
1125
|
-
padding-left: 80px;
|
|
1126
|
-
padding-right: 80px;
|
|
1127
|
-
}
|
|
1128
|
-
.tina-tailwind .px-3 {
|
|
1129
|
-
padding-left: 12px;
|
|
1130
|
-
padding-right: 12px;
|
|
1131
|
-
}
|
|
1132
|
-
.tina-tailwind .px-4 {
|
|
1133
|
-
padding-left: 16px;
|
|
1134
|
-
padding-right: 16px;
|
|
1135
|
-
}
|
|
1136
|
-
.tina-tailwind .px-5 {
|
|
1137
|
-
padding-left: 20px;
|
|
1138
|
-
padding-right: 20px;
|
|
1139
|
-
}
|
|
1140
|
-
.tina-tailwind .px-6 {
|
|
1141
|
-
padding-left: 24px;
|
|
1142
|
-
padding-right: 24px;
|
|
1143
|
-
}
|
|
1144
|
-
.tina-tailwind .py-1 {
|
|
1145
|
-
padding-top: 4px;
|
|
1146
|
-
padding-bottom: 4px;
|
|
1147
|
-
}
|
|
1148
|
-
.tina-tailwind .py-10 {
|
|
1149
|
-
padding-top: 40px;
|
|
1150
|
-
padding-bottom: 40px;
|
|
1151
|
-
}
|
|
1152
|
-
.tina-tailwind .py-2 {
|
|
1153
|
-
padding-top: 8px;
|
|
1154
|
-
padding-bottom: 8px;
|
|
1155
|
-
}
|
|
1156
|
-
.tina-tailwind .py-3 {
|
|
1157
|
-
padding-top: 12px;
|
|
1158
|
-
padding-bottom: 12px;
|
|
1159
|
-
}
|
|
1160
|
-
.tina-tailwind .py-4 {
|
|
1161
|
-
padding-top: 16px;
|
|
1162
|
-
padding-bottom: 16px;
|
|
1163
|
-
}
|
|
1164
|
-
.tina-tailwind .py-5 {
|
|
1165
|
-
padding-top: 20px;
|
|
1166
|
-
padding-bottom: 20px;
|
|
1167
|
-
}
|
|
1168
|
-
.tina-tailwind .py-6 {
|
|
1169
|
-
padding-top: 24px;
|
|
1170
|
-
padding-bottom: 24px;
|
|
1171
|
-
}
|
|
1172
|
-
.tina-tailwind .py-8 {
|
|
1173
|
-
padding-top: 32px;
|
|
1174
|
-
padding-bottom: 32px;
|
|
1175
|
-
}
|
|
1176
|
-
.tina-tailwind .pb-4 {
|
|
1177
|
-
padding-bottom: 16px;
|
|
1178
|
-
}
|
|
1179
|
-
.tina-tailwind .pl-18 {
|
|
1180
|
-
padding-left: 72px;
|
|
1181
|
-
}
|
|
1182
|
-
.tina-tailwind .pl-3 {
|
|
1183
|
-
padding-left: 12px;
|
|
1184
|
-
}
|
|
1185
|
-
.tina-tailwind .pl-4 {
|
|
1186
|
-
padding-left: 16px;
|
|
1187
|
-
}
|
|
1188
|
-
.tina-tailwind .pl-5 {
|
|
1189
|
-
padding-left: 20px;
|
|
1190
|
-
}
|
|
1191
|
-
.tina-tailwind .pl-8 {
|
|
1192
|
-
padding-left: 32px;
|
|
1193
|
-
}
|
|
1194
|
-
.tina-tailwind .pr-0 {
|
|
1195
|
-
padding-right: 0px;
|
|
1196
|
-
}
|
|
1197
|
-
.tina-tailwind .pr-0\.5 {
|
|
1198
|
-
padding-right: 2px;
|
|
1199
|
-
}
|
|
1200
|
-
.tina-tailwind .pr-3 {
|
|
1201
|
-
padding-right: 12px;
|
|
1202
|
-
}
|
|
1203
|
-
.tina-tailwind .pt-12 {
|
|
1204
|
-
padding-top: 48px;
|
|
1205
|
-
}
|
|
1206
|
-
.tina-tailwind .pt-3 {
|
|
1207
|
-
padding-top: 12px;
|
|
1208
|
-
}
|
|
1209
|
-
.tina-tailwind .pt-4 {
|
|
1210
|
-
padding-top: 16px;
|
|
1211
|
-
}
|
|
1212
|
-
.tina-tailwind .text-left {
|
|
1213
|
-
text-align: left;
|
|
1214
|
-
}
|
|
1215
|
-
.tina-tailwind .text-center {
|
|
1216
|
-
text-align: center;
|
|
1217
|
-
}
|
|
1218
|
-
.tina-tailwind .font-mono {
|
|
1219
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1220
|
-
}
|
|
1221
|
-
.tina-tailwind .font-sans {
|
|
1222
|
-
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1223
|
-
}
|
|
1224
|
-
.tina-tailwind .text-2xl {
|
|
1225
|
-
font-size: 24px;
|
|
1226
|
-
line-height: 1.33;
|
|
1227
|
-
}
|
|
1228
|
-
.tina-tailwind .text-4xl {
|
|
1229
|
-
font-size: 36px;
|
|
1230
|
-
line-height: 1.1;
|
|
1231
|
-
}
|
|
1232
|
-
.tina-tailwind .text-base {
|
|
1233
|
-
font-size: 16px;
|
|
1234
|
-
line-height: 1.5;
|
|
1235
|
-
}
|
|
1236
|
-
.tina-tailwind .text-md {
|
|
1237
|
-
font-size: 16px;
|
|
1238
|
-
line-height: 1.5;
|
|
1239
|
-
}
|
|
1240
|
-
.tina-tailwind .text-sm {
|
|
1241
|
-
font-size: 14px;
|
|
1242
|
-
line-height: 1.43;
|
|
1243
|
-
}
|
|
1244
|
-
.tina-tailwind .text-xl {
|
|
1245
|
-
font-size: 20px;
|
|
1246
|
-
line-height: 1.4;
|
|
1247
|
-
}
|
|
1248
|
-
.tina-tailwind .text-xs {
|
|
1249
|
-
font-size: 13px;
|
|
1250
|
-
line-height: 1.33;
|
|
1251
|
-
}
|
|
1252
|
-
.tina-tailwind .font-bold {
|
|
1253
|
-
font-weight: 700;
|
|
1254
|
-
}
|
|
1255
|
-
.tina-tailwind .font-medium {
|
|
1256
|
-
font-weight: 500;
|
|
1257
|
-
}
|
|
1258
|
-
.tina-tailwind .font-semibold {
|
|
1259
|
-
font-weight: 600;
|
|
1260
|
-
}
|
|
1261
|
-
.tina-tailwind .uppercase {
|
|
1262
|
-
text-transform: uppercase;
|
|
1263
|
-
}
|
|
1264
|
-
.tina-tailwind .italic {
|
|
1265
|
-
font-style: italic;
|
|
1266
|
-
}
|
|
1267
|
-
.tina-tailwind .leading-5 {
|
|
1268
|
-
line-height: 20px;
|
|
1269
|
-
}
|
|
1270
|
-
.tina-tailwind .leading-normal {
|
|
1271
|
-
line-height: 1.5;
|
|
1272
|
-
}
|
|
1273
|
-
.tina-tailwind .leading-tight {
|
|
1274
|
-
line-height: 1.25;
|
|
1275
|
-
}
|
|
1276
|
-
.tina-tailwind .tracking-wide {
|
|
1277
|
-
letter-spacing: 0.025em;
|
|
1278
|
-
}
|
|
1279
|
-
.tina-tailwind .text-blue-400 {
|
|
1280
|
-
--tw-text-opacity: 1;
|
|
1281
|
-
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1282
|
-
}
|
|
1283
|
-
.tina-tailwind .text-blue-500 {
|
|
1284
|
-
--tw-text-opacity: 1;
|
|
1285
|
-
color: rgb(0 132 255 / var(--tw-text-opacity));
|
|
1286
|
-
}
|
|
1287
|
-
.tina-tailwind .text-blue-600 {
|
|
1288
|
-
--tw-text-opacity: 1;
|
|
1289
|
-
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1290
|
-
}
|
|
1291
|
-
.tina-tailwind .text-gray-200 {
|
|
1292
|
-
--tw-text-opacity: 1;
|
|
1293
|
-
color: rgb(225 221 236 / var(--tw-text-opacity));
|
|
1294
|
-
}
|
|
1295
|
-
.tina-tailwind .text-gray-300 {
|
|
1296
|
-
--tw-text-opacity: 1;
|
|
1297
|
-
color: rgb(178 173 190 / var(--tw-text-opacity));
|
|
1298
|
-
}
|
|
1299
|
-
.tina-tailwind .text-gray-400 {
|
|
1300
|
-
--tw-text-opacity: 1;
|
|
1301
|
-
color: rgb(145 140 158 / var(--tw-text-opacity));
|
|
1302
|
-
}
|
|
1303
|
-
.tina-tailwind .text-gray-500 {
|
|
1304
|
-
--tw-text-opacity: 1;
|
|
1305
|
-
color: rgb(113 108 127 / var(--tw-text-opacity));
|
|
1306
|
-
}
|
|
1307
|
-
.tina-tailwind .text-gray-600 {
|
|
1308
|
-
--tw-text-opacity: 1;
|
|
1309
|
-
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1310
|
-
}
|
|
1311
|
-
.tina-tailwind .text-gray-700 {
|
|
1312
|
-
--tw-text-opacity: 1;
|
|
1313
|
-
color: rgb(67 62 82 / var(--tw-text-opacity));
|
|
1314
|
-
}
|
|
1315
|
-
.tina-tailwind .text-gray-900 {
|
|
1316
|
-
--tw-text-opacity: 1;
|
|
1317
|
-
color: rgb(37 35 54 / var(--tw-text-opacity));
|
|
1318
|
-
}
|
|
1319
|
-
.tina-tailwind .text-orange-600 {
|
|
1320
|
-
--tw-text-opacity: 1;
|
|
1321
|
-
color: rgb(220 68 25 / var(--tw-text-opacity));
|
|
1322
|
-
}
|
|
1323
|
-
.tina-tailwind .text-red-400 {
|
|
1324
|
-
--tw-text-opacity: 1;
|
|
1325
|
-
color: rgb(248 113 113 / var(--tw-text-opacity));
|
|
1326
|
-
}
|
|
1327
|
-
.tina-tailwind .text-red-500 {
|
|
1328
|
-
--tw-text-opacity: 1;
|
|
1329
|
-
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1330
|
-
}
|
|
1331
|
-
.tina-tailwind .text-red-700 {
|
|
1332
|
-
--tw-text-opacity: 1;
|
|
1333
|
-
color: rgb(185 28 28 / var(--tw-text-opacity));
|
|
1334
|
-
}
|
|
1335
|
-
.tina-tailwind .text-white {
|
|
1336
|
-
--tw-text-opacity: 1;
|
|
1337
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1338
|
-
}
|
|
1339
|
-
.tina-tailwind .underline {
|
|
1340
|
-
text-decoration-line: underline;
|
|
1341
|
-
}
|
|
1342
|
-
.tina-tailwind .decoration-blue-200 {
|
|
1343
|
-
text-decoration-color: #85C5FE;
|
|
1344
|
-
}
|
|
1345
|
-
.tina-tailwind .decoration-1 {
|
|
1346
|
-
text-decoration-thickness: 1px;
|
|
1347
|
-
}
|
|
1348
|
-
.tina-tailwind .underline-offset-2 {
|
|
1349
|
-
text-underline-offset: 2px;
|
|
1350
|
-
}
|
|
1351
|
-
.tina-tailwind .opacity-0 {
|
|
1352
|
-
opacity: 0;
|
|
1353
|
-
}
|
|
1354
|
-
.tina-tailwind .opacity-100 {
|
|
1355
|
-
opacity: 1;
|
|
1356
|
-
}
|
|
1357
|
-
.tina-tailwind .opacity-20 {
|
|
1358
|
-
opacity: .2;
|
|
1359
|
-
}
|
|
1360
|
-
.tina-tailwind .opacity-30 {
|
|
1361
|
-
opacity: .3;
|
|
1362
|
-
}
|
|
1363
|
-
.tina-tailwind .opacity-70 {
|
|
1364
|
-
opacity: .7;
|
|
1365
|
-
}
|
|
1366
|
-
.tina-tailwind .opacity-80 {
|
|
1367
|
-
opacity: .8;
|
|
1368
|
-
}
|
|
1369
|
-
.tina-tailwind .opacity-90 {
|
|
1370
|
-
opacity: .9;
|
|
1371
|
-
}
|
|
1372
|
-
.tina-tailwind .shadow {
|
|
1373
|
-
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1374
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1375
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1376
|
-
}
|
|
1377
|
-
.tina-tailwind .shadow-2xl {
|
|
1378
|
-
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
1379
|
-
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
1380
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1381
|
-
}
|
|
1382
|
-
.tina-tailwind .shadow-inner {
|
|
1383
|
-
--tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
1384
|
-
--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
|
|
1385
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1386
|
-
}
|
|
1387
|
-
.tina-tailwind .shadow-lg {
|
|
1388
|
-
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1389
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1390
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1391
|
-
}
|
|
1392
|
-
.tina-tailwind .outline {
|
|
1393
|
-
outline-style: solid;
|
|
1394
|
-
}
|
|
1395
|
-
.tina-tailwind .ring-1 {
|
|
1396
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1397
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1398
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1399
|
-
}
|
|
1400
|
-
.tina-tailwind .ring-black {
|
|
1401
|
-
--tw-ring-opacity: 1;
|
|
1402
|
-
--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
|
|
1403
|
-
}
|
|
1404
|
-
.tina-tailwind .ring-opacity-5 {
|
|
1405
|
-
--tw-ring-opacity: .05;
|
|
1406
|
-
}
|
|
1407
|
-
.tina-tailwind .filter {
|
|
1408
|
-
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);
|
|
1409
|
-
}
|
|
1410
|
-
.tina-tailwind .transition {
|
|
1411
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1412
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1413
|
-
transition-duration: 150ms;
|
|
1414
|
-
}
|
|
1415
|
-
.tina-tailwind .transition-all {
|
|
1416
|
-
transition-property: all;
|
|
1417
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1418
|
-
transition-duration: 150ms;
|
|
1419
|
-
}
|
|
1420
|
-
.tina-tailwind .transition-opacity {
|
|
1421
|
-
transition-property: opacity;
|
|
1422
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1423
|
-
transition-duration: 150ms;
|
|
1424
|
-
}
|
|
1425
|
-
.tina-tailwind .duration-100 {
|
|
1426
|
-
transition-duration: 100ms;
|
|
1427
|
-
}
|
|
1428
|
-
.tina-tailwind .duration-150 {
|
|
1429
|
-
transition-duration: 150ms;
|
|
1430
|
-
}
|
|
1431
|
-
.tina-tailwind .duration-200 {
|
|
1432
|
-
transition-duration: 200ms;
|
|
1433
|
-
}
|
|
1434
|
-
.tina-tailwind .duration-300 {
|
|
1435
|
-
transition-duration: 300ms;
|
|
1436
|
-
}
|
|
1437
|
-
.tina-tailwind .duration-75 {
|
|
1438
|
-
transition-duration: 75ms;
|
|
1439
|
-
}
|
|
1440
|
-
.tina-tailwind .ease-in {
|
|
1441
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1442
|
-
}
|
|
1443
|
-
.tina-tailwind .ease-out {
|
|
1444
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1445
|
-
}
|
|
1446
|
-
.tina-tailwind .icon-parent svg {
|
|
1447
|
-
fill: currentColor;
|
|
1448
|
-
}
|
|
1449
|
-
.tina-tailwind {
|
|
1450
|
-
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1451
|
-
font-size: 16px;
|
|
1452
|
-
line-height: 1.5;
|
|
1453
|
-
--tw-text-opacity: 1;
|
|
1454
|
-
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1455
|
-
}
|
|
1456
|
-
.tina-tailwind .hover\:bg-blue-600:hover {
|
|
1457
|
-
--tw-bg-opacity: 1;
|
|
1458
|
-
background-color: rgb(5 116 228 / var(--tw-bg-opacity));
|
|
1459
|
-
}
|
|
1460
|
-
.tina-tailwind .hover\:bg-gray-50\/50:hover {
|
|
1461
|
-
background-color: rgb(246 246 249 / .5);
|
|
1462
|
-
}
|
|
1463
|
-
.tina-tailwind .hover\:text-blue-400:hover {
|
|
1464
|
-
--tw-text-opacity: 1;
|
|
1465
|
-
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1466
|
-
}
|
|
1467
|
-
.tina-tailwind .hover\:text-blue-500:hover {
|
|
1468
|
-
--tw-text-opacity: 1;
|
|
1469
|
-
color: rgb(0 132 255 / var(--tw-text-opacity));
|
|
1470
|
-
}
|
|
1471
|
-
.tina-tailwind .hover\:text-blue-600:hover {
|
|
1472
|
-
--tw-text-opacity: 1;
|
|
1473
|
-
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1474
|
-
}
|
|
1475
|
-
.tina-tailwind .hover\:underline:hover {
|
|
1476
|
-
text-decoration-line: underline;
|
|
1477
|
-
}
|
|
1478
|
-
.tina-tailwind .hover\:decoration-blue-400:hover {
|
|
1479
|
-
text-decoration-color: #2296fe;
|
|
1480
|
-
}
|
|
1481
|
-
.tina-tailwind .hover\:opacity-100:hover {
|
|
1482
|
-
opacity: 1;
|
|
1483
|
-
}
|
|
1484
|
-
.tina-tailwind .hover\:opacity-60:hover {
|
|
1485
|
-
opacity: .6;
|
|
1486
|
-
}
|
|
1487
|
-
.tina-tailwind .focus\:border-blue-500:focus {
|
|
1488
|
-
--tw-border-opacity: 1;
|
|
1489
|
-
border-color: rgb(0 132 255 / var(--tw-border-opacity));
|
|
1490
|
-
}
|
|
1491
|
-
.tina-tailwind .focus\:text-gray-900:focus {
|
|
1492
|
-
--tw-text-opacity: 1;
|
|
1493
|
-
color: rgb(37 35 54 / var(--tw-text-opacity));
|
|
1494
|
-
}
|
|
1495
|
-
.tina-tailwind .focus\:shadow-outline:focus {
|
|
1496
|
-
--tw-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
|
|
1497
|
-
--tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
|
|
1498
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1499
|
-
}
|
|
1500
|
-
.tina-tailwind .focus\:outline-none:focus {
|
|
1501
|
-
outline: 2px solid transparent;
|
|
1502
|
-
outline-offset: 2px;
|
|
1503
|
-
}
|
|
1504
|
-
.tina-tailwind .focus\:ring-2:focus {
|
|
1505
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1506
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1507
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1508
|
-
}
|
|
1509
|
-
.tina-tailwind .focus\:ring-blue-500:focus {
|
|
1510
|
-
--tw-ring-opacity: 1;
|
|
1511
|
-
--tw-ring-color: rgb(0 132 255 / var(--tw-ring-opacity));
|
|
1512
|
-
}
|
|
1513
|
-
.tina-tailwind .group:hover .group-hover\:border-gray-200 {
|
|
1514
|
-
--tw-border-opacity: 1;
|
|
1515
|
-
border-color: rgb(225 221 236 / var(--tw-border-opacity));
|
|
1516
|
-
}
|
|
1517
|
-
.tina-tailwind .group:hover .group-hover\:bg-white {
|
|
1518
|
-
--tw-bg-opacity: 1;
|
|
1519
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1520
|
-
}
|
|
1521
|
-
.tina-tailwind .group:hover .group-hover\:text-gray-600 {
|
|
1522
|
-
--tw-text-opacity: 1;
|
|
1523
|
-
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1524
|
-
}
|
|
1525
|
-
.tina-tailwind .group:hover .group-hover\:opacity-0 {
|
|
1526
|
-
opacity: 0;
|
|
1527
|
-
}
|
|
1528
|
-
.tina-tailwind .group:hover .group-hover\:opacity-80 {
|
|
1529
|
-
opacity: .8;
|
|
1530
|
-
}
|
|
1531
|
-
.tina-tailwind .group:active .group-active\:opacity-0 {
|
|
1532
|
-
opacity: 0;
|
|
1533
|
-
}
|
|
1534
|
-
.tina-tailwind .group:active .group-active\:opacity-80 {
|
|
1535
|
-
opacity: .8;
|
|
1536
|
-
}
|