panda-cms 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +73 -0
- data/Rakefile +7 -0
- data/app/assets/builds/panda.cms.css +2808 -0
- data/app/assets/config/panda_cms_manifest.js +4 -0
- data/app/assets/stylesheets/panda/cms/application.tailwind.css +162 -0
- data/app/assets/stylesheets/panda/cms/editor.css +120 -0
- data/app/builders/panda/cms/form_builder.rb +234 -0
- data/app/components/panda/cms/admin/button_component.rb +70 -0
- data/app/components/panda/cms/admin/container_component.html.erb +13 -0
- data/app/components/panda/cms/admin/container_component.rb +13 -0
- data/app/components/panda/cms/admin/flash_message_component.html.erb +31 -0
- data/app/components/panda/cms/admin/flash_message_component.rb +47 -0
- data/app/components/panda/cms/admin/heading_component.rb +45 -0
- data/app/components/panda/cms/admin/panel_component.html.erb +7 -0
- data/app/components/panda/cms/admin/panel_component.rb +13 -0
- data/app/components/panda/cms/admin/slideover_component.html.erb +9 -0
- data/app/components/panda/cms/admin/slideover_component.rb +15 -0
- data/app/components/panda/cms/admin/statistics_component.html.erb +4 -0
- data/app/components/panda/cms/admin/statistics_component.rb +17 -0
- data/app/components/panda/cms/admin/tab_bar_component.html.erb +35 -0
- data/app/components/panda/cms/admin/tab_bar_component.rb +15 -0
- data/app/components/panda/cms/admin/table_component.html.erb +29 -0
- data/app/components/panda/cms/admin/table_component.rb +46 -0
- data/app/components/panda/cms/admin/tag_component.rb +35 -0
- data/app/components/panda/cms/admin/user_activity_component.html.erb +5 -0
- data/app/components/panda/cms/admin/user_activity_component.rb +33 -0
- data/app/components/panda/cms/admin/user_display_component.html.erb +17 -0
- data/app/components/panda/cms/admin/user_display_component.rb +21 -0
- data/app/components/panda/cms/code_component.rb +64 -0
- data/app/components/panda/cms/grid_component.html.erb +6 -0
- data/app/components/panda/cms/grid_component.rb +15 -0
- data/app/components/panda/cms/menu_component.html.erb +6 -0
- data/app/components/panda/cms/menu_component.rb +58 -0
- data/app/components/panda/cms/page_menu_component.html.erb +21 -0
- data/app/components/panda/cms/page_menu_component.rb +38 -0
- data/app/components/panda/cms/rich_text_component.html.erb +6 -0
- data/app/components/panda/cms/rich_text_component.rb +84 -0
- data/app/components/panda/cms/text_component.rb +72 -0
- data/app/constraints/panda/cms/admin_constraint.rb +18 -0
- data/app/controllers/panda/cms/admin/block_contents_controller.rb +52 -0
- data/app/controllers/panda/cms/admin/dashboard_controller.rb +20 -0
- data/app/controllers/panda/cms/admin/files_controller.rb +21 -0
- data/app/controllers/panda/cms/admin/forms_controller.rb +53 -0
- data/app/controllers/panda/cms/admin/menus_controller.rb +30 -0
- data/app/controllers/panda/cms/admin/pages_controller.rb +91 -0
- data/app/controllers/panda/cms/admin/posts_controller.rb +146 -0
- data/app/controllers/panda/cms/admin/sessions_controller.rb +94 -0
- data/app/controllers/panda/cms/admin/settings/bulk_editor_controller.rb +37 -0
- data/app/controllers/panda/cms/admin/settings_controller.rb +20 -0
- data/app/controllers/panda/cms/application_controller.rb +57 -0
- data/app/controllers/panda/cms/errors_controller.rb +33 -0
- data/app/controllers/panda/cms/form_submissions_controller.rb +23 -0
- data/app/controllers/panda/cms/pages_controller.rb +72 -0
- data/app/controllers/panda/cms/posts_controller.rb +13 -0
- data/app/helpers/panda/cms/admin/files_helper.rb +6 -0
- data/app/helpers/panda/cms/admin/pages_helper.rb +6 -0
- data/app/helpers/panda/cms/admin/posts_helper.rb +48 -0
- data/app/helpers/panda/cms/application_helper.rb +120 -0
- data/app/helpers/panda/cms/pages_helper.rb +6 -0
- data/app/helpers/panda/cms/theme_helper.rb +18 -0
- data/app/javascript/panda/cms/@editorjs--editorjs.js +2577 -0
- data/app/javascript/panda/cms/@hotwired--stimulus.js +4 -0
- data/app/javascript/panda/cms/@hotwired--turbo.js +160 -0
- data/app/javascript/panda/cms/@rails--actioncable--src.js +4 -0
- data/app/javascript/panda/cms/application_panda_cms.js +39 -0
- data/app/javascript/panda/cms/controllers/dashboard_controller.js +7 -0
- data/app/javascript/panda/cms/controllers/editor_form_controller.js +77 -0
- data/app/javascript/panda/cms/controllers/editor_iframe_controller.js +320 -0
- data/app/javascript/panda/cms/controllers/index.js +48 -0
- data/app/javascript/panda/cms/controllers/slug_controller.js +87 -0
- data/app/javascript/panda/cms/editor/css_extractor.js +80 -0
- data/app/javascript/panda/cms/editor/editor_js_config.js +177 -0
- data/app/javascript/panda/cms/editor/editor_js_initializer.js +285 -0
- data/app/javascript/panda/cms/editor/plain_text_editor.js +110 -0
- data/app/javascript/panda/cms/editor/resource_loader.js +115 -0
- data/app/javascript/panda/cms/tailwindcss-stimulus-components.js +4 -0
- data/app/jobs/panda/cms/application_job.rb +6 -0
- data/app/jobs/panda/cms/record_visit_job.rb +31 -0
- data/app/mailers/panda/cms/application_mailer.rb +8 -0
- data/app/mailers/panda/cms/form_mailer.rb +21 -0
- data/app/models/action_text/rich_text_version.rb +6 -0
- data/app/models/panda/cms/application_record.rb +7 -0
- data/app/models/panda/cms/block.rb +34 -0
- data/app/models/panda/cms/block_content.rb +18 -0
- data/app/models/panda/cms/block_content_version.rb +8 -0
- data/app/models/panda/cms/breadcrumb.rb +12 -0
- data/app/models/panda/cms/current.rb +17 -0
- data/app/models/panda/cms/form.rb +9 -0
- data/app/models/panda/cms/form_submission.rb +7 -0
- data/app/models/panda/cms/menu.rb +52 -0
- data/app/models/panda/cms/menu_item.rb +58 -0
- data/app/models/panda/cms/page.rb +96 -0
- data/app/models/panda/cms/page_version.rb +8 -0
- data/app/models/panda/cms/post.rb +60 -0
- data/app/models/panda/cms/post_version.rb +8 -0
- data/app/models/panda/cms/redirect.rb +11 -0
- data/app/models/panda/cms/template.rb +124 -0
- data/app/models/panda/cms/template_version.rb +8 -0
- data/app/models/panda/cms/user.rb +31 -0
- data/app/models/panda/cms/version.rb +8 -0
- data/app/models/panda/cms/visit.rb +9 -0
- data/app/services/panda/cms/html_to_editor_js_converter.rb +200 -0
- data/app/views/active_storage/blobs/blobs/_blob.html.erb +14 -0
- data/app/views/layouts/action_text/contents/_content.html.erb +3 -0
- data/app/views/layouts/panda/cms/application.html.erb +41 -0
- data/app/views/layouts/panda/cms/public.html.erb +3 -0
- data/app/views/panda/cms/admin/dashboard/show.html.erb +12 -0
- data/app/views/panda/cms/admin/files/index.html.erb +124 -0
- data/app/views/panda/cms/admin/files/show.html.erb +2 -0
- data/app/views/panda/cms/admin/forms/edit.html.erb +0 -0
- data/app/views/panda/cms/admin/forms/index.html.erb +13 -0
- data/app/views/panda/cms/admin/forms/new.html.erb +15 -0
- data/app/views/panda/cms/admin/forms/show.html.erb +35 -0
- data/app/views/panda/cms/admin/menus/index.html.erb +8 -0
- data/app/views/panda/cms/admin/pages/edit.html.erb +36 -0
- data/app/views/panda/cms/admin/pages/index.html.erb +22 -0
- data/app/views/panda/cms/admin/pages/new.html.erb +15 -0
- data/app/views/panda/cms/admin/pages/show.html.erb +1 -0
- data/app/views/panda/cms/admin/posts/_form.html.erb +29 -0
- data/app/views/panda/cms/admin/posts/edit.html.erb +6 -0
- data/app/views/panda/cms/admin/posts/index.html.erb +18 -0
- data/app/views/panda/cms/admin/posts/new.html.erb +6 -0
- data/app/views/panda/cms/admin/sessions/new.html.erb +17 -0
- data/app/views/panda/cms/admin/settings/bulk_editor/new.html.erb +68 -0
- data/app/views/panda/cms/admin/settings/index.html.erb +21 -0
- data/app/views/panda/cms/admin/settings/insta.html +4 -0
- data/app/views/panda/cms/admin/shared/_breadcrumbs.html.erb +28 -0
- data/app/views/panda/cms/admin/shared/_flash.html.erb +5 -0
- data/app/views/panda/cms/admin/shared/_sidebar.html.erb +41 -0
- data/app/views/panda/cms/form_mailer/notification_email.html.erb +11 -0
- data/app/views/panda/cms/shared/_editor.html.erb +0 -0
- data/app/views/panda/cms/shared/_favicons.html.erb +9 -0
- data/app/views/panda/cms/shared/_footer.html.erb +2 -0
- data/app/views/panda/cms/shared/_header.html.erb +15 -0
- data/app/views/panda/cms/shared/_importmap.html.erb +33 -0
- data/config/importmap.rb +13 -0
- data/config/initializers/inflections.rb +3 -0
- data/config/initializers/panda/cms/form_errors.rb +38 -0
- data/config/initializers/panda/cms/healthcheck_log_silencer.rb +11 -0
- data/config/initializers/panda/cms/paper_trail.rb +7 -0
- data/config/initializers/panda/cms.rb +10 -0
- data/config/initializers/zeitwork.rb +3 -0
- data/config/locales/en.yml +49 -0
- data/config/puma/test.rb +9 -0
- data/config/routes.rb +48 -0
- data/config/tailwind.config.js +37 -0
- data/db/migrate/20240205223709_create_panda_cms_pages.rb +9 -0
- data/db/migrate/20240219213327_create_panda_cms_page_versions.rb +14 -0
- data/db/migrate/20240303002805_create_panda_cms_templates.rb +11 -0
- data/db/migrate/20240303003434_create_panda_cms_template_versions.rb +14 -0
- data/db/migrate/20240303022441_create_panda_cms_blocks.rb +13 -0
- data/db/migrate/20240303024256_create_panda_cms_block_contents.rb +10 -0
- data/db/migrate/20240303024746_create_panda_cms_block_content_versions.rb +14 -0
- data/db/migrate/20240303233238_add_panda_cms_menu_table.rb +10 -0
- data/db/migrate/20240303234724_add_panda_cms_menu_item_table.rb +12 -0
- data/db/migrate/20240304134343_add_parent_id_to_panda_cms_pages.rb +5 -0
- data/db/migrate/20240305000000_convert_html_content_to_editor_js.rb +82 -0
- data/db/migrate/20240315125411_add_status_to_panda_cms_pages.rb +9 -0
- data/db/migrate/20240315125421_add_nested_sets_to_panda_cms_pages.rb +16 -0
- data/db/migrate/20240316212822_add_kind_to_panda_cms_menus.rb +6 -0
- data/db/migrate/20240316221425_add_start_page_to_panda_cms_menus.rb +5 -0
- data/db/migrate/20240316230706_add_nested_to_panda_cms_menu_items.rb +24 -0
- data/db/migrate/20240317010532_create_panda_cms_users.rb +12 -0
- data/db/migrate/20240317161534_add_max_uses_to_panda_cms_template.rb +7 -0
- data/db/migrate/20240317163053_reset_counter_cache_on_panda_cms_template.rb +5 -0
- data/db/migrate/20240317214827_create_panda_cms_redirects.rb +14 -0
- data/db/migrate/20240317230622_create_panda_cms_visits.rb +13 -0
- data/db/migrate/20240324205703_create_active_storage_tables.active_storage.rb +58 -0
- data/db/migrate/20240408084718_default_panda_cms_users_admin_to_false.rb +5 -0
- data/db/migrate/20240701225422_add_service_name_to_active_storage_blobs.active_storage.rb +22 -0
- data/db/migrate/20240701225423_create_active_storage_variant_records.active_storage.rb +28 -0
- data/db/migrate/20240701225424_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb +8 -0
- data/db/migrate/20240804235210_create_panda_cms_forms.rb +11 -0
- data/db/migrate/20240805013612_create_panda_cms_form_submissions.rb +9 -0
- data/db/migrate/20240805121123_create_panda_cms_posts.rb +27 -0
- data/db/migrate/20240805123104_create_panda_cms_post_versions.rb +14 -0
- data/db/migrate/20240806112735_fix_panda_cms_visits_column_names.rb +13 -0
- data/db/migrate/20240806204412_add_completion_path_to_panda_cms_forms.rb +5 -0
- data/db/migrate/20240820081917_change_form_submissions_to_submission_count.rb +5 -0
- data/db/migrate/20240904200605_create_action_text_tables.action_text.rb +24 -0
- data/db/migrate/20240923234535_add_depth_to_panda_cms_menus.rb +11 -0
- data/db/migrate/20241031205109_add_cached_content_to_panda_cms_block_contents.rb +5 -0
- data/db/migrate/20241119214548_convert_post_content_to_editor_js.rb +35 -0
- data/db/migrate/20241119214549_remove_action_text_from_posts.rb +9 -0
- data/db/migrate/20241120000419_remove_post_tag_references.rb +19 -0
- data/db/migrate/20241120110943_add_editor_js_to_posts.rb +27 -0
- data/db/migrate/20241120113859_add_cached_content_to_panda_cms_posts.rb +5 -0
- data/db/migrate/20241123234140_remove_post_tag_id_from_posts.rb +5 -0
- data/db/migrate/migrate +1 -0
- data/db/seeds.rb +5 -0
- data/lib/generators/panda/cms/install_generator.rb +29 -0
- data/lib/panda/cms/bulk_editor.rb +171 -0
- data/lib/panda/cms/demo_site_generator.rb +67 -0
- data/lib/panda/cms/editor_js/blocks/alert.rb +34 -0
- data/lib/panda/cms/editor_js/blocks/base.rb +33 -0
- data/lib/panda/cms/editor_js/blocks/header.rb +15 -0
- data/lib/panda/cms/editor_js/blocks/image.rb +36 -0
- data/lib/panda/cms/editor_js/blocks/list.rb +32 -0
- data/lib/panda/cms/editor_js/blocks/paragraph.rb +15 -0
- data/lib/panda/cms/editor_js/blocks/quote.rb +41 -0
- data/lib/panda/cms/editor_js/blocks/table.rb +50 -0
- data/lib/panda/cms/editor_js/renderer.rb +124 -0
- data/lib/panda/cms/editor_js.rb +16 -0
- data/lib/panda/cms/editor_js_content.rb +21 -0
- data/lib/panda/cms/engine.rb +257 -0
- data/lib/panda/cms/exceptions_app.rb +26 -0
- data/lib/panda/cms/railtie.rb +11 -0
- data/lib/panda/cms/slug.rb +24 -0
- data/lib/panda/cms.rb +0 -0
- data/lib/panda-cms/version.rb +5 -0
- data/lib/panda-cms.rb +81 -0
- data/lib/tasks/panda_cms.rake +54 -0
- data/lib/templates/erb/scaffold/_form.html.erb.tt +43 -0
- data/lib/templates/erb/scaffold/edit.html.erb.tt +8 -0
- data/lib/templates/erb/scaffold/index.html.erb.tt +14 -0
- data/lib/templates/erb/scaffold/new.html.erb.tt +7 -0
- data/lib/templates/erb/scaffold/partial.html.erb.tt +22 -0
- data/lib/templates/erb/scaffold/show.html.erb.tt +15 -0
- data/public/panda-cms-assets/favicons/android-chrome-192x192.png +0 -0
- data/public/panda-cms-assets/favicons/android-chrome-512x512.png +0 -0
- data/public/panda-cms-assets/favicons/apple-touch-icon.png +0 -0
- data/public/panda-cms-assets/favicons/browserconfig.xml +9 -0
- data/public/panda-cms-assets/favicons/favicon-16x16.png +0 -0
- data/public/panda-cms-assets/favicons/favicon-32x32.png +0 -0
- data/public/panda-cms-assets/favicons/favicon.ico +0 -0
- data/public/panda-cms-assets/favicons/mstile-150x150.png +0 -0
- data/public/panda-cms-assets/favicons/safari-pinned-tab.svg +61 -0
- data/public/panda-cms-assets/favicons/site.webmanifest +14 -0
- data/public/panda-cms-assets/panda-logo-screenprint.png +0 -0
- data/public/panda-cms-assets/panda-nav.png +0 -0
- data/public/panda-cms-assets/rich_text_editor.css +568 -0
- metadata +654 -0
@@ -0,0 +1,2808 @@
|
|
1
|
+
*, ::before, ::after {
|
2
|
+
--tw-border-spacing-x: 0;
|
3
|
+
--tw-border-spacing-y: 0;
|
4
|
+
--tw-translate-x: 0;
|
5
|
+
--tw-translate-y: 0;
|
6
|
+
--tw-rotate: 0;
|
7
|
+
--tw-skew-x: 0;
|
8
|
+
--tw-skew-y: 0;
|
9
|
+
--tw-scale-x: 1;
|
10
|
+
--tw-scale-y: 1;
|
11
|
+
--tw-pan-x: ;
|
12
|
+
--tw-pan-y: ;
|
13
|
+
--tw-pinch-zoom: ;
|
14
|
+
--tw-scroll-snap-strictness: proximity;
|
15
|
+
--tw-gradient-from-position: ;
|
16
|
+
--tw-gradient-via-position: ;
|
17
|
+
--tw-gradient-to-position: ;
|
18
|
+
--tw-ordinal: ;
|
19
|
+
--tw-slashed-zero: ;
|
20
|
+
--tw-numeric-figure: ;
|
21
|
+
--tw-numeric-spacing: ;
|
22
|
+
--tw-numeric-fraction: ;
|
23
|
+
--tw-ring-inset: ;
|
24
|
+
--tw-ring-offset-width: 0px;
|
25
|
+
--tw-ring-offset-color: #fff;
|
26
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
27
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
28
|
+
--tw-ring-shadow: 0 0 #0000;
|
29
|
+
--tw-shadow: 0 0 #0000;
|
30
|
+
--tw-shadow-colored: 0 0 #0000;
|
31
|
+
--tw-blur: ;
|
32
|
+
--tw-brightness: ;
|
33
|
+
--tw-contrast: ;
|
34
|
+
--tw-grayscale: ;
|
35
|
+
--tw-hue-rotate: ;
|
36
|
+
--tw-invert: ;
|
37
|
+
--tw-saturate: ;
|
38
|
+
--tw-sepia: ;
|
39
|
+
--tw-drop-shadow: ;
|
40
|
+
--tw-backdrop-blur: ;
|
41
|
+
--tw-backdrop-brightness: ;
|
42
|
+
--tw-backdrop-contrast: ;
|
43
|
+
--tw-backdrop-grayscale: ;
|
44
|
+
--tw-backdrop-hue-rotate: ;
|
45
|
+
--tw-backdrop-invert: ;
|
46
|
+
--tw-backdrop-opacity: ;
|
47
|
+
--tw-backdrop-saturate: ;
|
48
|
+
--tw-backdrop-sepia: ;
|
49
|
+
--tw-contain-size: ;
|
50
|
+
--tw-contain-layout: ;
|
51
|
+
--tw-contain-paint: ;
|
52
|
+
--tw-contain-style: ;
|
53
|
+
}
|
54
|
+
|
55
|
+
::backdrop {
|
56
|
+
--tw-border-spacing-x: 0;
|
57
|
+
--tw-border-spacing-y: 0;
|
58
|
+
--tw-translate-x: 0;
|
59
|
+
--tw-translate-y: 0;
|
60
|
+
--tw-rotate: 0;
|
61
|
+
--tw-skew-x: 0;
|
62
|
+
--tw-skew-y: 0;
|
63
|
+
--tw-scale-x: 1;
|
64
|
+
--tw-scale-y: 1;
|
65
|
+
--tw-pan-x: ;
|
66
|
+
--tw-pan-y: ;
|
67
|
+
--tw-pinch-zoom: ;
|
68
|
+
--tw-scroll-snap-strictness: proximity;
|
69
|
+
--tw-gradient-from-position: ;
|
70
|
+
--tw-gradient-via-position: ;
|
71
|
+
--tw-gradient-to-position: ;
|
72
|
+
--tw-ordinal: ;
|
73
|
+
--tw-slashed-zero: ;
|
74
|
+
--tw-numeric-figure: ;
|
75
|
+
--tw-numeric-spacing: ;
|
76
|
+
--tw-numeric-fraction: ;
|
77
|
+
--tw-ring-inset: ;
|
78
|
+
--tw-ring-offset-width: 0px;
|
79
|
+
--tw-ring-offset-color: #fff;
|
80
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
81
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
82
|
+
--tw-ring-shadow: 0 0 #0000;
|
83
|
+
--tw-shadow: 0 0 #0000;
|
84
|
+
--tw-shadow-colored: 0 0 #0000;
|
85
|
+
--tw-blur: ;
|
86
|
+
--tw-brightness: ;
|
87
|
+
--tw-contrast: ;
|
88
|
+
--tw-grayscale: ;
|
89
|
+
--tw-hue-rotate: ;
|
90
|
+
--tw-invert: ;
|
91
|
+
--tw-saturate: ;
|
92
|
+
--tw-sepia: ;
|
93
|
+
--tw-drop-shadow: ;
|
94
|
+
--tw-backdrop-blur: ;
|
95
|
+
--tw-backdrop-brightness: ;
|
96
|
+
--tw-backdrop-contrast: ;
|
97
|
+
--tw-backdrop-grayscale: ;
|
98
|
+
--tw-backdrop-hue-rotate: ;
|
99
|
+
--tw-backdrop-invert: ;
|
100
|
+
--tw-backdrop-opacity: ;
|
101
|
+
--tw-backdrop-saturate: ;
|
102
|
+
--tw-backdrop-sepia: ;
|
103
|
+
--tw-contain-size: ;
|
104
|
+
--tw-contain-layout: ;
|
105
|
+
--tw-contain-paint: ;
|
106
|
+
--tw-contain-style: ;
|
107
|
+
}
|
108
|
+
|
109
|
+
/*
|
110
|
+
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
|
111
|
+
*/
|
112
|
+
|
113
|
+
/*
|
114
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
115
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
116
|
+
*/
|
117
|
+
|
118
|
+
*,
|
119
|
+
::before,
|
120
|
+
::after {
|
121
|
+
box-sizing: border-box;
|
122
|
+
/* 1 */
|
123
|
+
border-width: 0;
|
124
|
+
/* 2 */
|
125
|
+
border-style: solid;
|
126
|
+
/* 2 */
|
127
|
+
border-color: currentColor;
|
128
|
+
/* 2 */
|
129
|
+
}
|
130
|
+
|
131
|
+
::before,
|
132
|
+
::after {
|
133
|
+
--tw-content: '';
|
134
|
+
}
|
135
|
+
|
136
|
+
/*
|
137
|
+
1. Use a consistent sensible line-height in all browsers.
|
138
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
139
|
+
3. Use a more readable tab size.
|
140
|
+
4. Use the user's configured `sans` font-family by default.
|
141
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
142
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
143
|
+
7. Disable tap highlights on iOS
|
144
|
+
*/
|
145
|
+
|
146
|
+
html,
|
147
|
+
:host {
|
148
|
+
line-height: 1.5;
|
149
|
+
/* 1 */
|
150
|
+
-webkit-text-size-adjust: 100%;
|
151
|
+
/* 2 */
|
152
|
+
-moz-tab-size: 4;
|
153
|
+
/* 3 */
|
154
|
+
-o-tab-size: 4;
|
155
|
+
tab-size: 4;
|
156
|
+
/* 3 */
|
157
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
158
|
+
/* 4 */
|
159
|
+
font-feature-settings: normal;
|
160
|
+
/* 5 */
|
161
|
+
font-variation-settings: normal;
|
162
|
+
/* 6 */
|
163
|
+
-webkit-tap-highlight-color: transparent;
|
164
|
+
/* 7 */
|
165
|
+
}
|
166
|
+
|
167
|
+
/*
|
168
|
+
1. Remove the margin in all browsers.
|
169
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
170
|
+
*/
|
171
|
+
|
172
|
+
body {
|
173
|
+
margin: 0;
|
174
|
+
/* 1 */
|
175
|
+
line-height: inherit;
|
176
|
+
/* 2 */
|
177
|
+
}
|
178
|
+
|
179
|
+
/*
|
180
|
+
1. Add the correct height in Firefox.
|
181
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
182
|
+
3. Ensure horizontal rules are visible by default.
|
183
|
+
*/
|
184
|
+
|
185
|
+
hr {
|
186
|
+
height: 0;
|
187
|
+
/* 1 */
|
188
|
+
color: inherit;
|
189
|
+
/* 2 */
|
190
|
+
border-top-width: 1px;
|
191
|
+
/* 3 */
|
192
|
+
}
|
193
|
+
|
194
|
+
/*
|
195
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
196
|
+
*/
|
197
|
+
|
198
|
+
abbr:where([title]) {
|
199
|
+
-webkit-text-decoration: underline dotted;
|
200
|
+
text-decoration: underline dotted;
|
201
|
+
}
|
202
|
+
|
203
|
+
/*
|
204
|
+
Remove the default font size and weight for headings.
|
205
|
+
*/
|
206
|
+
|
207
|
+
h1,
|
208
|
+
h2,
|
209
|
+
h3,
|
210
|
+
h4,
|
211
|
+
h5,
|
212
|
+
h6 {
|
213
|
+
font-size: inherit;
|
214
|
+
font-weight: inherit;
|
215
|
+
}
|
216
|
+
|
217
|
+
/*
|
218
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
219
|
+
*/
|
220
|
+
|
221
|
+
a {
|
222
|
+
color: inherit;
|
223
|
+
text-decoration: inherit;
|
224
|
+
}
|
225
|
+
|
226
|
+
/*
|
227
|
+
Add the correct font weight in Edge and Safari.
|
228
|
+
*/
|
229
|
+
|
230
|
+
b,
|
231
|
+
strong {
|
232
|
+
font-weight: bolder;
|
233
|
+
}
|
234
|
+
|
235
|
+
/*
|
236
|
+
1. Use the user's configured `mono` font-family by default.
|
237
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
238
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
239
|
+
4. Correct the odd `em` font sizing in all browsers.
|
240
|
+
*/
|
241
|
+
|
242
|
+
code,
|
243
|
+
kbd,
|
244
|
+
samp,
|
245
|
+
pre {
|
246
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
247
|
+
/* 1 */
|
248
|
+
font-feature-settings: normal;
|
249
|
+
/* 2 */
|
250
|
+
font-variation-settings: normal;
|
251
|
+
/* 3 */
|
252
|
+
font-size: 1em;
|
253
|
+
/* 4 */
|
254
|
+
}
|
255
|
+
|
256
|
+
/*
|
257
|
+
Add the correct font size in all browsers.
|
258
|
+
*/
|
259
|
+
|
260
|
+
small {
|
261
|
+
font-size: 80%;
|
262
|
+
}
|
263
|
+
|
264
|
+
/*
|
265
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
266
|
+
*/
|
267
|
+
|
268
|
+
sub,
|
269
|
+
sup {
|
270
|
+
font-size: 75%;
|
271
|
+
line-height: 0;
|
272
|
+
position: relative;
|
273
|
+
vertical-align: baseline;
|
274
|
+
}
|
275
|
+
|
276
|
+
sub {
|
277
|
+
bottom: -0.25em;
|
278
|
+
}
|
279
|
+
|
280
|
+
sup {
|
281
|
+
top: -0.5em;
|
282
|
+
}
|
283
|
+
|
284
|
+
/*
|
285
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
286
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
287
|
+
3. Remove gaps between table borders by default.
|
288
|
+
*/
|
289
|
+
|
290
|
+
table {
|
291
|
+
text-indent: 0;
|
292
|
+
/* 1 */
|
293
|
+
border-color: inherit;
|
294
|
+
/* 2 */
|
295
|
+
border-collapse: collapse;
|
296
|
+
/* 3 */
|
297
|
+
}
|
298
|
+
|
299
|
+
/*
|
300
|
+
1. Change the font styles in all browsers.
|
301
|
+
2. Remove the margin in Firefox and Safari.
|
302
|
+
3. Remove default padding in all browsers.
|
303
|
+
*/
|
304
|
+
|
305
|
+
button,
|
306
|
+
input,
|
307
|
+
optgroup,
|
308
|
+
select,
|
309
|
+
textarea {
|
310
|
+
font-family: inherit;
|
311
|
+
/* 1 */
|
312
|
+
font-feature-settings: inherit;
|
313
|
+
/* 1 */
|
314
|
+
font-variation-settings: inherit;
|
315
|
+
/* 1 */
|
316
|
+
font-size: 100%;
|
317
|
+
/* 1 */
|
318
|
+
font-weight: inherit;
|
319
|
+
/* 1 */
|
320
|
+
line-height: inherit;
|
321
|
+
/* 1 */
|
322
|
+
letter-spacing: inherit;
|
323
|
+
/* 1 */
|
324
|
+
color: inherit;
|
325
|
+
/* 1 */
|
326
|
+
margin: 0;
|
327
|
+
/* 2 */
|
328
|
+
padding: 0;
|
329
|
+
/* 3 */
|
330
|
+
}
|
331
|
+
|
332
|
+
/*
|
333
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
334
|
+
*/
|
335
|
+
|
336
|
+
button,
|
337
|
+
select {
|
338
|
+
text-transform: none;
|
339
|
+
}
|
340
|
+
|
341
|
+
/*
|
342
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
343
|
+
2. Remove default button styles.
|
344
|
+
*/
|
345
|
+
|
346
|
+
button,
|
347
|
+
input:where([type='button']),
|
348
|
+
input:where([type='reset']),
|
349
|
+
input:where([type='submit']) {
|
350
|
+
-webkit-appearance: button;
|
351
|
+
/* 1 */
|
352
|
+
background-color: transparent;
|
353
|
+
/* 2 */
|
354
|
+
background-image: none;
|
355
|
+
/* 2 */
|
356
|
+
}
|
357
|
+
|
358
|
+
/*
|
359
|
+
Use the modern Firefox focus style for all focusable elements.
|
360
|
+
*/
|
361
|
+
|
362
|
+
:-moz-focusring {
|
363
|
+
outline: auto;
|
364
|
+
}
|
365
|
+
|
366
|
+
/*
|
367
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
368
|
+
*/
|
369
|
+
|
370
|
+
:-moz-ui-invalid {
|
371
|
+
box-shadow: none;
|
372
|
+
}
|
373
|
+
|
374
|
+
/*
|
375
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
376
|
+
*/
|
377
|
+
|
378
|
+
progress {
|
379
|
+
vertical-align: baseline;
|
380
|
+
}
|
381
|
+
|
382
|
+
/*
|
383
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
384
|
+
*/
|
385
|
+
|
386
|
+
::-webkit-inner-spin-button,
|
387
|
+
::-webkit-outer-spin-button {
|
388
|
+
height: auto;
|
389
|
+
}
|
390
|
+
|
391
|
+
/*
|
392
|
+
1. Correct the odd appearance in Chrome and Safari.
|
393
|
+
2. Correct the outline style in Safari.
|
394
|
+
*/
|
395
|
+
|
396
|
+
[type='search'] {
|
397
|
+
-webkit-appearance: textfield;
|
398
|
+
/* 1 */
|
399
|
+
outline-offset: -2px;
|
400
|
+
/* 2 */
|
401
|
+
}
|
402
|
+
|
403
|
+
/*
|
404
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
405
|
+
*/
|
406
|
+
|
407
|
+
::-webkit-search-decoration {
|
408
|
+
-webkit-appearance: none;
|
409
|
+
}
|
410
|
+
|
411
|
+
/*
|
412
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
413
|
+
2. Change font properties to `inherit` in Safari.
|
414
|
+
*/
|
415
|
+
|
416
|
+
::-webkit-file-upload-button {
|
417
|
+
-webkit-appearance: button;
|
418
|
+
/* 1 */
|
419
|
+
font: inherit;
|
420
|
+
/* 2 */
|
421
|
+
}
|
422
|
+
|
423
|
+
/*
|
424
|
+
Add the correct display in Chrome and Safari.
|
425
|
+
*/
|
426
|
+
|
427
|
+
summary {
|
428
|
+
display: list-item;
|
429
|
+
}
|
430
|
+
|
431
|
+
/*
|
432
|
+
Removes the default spacing and border for appropriate elements.
|
433
|
+
*/
|
434
|
+
|
435
|
+
blockquote,
|
436
|
+
dl,
|
437
|
+
dd,
|
438
|
+
h1,
|
439
|
+
h2,
|
440
|
+
h3,
|
441
|
+
h4,
|
442
|
+
h5,
|
443
|
+
h6,
|
444
|
+
hr,
|
445
|
+
figure,
|
446
|
+
p,
|
447
|
+
pre {
|
448
|
+
margin: 0;
|
449
|
+
}
|
450
|
+
|
451
|
+
fieldset {
|
452
|
+
margin: 0;
|
453
|
+
padding: 0;
|
454
|
+
}
|
455
|
+
|
456
|
+
legend {
|
457
|
+
padding: 0;
|
458
|
+
}
|
459
|
+
|
460
|
+
ol,
|
461
|
+
ul,
|
462
|
+
menu {
|
463
|
+
list-style: none;
|
464
|
+
margin: 0;
|
465
|
+
padding: 0;
|
466
|
+
}
|
467
|
+
|
468
|
+
/*
|
469
|
+
Reset default styling for dialogs.
|
470
|
+
*/
|
471
|
+
|
472
|
+
dialog {
|
473
|
+
padding: 0;
|
474
|
+
}
|
475
|
+
|
476
|
+
/*
|
477
|
+
Prevent resizing textareas horizontally by default.
|
478
|
+
*/
|
479
|
+
|
480
|
+
textarea {
|
481
|
+
resize: vertical;
|
482
|
+
}
|
483
|
+
|
484
|
+
/*
|
485
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
486
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
487
|
+
*/
|
488
|
+
|
489
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
490
|
+
opacity: 1;
|
491
|
+
/* 1 */
|
492
|
+
color: #9ca3af;
|
493
|
+
/* 2 */
|
494
|
+
}
|
495
|
+
|
496
|
+
input::placeholder,
|
497
|
+
textarea::placeholder {
|
498
|
+
opacity: 1;
|
499
|
+
/* 1 */
|
500
|
+
color: #9ca3af;
|
501
|
+
/* 2 */
|
502
|
+
}
|
503
|
+
|
504
|
+
/*
|
505
|
+
Set the default cursor for buttons.
|
506
|
+
*/
|
507
|
+
|
508
|
+
button,
|
509
|
+
[role="button"] {
|
510
|
+
cursor: pointer;
|
511
|
+
}
|
512
|
+
|
513
|
+
/*
|
514
|
+
Make sure disabled buttons don't get the pointer cursor.
|
515
|
+
*/
|
516
|
+
|
517
|
+
:disabled {
|
518
|
+
cursor: default;
|
519
|
+
}
|
520
|
+
|
521
|
+
/*
|
522
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
523
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
524
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
525
|
+
*/
|
526
|
+
|
527
|
+
img,
|
528
|
+
svg,
|
529
|
+
video,
|
530
|
+
canvas,
|
531
|
+
audio,
|
532
|
+
iframe,
|
533
|
+
embed,
|
534
|
+
object {
|
535
|
+
display: block;
|
536
|
+
/* 1 */
|
537
|
+
vertical-align: middle;
|
538
|
+
/* 2 */
|
539
|
+
}
|
540
|
+
|
541
|
+
/*
|
542
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
543
|
+
*/
|
544
|
+
|
545
|
+
img,
|
546
|
+
video {
|
547
|
+
max-width: 100%;
|
548
|
+
height: auto;
|
549
|
+
}
|
550
|
+
|
551
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
552
|
+
|
553
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
554
|
+
display: none;
|
555
|
+
}
|
556
|
+
|
557
|
+
[type='text'],input:where(:not([type])),[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 {
|
558
|
+
-webkit-appearance: none;
|
559
|
+
-moz-appearance: none;
|
560
|
+
appearance: none;
|
561
|
+
background-color: #fff;
|
562
|
+
border-color: #6b7280;
|
563
|
+
border-width: 1px;
|
564
|
+
border-radius: 0px;
|
565
|
+
padding-top: 0.5rem;
|
566
|
+
padding-right: 0.75rem;
|
567
|
+
padding-bottom: 0.5rem;
|
568
|
+
padding-left: 0.75rem;
|
569
|
+
font-size: 1rem;
|
570
|
+
line-height: 1.5rem;
|
571
|
+
--tw-shadow: 0 0 #0000;
|
572
|
+
}
|
573
|
+
|
574
|
+
[type='text']:focus, input:where(:not([type])):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 {
|
575
|
+
outline: 2px solid transparent;
|
576
|
+
outline-offset: 2px;
|
577
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
578
|
+
--tw-ring-offset-width: 0px;
|
579
|
+
--tw-ring-offset-color: #fff;
|
580
|
+
--tw-ring-color: #2563eb;
|
581
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
582
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
583
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
584
|
+
border-color: #2563eb;
|
585
|
+
}
|
586
|
+
|
587
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
588
|
+
color: #6b7280;
|
589
|
+
opacity: 1;
|
590
|
+
}
|
591
|
+
|
592
|
+
input::placeholder,textarea::placeholder {
|
593
|
+
color: #6b7280;
|
594
|
+
opacity: 1;
|
595
|
+
}
|
596
|
+
|
597
|
+
::-webkit-datetime-edit-fields-wrapper {
|
598
|
+
padding: 0;
|
599
|
+
}
|
600
|
+
|
601
|
+
::-webkit-date-and-time-value {
|
602
|
+
min-height: 1.5em;
|
603
|
+
text-align: inherit;
|
604
|
+
}
|
605
|
+
|
606
|
+
::-webkit-datetime-edit {
|
607
|
+
display: inline-flex;
|
608
|
+
}
|
609
|
+
|
610
|
+
::-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 {
|
611
|
+
padding-top: 0;
|
612
|
+
padding-bottom: 0;
|
613
|
+
}
|
614
|
+
|
615
|
+
select {
|
616
|
+
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");
|
617
|
+
background-position: right 0.5rem center;
|
618
|
+
background-repeat: no-repeat;
|
619
|
+
background-size: 1.5em 1.5em;
|
620
|
+
padding-right: 2.5rem;
|
621
|
+
-webkit-print-color-adjust: exact;
|
622
|
+
print-color-adjust: exact;
|
623
|
+
}
|
624
|
+
|
625
|
+
[multiple],[size]:where(select:not([size="1"])) {
|
626
|
+
background-image: initial;
|
627
|
+
background-position: initial;
|
628
|
+
background-repeat: unset;
|
629
|
+
background-size: initial;
|
630
|
+
padding-right: 0.75rem;
|
631
|
+
-webkit-print-color-adjust: unset;
|
632
|
+
print-color-adjust: unset;
|
633
|
+
}
|
634
|
+
|
635
|
+
[type='checkbox'],[type='radio'] {
|
636
|
+
-webkit-appearance: none;
|
637
|
+
-moz-appearance: none;
|
638
|
+
appearance: none;
|
639
|
+
padding: 0;
|
640
|
+
-webkit-print-color-adjust: exact;
|
641
|
+
print-color-adjust: exact;
|
642
|
+
display: inline-block;
|
643
|
+
vertical-align: middle;
|
644
|
+
background-origin: border-box;
|
645
|
+
-webkit-user-select: none;
|
646
|
+
-moz-user-select: none;
|
647
|
+
user-select: none;
|
648
|
+
flex-shrink: 0;
|
649
|
+
height: 1rem;
|
650
|
+
width: 1rem;
|
651
|
+
color: #2563eb;
|
652
|
+
background-color: #fff;
|
653
|
+
border-color: #6b7280;
|
654
|
+
border-width: 1px;
|
655
|
+
--tw-shadow: 0 0 #0000;
|
656
|
+
}
|
657
|
+
|
658
|
+
[type='checkbox'] {
|
659
|
+
border-radius: 0px;
|
660
|
+
}
|
661
|
+
|
662
|
+
[type='radio'] {
|
663
|
+
border-radius: 100%;
|
664
|
+
}
|
665
|
+
|
666
|
+
[type='checkbox']:focus,[type='radio']:focus {
|
667
|
+
outline: 2px solid transparent;
|
668
|
+
outline-offset: 2px;
|
669
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
670
|
+
--tw-ring-offset-width: 2px;
|
671
|
+
--tw-ring-offset-color: #fff;
|
672
|
+
--tw-ring-color: #2563eb;
|
673
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
674
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
675
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
676
|
+
}
|
677
|
+
|
678
|
+
[type='checkbox']:checked,[type='radio']:checked {
|
679
|
+
border-color: transparent;
|
680
|
+
background-color: currentColor;
|
681
|
+
background-size: 100% 100%;
|
682
|
+
background-position: center;
|
683
|
+
background-repeat: no-repeat;
|
684
|
+
}
|
685
|
+
|
686
|
+
[type='checkbox']:checked {
|
687
|
+
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");
|
688
|
+
}
|
689
|
+
|
690
|
+
@media (forced-colors: active) {
|
691
|
+
[type='checkbox']:checked {
|
692
|
+
-webkit-appearance: auto;
|
693
|
+
-moz-appearance: auto;
|
694
|
+
appearance: auto;
|
695
|
+
}
|
696
|
+
}
|
697
|
+
|
698
|
+
[type='radio']:checked {
|
699
|
+
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");
|
700
|
+
}
|
701
|
+
|
702
|
+
@media (forced-colors: active) {
|
703
|
+
[type='radio']:checked {
|
704
|
+
-webkit-appearance: auto;
|
705
|
+
-moz-appearance: auto;
|
706
|
+
appearance: auto;
|
707
|
+
}
|
708
|
+
}
|
709
|
+
|
710
|
+
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
|
711
|
+
border-color: transparent;
|
712
|
+
background-color: currentColor;
|
713
|
+
}
|
714
|
+
|
715
|
+
[type='checkbox']:indeterminate {
|
716
|
+
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");
|
717
|
+
border-color: transparent;
|
718
|
+
background-color: currentColor;
|
719
|
+
background-size: 100% 100%;
|
720
|
+
background-position: center;
|
721
|
+
background-repeat: no-repeat;
|
722
|
+
}
|
723
|
+
|
724
|
+
@media (forced-colors: active) {
|
725
|
+
[type='checkbox']:indeterminate {
|
726
|
+
-webkit-appearance: auto;
|
727
|
+
-moz-appearance: auto;
|
728
|
+
appearance: auto;
|
729
|
+
}
|
730
|
+
}
|
731
|
+
|
732
|
+
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
|
733
|
+
border-color: transparent;
|
734
|
+
background-color: currentColor;
|
735
|
+
}
|
736
|
+
|
737
|
+
[type='file'] {
|
738
|
+
background: unset;
|
739
|
+
border-color: inherit;
|
740
|
+
border-width: 0;
|
741
|
+
border-radius: 0;
|
742
|
+
padding: 0;
|
743
|
+
font-size: unset;
|
744
|
+
line-height: inherit;
|
745
|
+
}
|
746
|
+
|
747
|
+
[type='file']:focus {
|
748
|
+
outline: 1px solid ButtonText;
|
749
|
+
outline: 1px auto -webkit-focus-ring-color;
|
750
|
+
}
|
751
|
+
|
752
|
+
html[data-theme="default"] {
|
753
|
+
--color-white: 249 249 249;
|
754
|
+
/* #F9F9F9 */
|
755
|
+
--color-black: 26 22 29;
|
756
|
+
/* #1A161D */
|
757
|
+
--color-light: 238 206 230;
|
758
|
+
/* #EECEE6 */
|
759
|
+
--color-mid: 141 94 183;
|
760
|
+
/* #8D5EB7 */
|
761
|
+
--color-dark: 33 29 73;
|
762
|
+
/* #211D49 */
|
763
|
+
--color-highlight: 208 64 20;
|
764
|
+
/* #D04014 */
|
765
|
+
--color-active: 0 135 85;
|
766
|
+
/* #008755 */
|
767
|
+
--color-warning: 250 207 142;
|
768
|
+
/* #FACF8E */
|
769
|
+
--color-inactive: 216 247 245;
|
770
|
+
/* #d6e4f7 */
|
771
|
+
--color-error: 245 129 129;
|
772
|
+
/* #F58181 */
|
773
|
+
}
|
774
|
+
|
775
|
+
html[data-theme="sky"] {
|
776
|
+
--color-white: 249 249 249;
|
777
|
+
/* #F9F9F9 */
|
778
|
+
--color-black: 26 22 29;
|
779
|
+
/* #1A161D */
|
780
|
+
--color-light: 204 238 242;
|
781
|
+
/* #CCEEF2 */
|
782
|
+
--color-mid: 42 102 159;
|
783
|
+
/* #2A669F */
|
784
|
+
--color-dark: 20 32 74;
|
785
|
+
/* #14204A */
|
786
|
+
--color-highlight: 208 64 20;
|
787
|
+
/* #D04014 */
|
788
|
+
--color-active: 166 211 129;
|
789
|
+
/* #A6D381 */
|
790
|
+
--color-warning: 244 190 102;
|
791
|
+
/* #F4BE66 */
|
792
|
+
--color-inactive: 216 247 245;
|
793
|
+
/* #d6e4f7 */
|
794
|
+
--color-error: 208 64 20;
|
795
|
+
/* #D04014 */
|
796
|
+
}
|
797
|
+
|
798
|
+
a.block-link:after {
|
799
|
+
position: absolute;
|
800
|
+
content: "";
|
801
|
+
inset: 0;
|
802
|
+
}
|
803
|
+
|
804
|
+
.container {
|
805
|
+
width: 100%;
|
806
|
+
}
|
807
|
+
|
808
|
+
@media (min-width: 640px) {
|
809
|
+
.container {
|
810
|
+
max-width: 640px;
|
811
|
+
}
|
812
|
+
}
|
813
|
+
|
814
|
+
@media (min-width: 768px) {
|
815
|
+
.container {
|
816
|
+
max-width: 768px;
|
817
|
+
}
|
818
|
+
}
|
819
|
+
|
820
|
+
@media (min-width: 1024px) {
|
821
|
+
.container {
|
822
|
+
max-width: 1024px;
|
823
|
+
}
|
824
|
+
}
|
825
|
+
|
826
|
+
@media (min-width: 1280px) {
|
827
|
+
.container {
|
828
|
+
max-width: 1280px;
|
829
|
+
}
|
830
|
+
}
|
831
|
+
|
832
|
+
@media (min-width: 1536px) {
|
833
|
+
.container {
|
834
|
+
max-width: 1536px;
|
835
|
+
}
|
836
|
+
}
|
837
|
+
|
838
|
+
.form-input,.form-textarea,.form-select,.form-multiselect {
|
839
|
+
-webkit-appearance: none;
|
840
|
+
-moz-appearance: none;
|
841
|
+
appearance: none;
|
842
|
+
background-color: #fff;
|
843
|
+
border-color: #6b7280;
|
844
|
+
border-width: 1px;
|
845
|
+
border-radius: 0px;
|
846
|
+
padding-top: 0.5rem;
|
847
|
+
padding-right: 0.75rem;
|
848
|
+
padding-bottom: 0.5rem;
|
849
|
+
padding-left: 0.75rem;
|
850
|
+
font-size: 1rem;
|
851
|
+
line-height: 1.5rem;
|
852
|
+
--tw-shadow: 0 0 #0000;
|
853
|
+
}
|
854
|
+
|
855
|
+
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
|
856
|
+
outline: 2px solid transparent;
|
857
|
+
outline-offset: 2px;
|
858
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
859
|
+
--tw-ring-offset-width: 0px;
|
860
|
+
--tw-ring-offset-color: #fff;
|
861
|
+
--tw-ring-color: #2563eb;
|
862
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
863
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
864
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
865
|
+
border-color: #2563eb;
|
866
|
+
}
|
867
|
+
|
868
|
+
.form-select {
|
869
|
+
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");
|
870
|
+
background-position: right 0.5rem center;
|
871
|
+
background-repeat: no-repeat;
|
872
|
+
background-size: 1.5em 1.5em;
|
873
|
+
padding-right: 2.5rem;
|
874
|
+
-webkit-print-color-adjust: exact;
|
875
|
+
print-color-adjust: exact;
|
876
|
+
}
|
877
|
+
|
878
|
+
.form-select:where([size]:not([size="1"])) {
|
879
|
+
background-image: initial;
|
880
|
+
background-position: initial;
|
881
|
+
background-repeat: unset;
|
882
|
+
background-size: initial;
|
883
|
+
padding-right: 0.75rem;
|
884
|
+
-webkit-print-color-adjust: unset;
|
885
|
+
print-color-adjust: unset;
|
886
|
+
}
|
887
|
+
|
888
|
+
.aspect-h-7 {
|
889
|
+
--tw-aspect-h: 7;
|
890
|
+
}
|
891
|
+
|
892
|
+
.aspect-w-10 {
|
893
|
+
position: relative;
|
894
|
+
padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
|
895
|
+
--tw-aspect-w: 10;
|
896
|
+
}
|
897
|
+
|
898
|
+
.aspect-w-10 > * {
|
899
|
+
position: absolute;
|
900
|
+
height: 100%;
|
901
|
+
width: 100%;
|
902
|
+
top: 0;
|
903
|
+
right: 0;
|
904
|
+
bottom: 0;
|
905
|
+
left: 0;
|
906
|
+
}
|
907
|
+
|
908
|
+
.codex-editor__redactor .ce-block .ce-block__content > :not([hidden]) ~ :not([hidden]) {
|
909
|
+
--tw-space-y-reverse: 0;
|
910
|
+
margin-top: calc(1.6rem * calc(1 - var(--tw-space-y-reverse)));
|
911
|
+
margin-bottom: calc(1.6rem * var(--tw-space-y-reverse));
|
912
|
+
}
|
913
|
+
|
914
|
+
.codex-editor__redactor .ce-block .ce-block__content {
|
915
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
916
|
+
font-size: 1rem;
|
917
|
+
line-height: 1.5rem;
|
918
|
+
font-weight: 400;
|
919
|
+
line-height: 1.6;
|
920
|
+
--tw-text-opacity: 1;
|
921
|
+
color: rgb(var(--color-dark) / var(--tw-text-opacity, 1));
|
922
|
+
h1.ce-header {
|
923
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
924
|
+
}
|
925
|
+
h1.ce-header {
|
926
|
+
font-size: 1.875rem;
|
927
|
+
line-height: 2.25rem;
|
928
|
+
}
|
929
|
+
h1.ce-header {
|
930
|
+
font-weight: 600;
|
931
|
+
}
|
932
|
+
h1.ce-header {
|
933
|
+
line-height: 1.2;
|
934
|
+
}
|
935
|
+
@media (min-width: 768px) {
|
936
|
+
h1.ce-header {
|
937
|
+
font-size: 2.25rem;
|
938
|
+
line-height: 2.5rem;
|
939
|
+
}
|
940
|
+
}
|
941
|
+
h2.ce-header {
|
942
|
+
margin-bottom: 1rem;
|
943
|
+
}
|
944
|
+
h2.ce-header {
|
945
|
+
margin-top: 2rem;
|
946
|
+
}
|
947
|
+
h2.ce-header {
|
948
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
949
|
+
}
|
950
|
+
h2.ce-header {
|
951
|
+
font-size: 1.5rem;
|
952
|
+
line-height: 2rem;
|
953
|
+
}
|
954
|
+
h2.ce-header {
|
955
|
+
font-weight: 500;
|
956
|
+
}
|
957
|
+
h2.ce-header {
|
958
|
+
line-height: 1.3;
|
959
|
+
}
|
960
|
+
h3.ce-header {
|
961
|
+
margin-bottom: 1rem;
|
962
|
+
}
|
963
|
+
h3.ce-header {
|
964
|
+
margin-top: 1.5rem;
|
965
|
+
}
|
966
|
+
h3.ce-header {
|
967
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
968
|
+
}
|
969
|
+
h3.ce-header {
|
970
|
+
font-size: 1.25rem;
|
971
|
+
line-height: 1.75rem;
|
972
|
+
}
|
973
|
+
h3.ce-header {
|
974
|
+
font-weight: 400;
|
975
|
+
}
|
976
|
+
h3.ce-header {
|
977
|
+
line-height: 1.3;
|
978
|
+
}
|
979
|
+
p,
|
980
|
+
li {
|
981
|
+
max-width: 85ch;
|
982
|
+
}
|
983
|
+
p,
|
984
|
+
li {
|
985
|
+
line-height: 1.6;
|
986
|
+
}
|
987
|
+
p,
|
988
|
+
li {
|
989
|
+
letter-spacing: 0.025em;
|
990
|
+
}
|
991
|
+
p,
|
992
|
+
li {
|
993
|
+
a {
|
994
|
+
--tw-text-opacity: 1;
|
995
|
+
color: rgb(26 149 151 / var(--tw-text-opacity, 1));
|
996
|
+
}
|
997
|
+
a {
|
998
|
+
text-decoration-line: underline;
|
999
|
+
}
|
1000
|
+
a {
|
1001
|
+
text-underline-offset: 2px;
|
1002
|
+
}
|
1003
|
+
a:hover {
|
1004
|
+
--tw-text-opacity: 1;
|
1005
|
+
color: rgb(21 132 134 / var(--tw-text-opacity, 1));
|
1006
|
+
}
|
1007
|
+
a:focus {
|
1008
|
+
outline-width: 2px;
|
1009
|
+
}
|
1010
|
+
a:focus {
|
1011
|
+
outline-offset: 2px;
|
1012
|
+
}
|
1013
|
+
a:focus {
|
1014
|
+
outline-color: #1A9597;
|
1015
|
+
}
|
1016
|
+
strong,
|
1017
|
+
b {
|
1018
|
+
font-weight: 600;
|
1019
|
+
}
|
1020
|
+
}
|
1021
|
+
p {
|
1022
|
+
margin-bottom: 1rem;
|
1023
|
+
}
|
1024
|
+
.cdx-quote {
|
1025
|
+
margin-bottom: 1rem;
|
1026
|
+
}
|
1027
|
+
.cdx-quote {
|
1028
|
+
border-left-width: 8px;
|
1029
|
+
}
|
1030
|
+
.cdx-quote {
|
1031
|
+
--tw-border-opacity: 1;
|
1032
|
+
border-left-color: rgb(var(--color-active) / var(--tw-border-opacity, 1));
|
1033
|
+
}
|
1034
|
+
.cdx-quote {
|
1035
|
+
--tw-bg-opacity: 1;
|
1036
|
+
background-color: rgb(238 240 243 / var(--tw-bg-opacity, 1));
|
1037
|
+
}
|
1038
|
+
.cdx-quote {
|
1039
|
+
padding: 1.5rem;
|
1040
|
+
}
|
1041
|
+
.cdx-quote {
|
1042
|
+
.cdx-quote__caption {
|
1043
|
+
margin-left: 1.5rem;
|
1044
|
+
}
|
1045
|
+
.cdx-quote__caption {
|
1046
|
+
margin-top: 0.5rem;
|
1047
|
+
}
|
1048
|
+
.cdx-quote__caption {
|
1049
|
+
display: block;
|
1050
|
+
}
|
1051
|
+
.cdx-quote__caption {
|
1052
|
+
font-size: 0.875rem;
|
1053
|
+
line-height: 1.25rem;
|
1054
|
+
}
|
1055
|
+
.cdx-quote__caption {
|
1056
|
+
--tw-text-opacity: 1;
|
1057
|
+
color: rgb(var(--color-dark) / var(--tw-text-opacity, 1));
|
1058
|
+
}
|
1059
|
+
.cdx-quote__text {
|
1060
|
+
quotes: "\201C""\201D""\2018""\2019"
|
1061
|
+
}
|
1062
|
+
.cdx-quote__text {
|
1063
|
+
padding-left: 1.5rem;
|
1064
|
+
}
|
1065
|
+
.cdx-quote__text {
|
1066
|
+
&:before {
|
1067
|
+
margin-left: -2rem;
|
1068
|
+
}
|
1069
|
+
&:before {
|
1070
|
+
margin-right: 0.5rem;
|
1071
|
+
}
|
1072
|
+
&:before {
|
1073
|
+
vertical-align: text-bottom;
|
1074
|
+
}
|
1075
|
+
&:before {
|
1076
|
+
font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
1077
|
+
}
|
1078
|
+
&:before {
|
1079
|
+
font-size: 3.75rem;
|
1080
|
+
line-height: 1;
|
1081
|
+
}
|
1082
|
+
&:before {
|
1083
|
+
line-height: 1rem;
|
1084
|
+
}
|
1085
|
+
&:before {
|
1086
|
+
--tw-text-opacity: 1;
|
1087
|
+
color: rgb(var(--color-dark) / var(--tw-text-opacity, 1));
|
1088
|
+
}
|
1089
|
+
&:before {
|
1090
|
+
content: open-quote;
|
1091
|
+
}
|
1092
|
+
p {
|
1093
|
+
display: inline;
|
1094
|
+
}
|
1095
|
+
p {
|
1096
|
+
font-size: 1.125rem;
|
1097
|
+
line-height: 1.75rem;
|
1098
|
+
}
|
1099
|
+
p {
|
1100
|
+
font-style: italic;
|
1101
|
+
}
|
1102
|
+
}
|
1103
|
+
}
|
1104
|
+
.cdx-list {
|
1105
|
+
margin-bottom: 1rem;
|
1106
|
+
}
|
1107
|
+
.cdx-list {
|
1108
|
+
padding-left: 1.5rem;
|
1109
|
+
}
|
1110
|
+
.cdx-list {
|
1111
|
+
&--ordered {
|
1112
|
+
list-style-type: decimal;
|
1113
|
+
}
|
1114
|
+
&--unordered {
|
1115
|
+
list-style-type: disc;
|
1116
|
+
}
|
1117
|
+
.cdx-list {
|
1118
|
+
margin-top: 0.5rem;
|
1119
|
+
}
|
1120
|
+
.cdx-list {
|
1121
|
+
margin-bottom: 0px;
|
1122
|
+
}
|
1123
|
+
.cdx-list__item {
|
1124
|
+
margin-bottom: 0.5rem;
|
1125
|
+
}
|
1126
|
+
.cdx-list__item {
|
1127
|
+
padding-left: 0.5rem;
|
1128
|
+
}
|
1129
|
+
}
|
1130
|
+
.cdx-nested-list {
|
1131
|
+
margin-bottom: 1rem;
|
1132
|
+
}
|
1133
|
+
.cdx-nested-list {
|
1134
|
+
padding-left: 1.5rem;
|
1135
|
+
}
|
1136
|
+
.cdx-nested-list {
|
1137
|
+
&--ordered {
|
1138
|
+
list-style-type: decimal;
|
1139
|
+
}
|
1140
|
+
&--unordered {
|
1141
|
+
list-style-type: disc;
|
1142
|
+
}
|
1143
|
+
.cdx-nested-list {
|
1144
|
+
margin-top: 0.5rem;
|
1145
|
+
}
|
1146
|
+
.cdx-nested-list {
|
1147
|
+
margin-bottom: 0px;
|
1148
|
+
}
|
1149
|
+
.cdx-nested-list__item {
|
1150
|
+
margin-bottom: 0.5rem;
|
1151
|
+
}
|
1152
|
+
.cdx-nested-list__item {
|
1153
|
+
padding-left: 0.5rem;
|
1154
|
+
}
|
1155
|
+
}
|
1156
|
+
.cdx-table {
|
1157
|
+
margin-top: 1.5rem;
|
1158
|
+
margin-bottom: 1.5rem;
|
1159
|
+
}
|
1160
|
+
.cdx-table {
|
1161
|
+
width: 100%;
|
1162
|
+
}
|
1163
|
+
.cdx-table {
|
1164
|
+
border-collapse: collapse;
|
1165
|
+
}
|
1166
|
+
.cdx-table {
|
1167
|
+
border-width: 2px;
|
1168
|
+
}
|
1169
|
+
.cdx-table {
|
1170
|
+
--tw-border-opacity: 1;
|
1171
|
+
border-color: rgb(var(--color-dark) / var(--tw-border-opacity, 1));
|
1172
|
+
}
|
1173
|
+
.cdx-table {
|
1174
|
+
&__head {
|
1175
|
+
border-right-width: 2px;
|
1176
|
+
}
|
1177
|
+
&__head {
|
1178
|
+
--tw-border-opacity: 1;
|
1179
|
+
border-color: rgb(var(--color-dark) / var(--tw-border-opacity, 1));
|
1180
|
+
}
|
1181
|
+
&__head {
|
1182
|
+
--tw-bg-opacity: 1;
|
1183
|
+
background-color: rgb(var(--color-light) / var(--tw-bg-opacity, 1));
|
1184
|
+
}
|
1185
|
+
&__head {
|
1186
|
+
padding: 0.75rem;
|
1187
|
+
}
|
1188
|
+
&__head {
|
1189
|
+
font-weight: 600;
|
1190
|
+
}
|
1191
|
+
&__row {
|
1192
|
+
border-bottom-width: 2px;
|
1193
|
+
}
|
1194
|
+
&__row {
|
1195
|
+
--tw-border-opacity: 1;
|
1196
|
+
border-color: rgb(var(--color-dark) / var(--tw-border-opacity, 1));
|
1197
|
+
}
|
1198
|
+
&__cell {
|
1199
|
+
border-right-width: 2px;
|
1200
|
+
}
|
1201
|
+
&__cell {
|
1202
|
+
--tw-border-opacity: 1;
|
1203
|
+
border-color: rgb(var(--color-dark) / var(--tw-border-opacity, 1));
|
1204
|
+
}
|
1205
|
+
&__cell {
|
1206
|
+
padding: 0.75rem;
|
1207
|
+
}
|
1208
|
+
}
|
1209
|
+
.cdx-embed {
|
1210
|
+
iframe {
|
1211
|
+
width: 100%;
|
1212
|
+
}
|
1213
|
+
iframe {
|
1214
|
+
border-style: none;
|
1215
|
+
}
|
1216
|
+
}
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
.sr-only {
|
1220
|
+
position: absolute;
|
1221
|
+
width: 1px;
|
1222
|
+
height: 1px;
|
1223
|
+
padding: 0;
|
1224
|
+
margin: -1px;
|
1225
|
+
overflow: hidden;
|
1226
|
+
clip: rect(0, 0, 0, 0);
|
1227
|
+
white-space: nowrap;
|
1228
|
+
border-width: 0;
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
.pointer-events-none {
|
1232
|
+
pointer-events: none;
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
.pointer-events-auto {
|
1236
|
+
pointer-events: auto;
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
.visible {
|
1240
|
+
visibility: visible;
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
.collapse {
|
1244
|
+
visibility: collapse;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.static {
|
1248
|
+
position: static;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.fixed {
|
1252
|
+
position: fixed;
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
.absolute {
|
1256
|
+
position: absolute;
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
.relative {
|
1260
|
+
position: relative;
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
.sticky {
|
1264
|
+
position: sticky;
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
.-inset-1\.5 {
|
1268
|
+
inset: -0.375rem;
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
.inset-0 {
|
1272
|
+
inset: 0px;
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
.right-0 {
|
1276
|
+
right: 0px;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.right-2 {
|
1280
|
+
right: 0.5rem;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.right-3 {
|
1284
|
+
right: 0.75rem;
|
1285
|
+
}
|
1286
|
+
|
1287
|
+
.top-0 {
|
1288
|
+
top: 0px;
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
.top-1\/2 {
|
1292
|
+
top: 50%;
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
.top-2 {
|
1296
|
+
top: 0.5rem;
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
.z-10 {
|
1300
|
+
z-index: 10;
|
1301
|
+
}
|
1302
|
+
|
1303
|
+
.z-50 {
|
1304
|
+
z-index: 50;
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
.col-span-3 {
|
1308
|
+
grid-column: span 3 / span 3;
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
.col-start-1 {
|
1312
|
+
grid-column-start: 1;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
.row-start-1 {
|
1316
|
+
grid-row-start: 1;
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
.m-0 {
|
1320
|
+
margin: 0px;
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
.-mx-3 {
|
1324
|
+
margin-left: -0.75rem;
|
1325
|
+
margin-right: -0.75rem;
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
.-mx-4 {
|
1329
|
+
margin-left: -1rem;
|
1330
|
+
margin-right: -1rem;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
.mx-12 {
|
1334
|
+
margin-left: 3rem;
|
1335
|
+
margin-right: 3rem;
|
1336
|
+
}
|
1337
|
+
|
1338
|
+
.mx-auto {
|
1339
|
+
margin-left: auto;
|
1340
|
+
margin-right: auto;
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
.-mb-1 {
|
1344
|
+
margin-bottom: -0.25rem;
|
1345
|
+
}
|
1346
|
+
|
1347
|
+
.-mb-px {
|
1348
|
+
margin-bottom: -1px;
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
.-ml-1 {
|
1352
|
+
margin-left: -0.25rem;
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
.-mt-1 {
|
1356
|
+
margin-top: -0.25rem;
|
1357
|
+
}
|
1358
|
+
|
1359
|
+
.-mt-5 {
|
1360
|
+
margin-top: -1.25rem;
|
1361
|
+
}
|
1362
|
+
|
1363
|
+
.mb-0 {
|
1364
|
+
margin-bottom: 0px;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
.mb-1 {
|
1368
|
+
margin-bottom: 0.25rem;
|
1369
|
+
}
|
1370
|
+
|
1371
|
+
.mb-12 {
|
1372
|
+
margin-bottom: 3rem;
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
.mb-2 {
|
1376
|
+
margin-bottom: 0.5rem;
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
.mb-4 {
|
1380
|
+
margin-bottom: 1rem;
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
.mb-5 {
|
1384
|
+
margin-bottom: 1.25rem;
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
.mb-6 {
|
1388
|
+
margin-bottom: 1.5rem;
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
.ml-0 {
|
1392
|
+
margin-left: 0px;
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
.ml-0\.5 {
|
1396
|
+
margin-left: 0.125rem;
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
.ml-12 {
|
1400
|
+
margin-left: 3rem;
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
.ml-16 {
|
1404
|
+
margin-left: 4rem;
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
.ml-2 {
|
1408
|
+
margin-left: 0.5rem;
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
.ml-20 {
|
1412
|
+
margin-left: 5rem;
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
.ml-24 {
|
1416
|
+
margin-left: 6rem;
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
.ml-28 {
|
1420
|
+
margin-left: 7rem;
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
.ml-3 {
|
1424
|
+
margin-left: 0.75rem;
|
1425
|
+
}
|
1426
|
+
|
1427
|
+
.ml-32 {
|
1428
|
+
margin-left: 8rem;
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
.ml-36 {
|
1432
|
+
margin-left: 9rem;
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
.ml-4 {
|
1436
|
+
margin-left: 1rem;
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
.ml-40 {
|
1440
|
+
margin-left: 10rem;
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.ml-48 {
|
1444
|
+
margin-left: 12rem;
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.ml-6 {
|
1448
|
+
margin-left: 1.5rem;
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.ml-8 {
|
1452
|
+
margin-left: 2rem;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.mr-1 {
|
1456
|
+
margin-right: 0.25rem;
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.mr-2 {
|
1460
|
+
margin-right: 0.5rem;
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
.mr-5 {
|
1464
|
+
margin-right: 1.25rem;
|
1465
|
+
}
|
1466
|
+
|
1467
|
+
.mt-0\.5 {
|
1468
|
+
margin-top: 0.125rem;
|
1469
|
+
}
|
1470
|
+
|
1471
|
+
.mt-1 {
|
1472
|
+
margin-top: 0.25rem;
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.mt-10 {
|
1476
|
+
margin-top: 2.5rem;
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
.mt-16 {
|
1480
|
+
margin-top: 4rem;
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.mt-2 {
|
1484
|
+
margin-top: 0.5rem;
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
.mt-3 {
|
1488
|
+
margin-top: 0.75rem;
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.mt-4 {
|
1492
|
+
margin-top: 1rem;
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
.mt-5 {
|
1496
|
+
margin-top: 1.25rem;
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
.mt-6 {
|
1500
|
+
margin-top: 1.5rem;
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
.mt-auto {
|
1504
|
+
margin-top: auto;
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
.block {
|
1508
|
+
display: block;
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
.inline-block {
|
1512
|
+
display: inline-block;
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.inline {
|
1516
|
+
display: inline;
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
.flex {
|
1520
|
+
display: flex;
|
1521
|
+
}
|
1522
|
+
|
1523
|
+
.inline-flex {
|
1524
|
+
display: inline-flex;
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
.table {
|
1528
|
+
display: table;
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
.table-cell {
|
1532
|
+
display: table-cell;
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
.table-header-group {
|
1536
|
+
display: table-header-group;
|
1537
|
+
}
|
1538
|
+
|
1539
|
+
.table-row-group {
|
1540
|
+
display: table-row-group;
|
1541
|
+
}
|
1542
|
+
|
1543
|
+
.table-row {
|
1544
|
+
display: table-row;
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
.grid {
|
1548
|
+
display: grid;
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
.contents {
|
1552
|
+
display: contents;
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
.hidden {
|
1556
|
+
display: none;
|
1557
|
+
}
|
1558
|
+
|
1559
|
+
.h-0 {
|
1560
|
+
height: 0px;
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
.h-10 {
|
1564
|
+
height: 2.5rem;
|
1565
|
+
}
|
1566
|
+
|
1567
|
+
.h-14 {
|
1568
|
+
height: 3.5rem;
|
1569
|
+
}
|
1570
|
+
|
1571
|
+
.h-20 {
|
1572
|
+
height: 5rem;
|
1573
|
+
}
|
1574
|
+
|
1575
|
+
.h-32 {
|
1576
|
+
height: 8rem;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
.h-5 {
|
1580
|
+
height: 1.25rem;
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
.h-6 {
|
1584
|
+
height: 1.5rem;
|
1585
|
+
}
|
1586
|
+
|
1587
|
+
.h-7 {
|
1588
|
+
height: 1.75rem;
|
1589
|
+
}
|
1590
|
+
|
1591
|
+
.h-8 {
|
1592
|
+
height: 2rem;
|
1593
|
+
}
|
1594
|
+
|
1595
|
+
.h-\[calc\(100vh-10rem\)\] {
|
1596
|
+
height: calc(100vh - 10rem);
|
1597
|
+
}
|
1598
|
+
|
1599
|
+
.h-full {
|
1600
|
+
height: 100%;
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
.max-h-16 {
|
1604
|
+
max-height: 4rem;
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
.max-h-full {
|
1608
|
+
max-height: 100%;
|
1609
|
+
}
|
1610
|
+
|
1611
|
+
.min-h-20 {
|
1612
|
+
min-height: 5rem;
|
1613
|
+
}
|
1614
|
+
|
1615
|
+
.min-h-32 {
|
1616
|
+
min-height: 8rem;
|
1617
|
+
}
|
1618
|
+
|
1619
|
+
.min-h-\[300px\] {
|
1620
|
+
min-height: 300px;
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
.min-h-full {
|
1624
|
+
min-height: 100%;
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
.w-0 {
|
1628
|
+
width: 0px;
|
1629
|
+
}
|
1630
|
+
|
1631
|
+
.w-10 {
|
1632
|
+
width: 2.5rem;
|
1633
|
+
}
|
1634
|
+
|
1635
|
+
.w-5 {
|
1636
|
+
width: 1.25rem;
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
.w-6 {
|
1640
|
+
width: 1.5rem;
|
1641
|
+
}
|
1642
|
+
|
1643
|
+
.w-8 {
|
1644
|
+
width: 2rem;
|
1645
|
+
}
|
1646
|
+
|
1647
|
+
.w-96 {
|
1648
|
+
width: 24rem;
|
1649
|
+
}
|
1650
|
+
|
1651
|
+
.w-auto {
|
1652
|
+
width: auto;
|
1653
|
+
}
|
1654
|
+
|
1655
|
+
.w-full {
|
1656
|
+
width: 100%;
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
.min-w-56 {
|
1660
|
+
min-width: 14rem;
|
1661
|
+
}
|
1662
|
+
|
1663
|
+
.min-w-full {
|
1664
|
+
min-width: 100%;
|
1665
|
+
}
|
1666
|
+
|
1667
|
+
.max-w-full {
|
1668
|
+
max-width: 100%;
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
.max-w-sm {
|
1672
|
+
max-width: 24rem;
|
1673
|
+
}
|
1674
|
+
|
1675
|
+
.flex-1 {
|
1676
|
+
flex: 1 1 0%;
|
1677
|
+
}
|
1678
|
+
|
1679
|
+
.flex-auto {
|
1680
|
+
flex: 1 1 auto;
|
1681
|
+
}
|
1682
|
+
|
1683
|
+
.flex-shrink-0 {
|
1684
|
+
flex-shrink: 0;
|
1685
|
+
}
|
1686
|
+
|
1687
|
+
.flex-grow {
|
1688
|
+
flex-grow: 1;
|
1689
|
+
}
|
1690
|
+
|
1691
|
+
.grow {
|
1692
|
+
flex-grow: 1;
|
1693
|
+
}
|
1694
|
+
|
1695
|
+
.basis-3\/12 {
|
1696
|
+
flex-basis: 25%;
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
.table-auto {
|
1700
|
+
table-layout: auto;
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
.border-collapse {
|
1704
|
+
border-collapse: collapse;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
.-translate-y-1\/2 {
|
1708
|
+
--tw-translate-y: -50%;
|
1709
|
+
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));
|
1710
|
+
}
|
1711
|
+
|
1712
|
+
.translate-x-0 {
|
1713
|
+
--tw-translate-x: 0px;
|
1714
|
+
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));
|
1715
|
+
}
|
1716
|
+
|
1717
|
+
.translate-x-full {
|
1718
|
+
--tw-translate-x: 100%;
|
1719
|
+
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));
|
1720
|
+
}
|
1721
|
+
|
1722
|
+
.scale-100 {
|
1723
|
+
--tw-scale-x: 1;
|
1724
|
+
--tw-scale-y: 1;
|
1725
|
+
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));
|
1726
|
+
}
|
1727
|
+
|
1728
|
+
.scale-95 {
|
1729
|
+
--tw-scale-x: .95;
|
1730
|
+
--tw-scale-y: .95;
|
1731
|
+
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));
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
.transform {
|
1735
|
+
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));
|
1736
|
+
}
|
1737
|
+
|
1738
|
+
.cursor-pointer {
|
1739
|
+
cursor: pointer;
|
1740
|
+
}
|
1741
|
+
|
1742
|
+
.resize {
|
1743
|
+
resize: both;
|
1744
|
+
}
|
1745
|
+
|
1746
|
+
.list-disc {
|
1747
|
+
list-style-type: disc;
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
.appearance-none {
|
1751
|
+
-webkit-appearance: none;
|
1752
|
+
-moz-appearance: none;
|
1753
|
+
appearance: none;
|
1754
|
+
}
|
1755
|
+
|
1756
|
+
.grid-cols-1 {
|
1757
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
1758
|
+
}
|
1759
|
+
|
1760
|
+
.grid-cols-2 {
|
1761
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
1762
|
+
}
|
1763
|
+
|
1764
|
+
.flex-row {
|
1765
|
+
flex-direction: row;
|
1766
|
+
}
|
1767
|
+
|
1768
|
+
.flex-col {
|
1769
|
+
flex-direction: column;
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
.items-start {
|
1773
|
+
align-items: flex-start;
|
1774
|
+
}
|
1775
|
+
|
1776
|
+
.items-center {
|
1777
|
+
align-items: center;
|
1778
|
+
}
|
1779
|
+
|
1780
|
+
.justify-center {
|
1781
|
+
justify-content: center;
|
1782
|
+
}
|
1783
|
+
|
1784
|
+
.justify-between {
|
1785
|
+
justify-content: space-between;
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
.gap-5 {
|
1789
|
+
gap: 1.25rem;
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
.gap-x-1\.5 {
|
1793
|
+
-moz-column-gap: 0.375rem;
|
1794
|
+
column-gap: 0.375rem;
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
.gap-x-2 {
|
1798
|
+
-moz-column-gap: 0.5rem;
|
1799
|
+
column-gap: 0.5rem;
|
1800
|
+
}
|
1801
|
+
|
1802
|
+
.gap-x-3 {
|
1803
|
+
-moz-column-gap: 0.75rem;
|
1804
|
+
column-gap: 0.75rem;
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
.gap-x-4 {
|
1808
|
+
-moz-column-gap: 1rem;
|
1809
|
+
column-gap: 1rem;
|
1810
|
+
}
|
1811
|
+
|
1812
|
+
.gap-y-5 {
|
1813
|
+
row-gap: 1.25rem;
|
1814
|
+
}
|
1815
|
+
|
1816
|
+
.gap-y-8 {
|
1817
|
+
row-gap: 2rem;
|
1818
|
+
}
|
1819
|
+
|
1820
|
+
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
1821
|
+
--tw-space-x-reverse: 0;
|
1822
|
+
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
1823
|
+
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
1824
|
+
}
|
1825
|
+
|
1826
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
1827
|
+
--tw-space-y-reverse: 0;
|
1828
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
1829
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
1830
|
+
}
|
1831
|
+
|
1832
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
1833
|
+
--tw-space-y-reverse: 0;
|
1834
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
1835
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
1839
|
+
--tw-space-y-reverse: 0;
|
1840
|
+
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
1841
|
+
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
1845
|
+
--tw-divide-y-reverse: 0;
|
1846
|
+
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
1847
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
1848
|
+
}
|
1849
|
+
|
1850
|
+
.overflow-auto {
|
1851
|
+
overflow: auto;
|
1852
|
+
}
|
1853
|
+
|
1854
|
+
.overflow-hidden {
|
1855
|
+
overflow: hidden;
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
.overflow-x-auto {
|
1859
|
+
overflow-x: auto;
|
1860
|
+
}
|
1861
|
+
|
1862
|
+
.overflow-y-auto {
|
1863
|
+
overflow-y: auto;
|
1864
|
+
}
|
1865
|
+
|
1866
|
+
.truncate {
|
1867
|
+
overflow: hidden;
|
1868
|
+
text-overflow: ellipsis;
|
1869
|
+
white-space: nowrap;
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
.whitespace-nowrap {
|
1873
|
+
white-space: nowrap;
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
.break-keep {
|
1877
|
+
word-break: keep-all;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
.rounded-full {
|
1881
|
+
border-radius: 9999px;
|
1882
|
+
}
|
1883
|
+
|
1884
|
+
.rounded-lg {
|
1885
|
+
border-radius: 0.5rem;
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
.rounded-md {
|
1889
|
+
border-radius: 0.375rem;
|
1890
|
+
}
|
1891
|
+
|
1892
|
+
.rounded-b-lg {
|
1893
|
+
border-bottom-right-radius: 0.5rem;
|
1894
|
+
border-bottom-left-radius: 0.5rem;
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
.rounded-l-none {
|
1898
|
+
border-top-left-radius: 0px;
|
1899
|
+
border-bottom-left-radius: 0px;
|
1900
|
+
}
|
1901
|
+
|
1902
|
+
.rounded-s-md {
|
1903
|
+
border-start-start-radius: 0.375rem;
|
1904
|
+
border-end-start-radius: 0.375rem;
|
1905
|
+
}
|
1906
|
+
|
1907
|
+
.rounded-tl-md {
|
1908
|
+
border-top-left-radius: 0.375rem;
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
.rounded-tr-md {
|
1912
|
+
border-top-right-radius: 0.375rem;
|
1913
|
+
}
|
1914
|
+
|
1915
|
+
.border {
|
1916
|
+
border-width: 1px;
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
.border-0 {
|
1920
|
+
border-width: 0px;
|
1921
|
+
}
|
1922
|
+
|
1923
|
+
.border-2 {
|
1924
|
+
border-width: 2px;
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
.border-b {
|
1928
|
+
border-bottom-width: 1px;
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
.border-b-2 {
|
1932
|
+
border-bottom-width: 2px;
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
.border-t {
|
1936
|
+
border-top-width: 1px;
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
.border-dashed {
|
1940
|
+
border-style: dashed;
|
1941
|
+
}
|
1942
|
+
|
1943
|
+
.border-dark {
|
1944
|
+
--tw-border-opacity: 1;
|
1945
|
+
border-color: rgb(var(--color-dark) / var(--tw-border-opacity, 1));
|
1946
|
+
}
|
1947
|
+
|
1948
|
+
.border-error {
|
1949
|
+
--tw-border-opacity: 1;
|
1950
|
+
border-color: rgb(var(--color-error) / var(--tw-border-opacity, 1));
|
1951
|
+
}
|
1952
|
+
|
1953
|
+
.border-mid {
|
1954
|
+
--tw-border-opacity: 1;
|
1955
|
+
border-color: rgb(var(--color-mid) / var(--tw-border-opacity, 1));
|
1956
|
+
}
|
1957
|
+
|
1958
|
+
.border-mid\/20 {
|
1959
|
+
border-color: rgb(var(--color-mid) / 0.2);
|
1960
|
+
}
|
1961
|
+
|
1962
|
+
.border-transparent {
|
1963
|
+
border-color: transparent;
|
1964
|
+
}
|
1965
|
+
|
1966
|
+
.bg-active {
|
1967
|
+
--tw-bg-opacity: 1;
|
1968
|
+
background-color: rgb(var(--color-active) / var(--tw-bg-opacity, 1));
|
1969
|
+
}
|
1970
|
+
|
1971
|
+
.bg-black {
|
1972
|
+
--tw-bg-opacity: 1;
|
1973
|
+
background-color: rgb(var(--color-black) / var(--tw-bg-opacity, 1));
|
1974
|
+
}
|
1975
|
+
|
1976
|
+
.bg-black\/5 {
|
1977
|
+
background-color: rgb(var(--color-black) / 0.05);
|
1978
|
+
}
|
1979
|
+
|
1980
|
+
.bg-error\/10 {
|
1981
|
+
background-color: rgb(var(--color-error) / 0.1);
|
1982
|
+
}
|
1983
|
+
|
1984
|
+
.bg-inactive {
|
1985
|
+
--tw-bg-opacity: 1;
|
1986
|
+
background-color: rgb(var(--color-active) / var(--tw-bg-opacity, 1));
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
.bg-mid {
|
1990
|
+
--tw-bg-opacity: 1;
|
1991
|
+
background-color: rgb(var(--color-mid) / var(--tw-bg-opacity, 1));
|
1992
|
+
}
|
1993
|
+
|
1994
|
+
.bg-mid\/5 {
|
1995
|
+
background-color: rgb(var(--color-mid) / 0.05);
|
1996
|
+
}
|
1997
|
+
|
1998
|
+
.bg-transparent {
|
1999
|
+
background-color: transparent;
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
.bg-warning {
|
2003
|
+
--tw-bg-opacity: 1;
|
2004
|
+
background-color: rgb(var(--color-warning) / var(--tw-bg-opacity, 1));
|
2005
|
+
}
|
2006
|
+
|
2007
|
+
.bg-white {
|
2008
|
+
--tw-bg-opacity: 1;
|
2009
|
+
background-color: rgb(var(--color-white) / var(--tw-bg-opacity, 1));
|
2010
|
+
}
|
2011
|
+
|
2012
|
+
.bg-gradient-to-br {
|
2013
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
2014
|
+
}
|
2015
|
+
|
2016
|
+
.from-dark {
|
2017
|
+
--tw-gradient-from: rgb(var(--color-dark) / 1) var(--tw-gradient-from-position);
|
2018
|
+
--tw-gradient-to: rgb(var(--color-dark) / 0) var(--tw-gradient-to-position);
|
2019
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
2020
|
+
}
|
2021
|
+
|
2022
|
+
.from-light\/20 {
|
2023
|
+
--tw-gradient-from: rgb(var(--color-light) / 0.2) var(--tw-gradient-from-position);
|
2024
|
+
--tw-gradient-to: rgb(var(--color-light) / 0) var(--tw-gradient-to-position);
|
2025
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
2026
|
+
}
|
2027
|
+
|
2028
|
+
.to-light {
|
2029
|
+
--tw-gradient-to: rgb(var(--color-light) / 1) var(--tw-gradient-to-position);
|
2030
|
+
}
|
2031
|
+
|
2032
|
+
.to-mid {
|
2033
|
+
--tw-gradient-to: rgb(var(--color-mid) / 1) var(--tw-gradient-to-position);
|
2034
|
+
}
|
2035
|
+
|
2036
|
+
.object-cover {
|
2037
|
+
-o-object-fit: cover;
|
2038
|
+
object-fit: cover;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.p-0 {
|
2042
|
+
padding: 0px;
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
.p-0\.5 {
|
2046
|
+
padding: 0.125rem;
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
.p-1 {
|
2050
|
+
padding: 0.25rem;
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
.p-1\.5 {
|
2054
|
+
padding: 0.375rem;
|
2055
|
+
}
|
2056
|
+
|
2057
|
+
.p-2 {
|
2058
|
+
padding: 0.5rem;
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
.p-4 {
|
2062
|
+
padding: 1rem;
|
2063
|
+
}
|
2064
|
+
|
2065
|
+
.p-6 {
|
2066
|
+
padding: 1.5rem;
|
2067
|
+
}
|
2068
|
+
|
2069
|
+
.px-1 {
|
2070
|
+
padding-left: 0.25rem;
|
2071
|
+
padding-right: 0.25rem;
|
2072
|
+
}
|
2073
|
+
|
2074
|
+
.px-2 {
|
2075
|
+
padding-left: 0.5rem;
|
2076
|
+
padding-right: 0.5rem;
|
2077
|
+
}
|
2078
|
+
|
2079
|
+
.px-2\.5 {
|
2080
|
+
padding-left: 0.625rem;
|
2081
|
+
padding-right: 0.625rem;
|
2082
|
+
}
|
2083
|
+
|
2084
|
+
.px-3 {
|
2085
|
+
padding-left: 0.75rem;
|
2086
|
+
padding-right: 0.75rem;
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
.px-3\.5 {
|
2090
|
+
padding-left: 0.875rem;
|
2091
|
+
padding-right: 0.875rem;
|
2092
|
+
}
|
2093
|
+
|
2094
|
+
.px-4 {
|
2095
|
+
padding-left: 1rem;
|
2096
|
+
padding-right: 1rem;
|
2097
|
+
}
|
2098
|
+
|
2099
|
+
.px-6 {
|
2100
|
+
padding-left: 1.5rem;
|
2101
|
+
padding-right: 1.5rem;
|
2102
|
+
}
|
2103
|
+
|
2104
|
+
.py-1 {
|
2105
|
+
padding-top: 0.25rem;
|
2106
|
+
padding-bottom: 0.25rem;
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
.py-1\.5 {
|
2110
|
+
padding-top: 0.375rem;
|
2111
|
+
padding-bottom: 0.375rem;
|
2112
|
+
}
|
2113
|
+
|
2114
|
+
.py-12 {
|
2115
|
+
padding-top: 3rem;
|
2116
|
+
padding-bottom: 3rem;
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
.py-2 {
|
2120
|
+
padding-top: 0.5rem;
|
2121
|
+
padding-bottom: 0.5rem;
|
2122
|
+
}
|
2123
|
+
|
2124
|
+
.py-2\.5 {
|
2125
|
+
padding-top: 0.625rem;
|
2126
|
+
padding-bottom: 0.625rem;
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
.py-3 {
|
2130
|
+
padding-top: 0.75rem;
|
2131
|
+
padding-bottom: 0.75rem;
|
2132
|
+
}
|
2133
|
+
|
2134
|
+
.py-3\.5 {
|
2135
|
+
padding-top: 0.875rem;
|
2136
|
+
padding-bottom: 0.875rem;
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
.py-4 {
|
2140
|
+
padding-top: 1rem;
|
2141
|
+
padding-bottom: 1rem;
|
2142
|
+
}
|
2143
|
+
|
2144
|
+
.py-5 {
|
2145
|
+
padding-top: 1.25rem;
|
2146
|
+
padding-bottom: 1.25rem;
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
.pb-16 {
|
2150
|
+
padding-bottom: 4rem;
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
.pb-4 {
|
2154
|
+
padding-bottom: 1rem;
|
2155
|
+
}
|
2156
|
+
|
2157
|
+
.pl-2 {
|
2158
|
+
padding-left: 0.5rem;
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
.pl-3 {
|
2162
|
+
padding-left: 0.75rem;
|
2163
|
+
}
|
2164
|
+
|
2165
|
+
.pl-5 {
|
2166
|
+
padding-left: 1.25rem;
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
.pr-10 {
|
2170
|
+
padding-right: 2.5rem;
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
.pr-8 {
|
2174
|
+
padding-right: 2rem;
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
.pt-0\.5 {
|
2178
|
+
padding-top: 0.125rem;
|
2179
|
+
}
|
2180
|
+
|
2181
|
+
.pt-1 {
|
2182
|
+
padding-top: 0.25rem;
|
2183
|
+
}
|
2184
|
+
|
2185
|
+
.pt-4 {
|
2186
|
+
padding-top: 1rem;
|
2187
|
+
}
|
2188
|
+
|
2189
|
+
.text-left {
|
2190
|
+
text-align: left;
|
2191
|
+
}
|
2192
|
+
|
2193
|
+
.text-center {
|
2194
|
+
text-align: center;
|
2195
|
+
}
|
2196
|
+
|
2197
|
+
.align-middle {
|
2198
|
+
vertical-align: middle;
|
2199
|
+
}
|
2200
|
+
|
2201
|
+
.font-mono {
|
2202
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
.text-2xl {
|
2206
|
+
font-size: 1.5rem;
|
2207
|
+
line-height: 2rem;
|
2208
|
+
}
|
2209
|
+
|
2210
|
+
.text-3xl {
|
2211
|
+
font-size: 1.875rem;
|
2212
|
+
line-height: 2.25rem;
|
2213
|
+
}
|
2214
|
+
|
2215
|
+
.text-4xl {
|
2216
|
+
font-size: 2.25rem;
|
2217
|
+
line-height: 2.5rem;
|
2218
|
+
}
|
2219
|
+
|
2220
|
+
.text-base {
|
2221
|
+
font-size: 1rem;
|
2222
|
+
line-height: 1.5rem;
|
2223
|
+
}
|
2224
|
+
|
2225
|
+
.text-lg {
|
2226
|
+
font-size: 1.125rem;
|
2227
|
+
line-height: 1.75rem;
|
2228
|
+
}
|
2229
|
+
|
2230
|
+
.text-sm {
|
2231
|
+
font-size: 0.875rem;
|
2232
|
+
line-height: 1.25rem;
|
2233
|
+
}
|
2234
|
+
|
2235
|
+
.text-xl {
|
2236
|
+
font-size: 1.25rem;
|
2237
|
+
line-height: 1.75rem;
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
.text-xs {
|
2241
|
+
font-size: 0.75rem;
|
2242
|
+
line-height: 1rem;
|
2243
|
+
}
|
2244
|
+
|
2245
|
+
.font-bold {
|
2246
|
+
font-weight: 700;
|
2247
|
+
}
|
2248
|
+
|
2249
|
+
.font-light {
|
2250
|
+
font-weight: 300;
|
2251
|
+
}
|
2252
|
+
|
2253
|
+
.font-medium {
|
2254
|
+
font-weight: 500;
|
2255
|
+
}
|
2256
|
+
|
2257
|
+
.font-normal {
|
2258
|
+
font-weight: 400;
|
2259
|
+
}
|
2260
|
+
|
2261
|
+
.font-semibold {
|
2262
|
+
font-weight: 600;
|
2263
|
+
}
|
2264
|
+
|
2265
|
+
.capitalize {
|
2266
|
+
text-transform: capitalize;
|
2267
|
+
}
|
2268
|
+
|
2269
|
+
.italic {
|
2270
|
+
font-style: italic;
|
2271
|
+
}
|
2272
|
+
|
2273
|
+
.leading-6 {
|
2274
|
+
line-height: 1.5rem;
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
.leading-loose {
|
2278
|
+
line-height: 2;
|
2279
|
+
}
|
2280
|
+
|
2281
|
+
.tracking-tight {
|
2282
|
+
letter-spacing: -0.025em;
|
2283
|
+
}
|
2284
|
+
|
2285
|
+
.text-active {
|
2286
|
+
--tw-text-opacity: 1;
|
2287
|
+
color: rgb(var(--color-active) / var(--tw-text-opacity, 1));
|
2288
|
+
}
|
2289
|
+
|
2290
|
+
.text-black {
|
2291
|
+
--tw-text-opacity: 1;
|
2292
|
+
color: rgb(var(--color-black) / var(--tw-text-opacity, 1));
|
2293
|
+
}
|
2294
|
+
|
2295
|
+
.text-black\/60 {
|
2296
|
+
color: rgb(var(--color-black) / 0.6);
|
2297
|
+
}
|
2298
|
+
|
2299
|
+
.text-black\/80 {
|
2300
|
+
color: rgb(var(--color-black) / 0.8);
|
2301
|
+
}
|
2302
|
+
|
2303
|
+
.text-dark {
|
2304
|
+
--tw-text-opacity: 1;
|
2305
|
+
color: rgb(var(--color-dark) / var(--tw-text-opacity, 1));
|
2306
|
+
}
|
2307
|
+
|
2308
|
+
.text-error {
|
2309
|
+
--tw-text-opacity: 1;
|
2310
|
+
color: rgb(var(--color-error) / var(--tw-text-opacity, 1));
|
2311
|
+
}
|
2312
|
+
|
2313
|
+
.text-mid {
|
2314
|
+
--tw-text-opacity: 1;
|
2315
|
+
color: rgb(var(--color-mid) / var(--tw-text-opacity, 1));
|
2316
|
+
}
|
2317
|
+
|
2318
|
+
.text-mid\/50 {
|
2319
|
+
color: rgb(var(--color-mid) / 0.5);
|
2320
|
+
}
|
2321
|
+
|
2322
|
+
.text-warning {
|
2323
|
+
--tw-text-opacity: 1;
|
2324
|
+
color: rgb(var(--color-warning) / var(--tw-text-opacity, 1));
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
.text-white {
|
2328
|
+
--tw-text-opacity: 1;
|
2329
|
+
color: rgb(var(--color-white) / var(--tw-text-opacity, 1));
|
2330
|
+
}
|
2331
|
+
|
2332
|
+
.opacity-0 {
|
2333
|
+
opacity: 0;
|
2334
|
+
}
|
2335
|
+
|
2336
|
+
.opacity-100 {
|
2337
|
+
opacity: 1;
|
2338
|
+
}
|
2339
|
+
|
2340
|
+
.shadow {
|
2341
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
2342
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
2343
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2344
|
+
}
|
2345
|
+
|
2346
|
+
.shadow-lg {
|
2347
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
2348
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
2349
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2350
|
+
}
|
2351
|
+
|
2352
|
+
.shadow-md {
|
2353
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
2354
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
2355
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2356
|
+
}
|
2357
|
+
|
2358
|
+
.shadow-none {
|
2359
|
+
--tw-shadow: 0 0 #0000;
|
2360
|
+
--tw-shadow-colored: 0 0 #0000;
|
2361
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2362
|
+
}
|
2363
|
+
|
2364
|
+
.shadow-sm {
|
2365
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
2366
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
2367
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2368
|
+
}
|
2369
|
+
|
2370
|
+
.shadow-xl {
|
2371
|
+
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
2372
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
2373
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2374
|
+
}
|
2375
|
+
|
2376
|
+
.outline {
|
2377
|
+
outline-style: solid;
|
2378
|
+
}
|
2379
|
+
|
2380
|
+
.outline-0 {
|
2381
|
+
outline-width: 0px;
|
2382
|
+
}
|
2383
|
+
|
2384
|
+
.outline-dark {
|
2385
|
+
outline-color: rgb(var(--color-dark) / 1);
|
2386
|
+
}
|
2387
|
+
|
2388
|
+
.ring-0 {
|
2389
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2390
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2391
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2392
|
+
}
|
2393
|
+
|
2394
|
+
.ring-1 {
|
2395
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2396
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2397
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2398
|
+
}
|
2399
|
+
|
2400
|
+
.ring-2 {
|
2401
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2402
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2403
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2404
|
+
}
|
2405
|
+
|
2406
|
+
.ring-inset {
|
2407
|
+
--tw-ring-inset: inset;
|
2408
|
+
}
|
2409
|
+
|
2410
|
+
.ring-black {
|
2411
|
+
--tw-ring-opacity: 1;
|
2412
|
+
--tw-ring-color: rgb(var(--color-black) / var(--tw-ring-opacity, 1));
|
2413
|
+
}
|
2414
|
+
|
2415
|
+
.ring-black\/30 {
|
2416
|
+
--tw-ring-color: rgb(var(--color-black) / 0.3);
|
2417
|
+
}
|
2418
|
+
|
2419
|
+
.ring-mid {
|
2420
|
+
--tw-ring-opacity: 1;
|
2421
|
+
--tw-ring-color: rgb(var(--color-mid) / var(--tw-ring-opacity, 1));
|
2422
|
+
}
|
2423
|
+
|
2424
|
+
.ring-opacity-5 {
|
2425
|
+
--tw-ring-opacity: 0.05;
|
2426
|
+
}
|
2427
|
+
|
2428
|
+
.ring-offset-0 {
|
2429
|
+
--tw-ring-offset-width: 0px;
|
2430
|
+
}
|
2431
|
+
|
2432
|
+
.ring-offset-2 {
|
2433
|
+
--tw-ring-offset-width: 2px;
|
2434
|
+
}
|
2435
|
+
|
2436
|
+
.blur {
|
2437
|
+
--tw-blur: blur(8px);
|
2438
|
+
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);
|
2439
|
+
}
|
2440
|
+
|
2441
|
+
.filter {
|
2442
|
+
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);
|
2443
|
+
}
|
2444
|
+
|
2445
|
+
.transition {
|
2446
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
2447
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
2448
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
2449
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2450
|
+
transition-duration: 150ms;
|
2451
|
+
}
|
2452
|
+
|
2453
|
+
.transition-all {
|
2454
|
+
transition-property: all;
|
2455
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2456
|
+
transition-duration: 150ms;
|
2457
|
+
}
|
2458
|
+
|
2459
|
+
.duration-100 {
|
2460
|
+
transition-duration: 100ms;
|
2461
|
+
}
|
2462
|
+
|
2463
|
+
.duration-150 {
|
2464
|
+
transition-duration: 150ms;
|
2465
|
+
}
|
2466
|
+
|
2467
|
+
.duration-300 {
|
2468
|
+
transition-duration: 300ms;
|
2469
|
+
}
|
2470
|
+
|
2471
|
+
.duration-500 {
|
2472
|
+
transition-duration: 500ms;
|
2473
|
+
}
|
2474
|
+
|
2475
|
+
.duration-75 {
|
2476
|
+
transition-duration: 75ms;
|
2477
|
+
}
|
2478
|
+
|
2479
|
+
.ease-in {
|
2480
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
2481
|
+
}
|
2482
|
+
|
2483
|
+
.ease-in-out {
|
2484
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2485
|
+
}
|
2486
|
+
|
2487
|
+
.ease-out {
|
2488
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
2489
|
+
}
|
2490
|
+
|
2491
|
+
/* Default editor styles */
|
2492
|
+
|
2493
|
+
.file\:rounded::file-selector-button {
|
2494
|
+
border-radius: 0.25rem;
|
2495
|
+
}
|
2496
|
+
|
2497
|
+
.file\:border-0::file-selector-button {
|
2498
|
+
border-width: 0px;
|
2499
|
+
}
|
2500
|
+
|
2501
|
+
.file\:bg-white::file-selector-button {
|
2502
|
+
--tw-bg-opacity: 1;
|
2503
|
+
background-color: rgb(var(--color-white) / var(--tw-bg-opacity, 1));
|
2504
|
+
}
|
2505
|
+
|
2506
|
+
.file\:text-sm::file-selector-button {
|
2507
|
+
font-size: 0.875rem;
|
2508
|
+
line-height: 1.25rem;
|
2509
|
+
}
|
2510
|
+
|
2511
|
+
.focus-within\:ring-2:focus-within {
|
2512
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2513
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2514
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2515
|
+
}
|
2516
|
+
|
2517
|
+
.focus-within\:ring-offset-2:focus-within {
|
2518
|
+
--tw-ring-offset-width: 2px;
|
2519
|
+
}
|
2520
|
+
|
2521
|
+
.hover\:bg-black:hover {
|
2522
|
+
--tw-bg-opacity: 1;
|
2523
|
+
background-color: rgb(var(--color-black) / var(--tw-bg-opacity, 1));
|
2524
|
+
}
|
2525
|
+
|
2526
|
+
.hover\:bg-light:hover {
|
2527
|
+
--tw-bg-opacity: 1;
|
2528
|
+
background-color: rgb(var(--color-light) / var(--tw-bg-opacity, 1));
|
2529
|
+
}
|
2530
|
+
|
2531
|
+
.hover\:bg-mid\/20:hover {
|
2532
|
+
background-color: rgb(var(--color-mid) / 0.2);
|
2533
|
+
}
|
2534
|
+
|
2535
|
+
.hover\:bg-mid\/60:hover {
|
2536
|
+
background-color: rgb(var(--color-mid) / 0.6);
|
2537
|
+
}
|
2538
|
+
|
2539
|
+
.hover\:bg-white:hover {
|
2540
|
+
--tw-bg-opacity: 1;
|
2541
|
+
background-color: rgb(var(--color-white) / var(--tw-bg-opacity, 1));
|
2542
|
+
}
|
2543
|
+
|
2544
|
+
.hover\:text-black\/80:hover {
|
2545
|
+
color: rgb(var(--color-black) / 0.8);
|
2546
|
+
}
|
2547
|
+
|
2548
|
+
.hover\:text-error:hover {
|
2549
|
+
--tw-text-opacity: 1;
|
2550
|
+
color: rgb(var(--color-error) / var(--tw-text-opacity, 1));
|
2551
|
+
}
|
2552
|
+
|
2553
|
+
.hover\:text-white:hover {
|
2554
|
+
--tw-text-opacity: 1;
|
2555
|
+
color: rgb(var(--color-white) / var(--tw-text-opacity, 1));
|
2556
|
+
}
|
2557
|
+
|
2558
|
+
.hover\:underline:hover {
|
2559
|
+
text-decoration-line: underline;
|
2560
|
+
}
|
2561
|
+
|
2562
|
+
.hover\:shadow-sm:hover {
|
2563
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
2564
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
2565
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2566
|
+
}
|
2567
|
+
|
2568
|
+
.focus\:border-mid:focus {
|
2569
|
+
--tw-border-opacity: 1;
|
2570
|
+
border-color: rgb(var(--color-mid) / var(--tw-border-opacity, 1));
|
2571
|
+
}
|
2572
|
+
|
2573
|
+
.focus\:underline:focus {
|
2574
|
+
text-decoration-line: underline;
|
2575
|
+
}
|
2576
|
+
|
2577
|
+
.focus\:shadow-none:focus {
|
2578
|
+
--tw-shadow: 0 0 #0000;
|
2579
|
+
--tw-shadow-colored: 0 0 #0000;
|
2580
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2581
|
+
}
|
2582
|
+
|
2583
|
+
.focus\:outline-none:focus {
|
2584
|
+
outline: 2px solid transparent;
|
2585
|
+
outline-offset: 2px;
|
2586
|
+
}
|
2587
|
+
|
2588
|
+
.focus\:outline:focus {
|
2589
|
+
outline-style: solid;
|
2590
|
+
}
|
2591
|
+
|
2592
|
+
.focus\:outline-0:focus {
|
2593
|
+
outline-width: 0px;
|
2594
|
+
}
|
2595
|
+
|
2596
|
+
.focus\:-outline-offset-2:focus {
|
2597
|
+
outline-offset: -2px;
|
2598
|
+
}
|
2599
|
+
|
2600
|
+
.focus\:outline-dark:focus {
|
2601
|
+
outline-color: rgb(var(--color-dark) / 1);
|
2602
|
+
}
|
2603
|
+
|
2604
|
+
.focus\:ring-0:focus {
|
2605
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2606
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2607
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2608
|
+
}
|
2609
|
+
|
2610
|
+
.focus\:ring-1:focus {
|
2611
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2612
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2613
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2614
|
+
}
|
2615
|
+
|
2616
|
+
.focus\:ring-2:focus {
|
2617
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
2618
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
2619
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
2620
|
+
}
|
2621
|
+
|
2622
|
+
.focus\:ring-inset:focus {
|
2623
|
+
--tw-ring-inset: inset;
|
2624
|
+
}
|
2625
|
+
|
2626
|
+
.focus\:ring-dark:focus {
|
2627
|
+
--tw-ring-opacity: 1;
|
2628
|
+
--tw-ring-color: rgb(var(--color-dark) / var(--tw-ring-opacity, 1));
|
2629
|
+
}
|
2630
|
+
|
2631
|
+
.focus\:ring-mid:focus {
|
2632
|
+
--tw-ring-opacity: 1;
|
2633
|
+
--tw-ring-color: rgb(var(--color-mid) / var(--tw-ring-opacity, 1));
|
2634
|
+
}
|
2635
|
+
|
2636
|
+
.focus\:ring-offset-0:focus {
|
2637
|
+
--tw-ring-offset-width: 0px;
|
2638
|
+
}
|
2639
|
+
|
2640
|
+
.focus\:ring-offset-2:focus {
|
2641
|
+
--tw-ring-offset-width: 2px;
|
2642
|
+
}
|
2643
|
+
|
2644
|
+
.focus-visible\:outline:focus-visible {
|
2645
|
+
outline-style: solid;
|
2646
|
+
}
|
2647
|
+
|
2648
|
+
.focus-visible\:outline-0:focus-visible {
|
2649
|
+
outline-width: 0px;
|
2650
|
+
}
|
2651
|
+
|
2652
|
+
.focus-visible\:outline-2:focus-visible {
|
2653
|
+
outline-width: 2px;
|
2654
|
+
}
|
2655
|
+
|
2656
|
+
.focus-visible\:outline-offset-2:focus-visible {
|
2657
|
+
outline-offset: 2px;
|
2658
|
+
}
|
2659
|
+
|
2660
|
+
.group:hover .group-hover\:opacity-75 {
|
2661
|
+
opacity: 0.75;
|
2662
|
+
}
|
2663
|
+
|
2664
|
+
@media (min-width: 640px) {
|
2665
|
+
.sm\:mx-0 {
|
2666
|
+
margin-left: 0px;
|
2667
|
+
margin-right: 0px;
|
2668
|
+
}
|
2669
|
+
|
2670
|
+
.sm\:mx-auto {
|
2671
|
+
margin-left: auto;
|
2672
|
+
margin-right: auto;
|
2673
|
+
}
|
2674
|
+
|
2675
|
+
.sm\:mt-2 {
|
2676
|
+
margin-top: 0.5rem;
|
2677
|
+
}
|
2678
|
+
|
2679
|
+
.sm\:block {
|
2680
|
+
display: block;
|
2681
|
+
}
|
2682
|
+
|
2683
|
+
.sm\:flex {
|
2684
|
+
display: flex;
|
2685
|
+
}
|
2686
|
+
|
2687
|
+
.sm\:hidden {
|
2688
|
+
display: none;
|
2689
|
+
}
|
2690
|
+
|
2691
|
+
.sm\:w-full {
|
2692
|
+
width: 100%;
|
2693
|
+
}
|
2694
|
+
|
2695
|
+
.sm\:max-w-sm {
|
2696
|
+
max-width: 24rem;
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
.sm\:grid-cols-3 {
|
2700
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
2701
|
+
}
|
2702
|
+
|
2703
|
+
.sm\:items-end {
|
2704
|
+
align-items: flex-end;
|
2705
|
+
}
|
2706
|
+
|
2707
|
+
.sm\:gap-x-6 {
|
2708
|
+
-moz-column-gap: 1.5rem;
|
2709
|
+
column-gap: 1.5rem;
|
2710
|
+
}
|
2711
|
+
|
2712
|
+
.sm\:rounded-lg {
|
2713
|
+
border-radius: 0.5rem;
|
2714
|
+
}
|
2715
|
+
|
2716
|
+
.sm\:px-6 {
|
2717
|
+
padding-left: 1.5rem;
|
2718
|
+
padding-right: 1.5rem;
|
2719
|
+
}
|
2720
|
+
|
2721
|
+
.sm\:leading-6 {
|
2722
|
+
line-height: 1.5rem;
|
2723
|
+
}
|
2724
|
+
}
|
2725
|
+
|
2726
|
+
@media (min-width: 768px) {
|
2727
|
+
.md\:grid-cols-4 {
|
2728
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
2729
|
+
}
|
2730
|
+
}
|
2731
|
+
|
2732
|
+
@media (min-width: 1024px) {
|
2733
|
+
.lg\:fixed {
|
2734
|
+
position: fixed;
|
2735
|
+
}
|
2736
|
+
|
2737
|
+
.lg\:inset-y-0 {
|
2738
|
+
top: 0px;
|
2739
|
+
bottom: 0px;
|
2740
|
+
}
|
2741
|
+
|
2742
|
+
.lg\:z-50 {
|
2743
|
+
z-index: 50;
|
2744
|
+
}
|
2745
|
+
|
2746
|
+
.lg\:ml-72 {
|
2747
|
+
margin-left: 18rem;
|
2748
|
+
}
|
2749
|
+
|
2750
|
+
.lg\:mt-0 {
|
2751
|
+
margin-top: 0px;
|
2752
|
+
}
|
2753
|
+
|
2754
|
+
.lg\:block {
|
2755
|
+
display: block;
|
2756
|
+
}
|
2757
|
+
|
2758
|
+
.lg\:flex {
|
2759
|
+
display: flex;
|
2760
|
+
}
|
2761
|
+
|
2762
|
+
.lg\:hidden {
|
2763
|
+
display: none;
|
2764
|
+
}
|
2765
|
+
|
2766
|
+
.lg\:max-h-full {
|
2767
|
+
max-height: 100%;
|
2768
|
+
}
|
2769
|
+
|
2770
|
+
.lg\:w-72 {
|
2771
|
+
width: 18rem;
|
2772
|
+
}
|
2773
|
+
|
2774
|
+
.lg\:grid-cols-3 {
|
2775
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
2776
|
+
}
|
2777
|
+
|
2778
|
+
.lg\:flex-col {
|
2779
|
+
flex-direction: column;
|
2780
|
+
}
|
2781
|
+
|
2782
|
+
.lg\:px-6 {
|
2783
|
+
padding-left: 1.5rem;
|
2784
|
+
padding-right: 1.5rem;
|
2785
|
+
}
|
2786
|
+
|
2787
|
+
.lg\:px-8 {
|
2788
|
+
padding-left: 2rem;
|
2789
|
+
padding-right: 2rem;
|
2790
|
+
}
|
2791
|
+
}
|
2792
|
+
|
2793
|
+
@media (min-width: 1280px) {
|
2794
|
+
.xl\:grid-cols-4 {
|
2795
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
2796
|
+
}
|
2797
|
+
|
2798
|
+
.xl\:gap-x-8 {
|
2799
|
+
-moz-column-gap: 2rem;
|
2800
|
+
column-gap: 2rem;
|
2801
|
+
}
|
2802
|
+
|
2803
|
+
.xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
|
2804
|
+
--tw-space-x-reverse: 0;
|
2805
|
+
margin-right: calc(2rem * var(--tw-space-x-reverse));
|
2806
|
+
margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
|
2807
|
+
}
|
2808
|
+
}
|