XYZ File Manager
Current Path:
/var/www/wordpress/wp-content/plugins/oxymade/admin/css
var
/
www
/
wordpress
/
wp-content
/
plugins
/
oxymade
/
admin
/
css
/
📁
..
📄
oxymade-admin.css
(55.93 KB)
Editing: oxymade-admin.css
/** * All of the CSS for your admin-specific functionality should be * included in this file. */ /*! tailwindcss v2.1.1 | MIT License | https://tailwindcss.com */ /*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ /* Document ======== */ /** Use a better box model (opinionated). */ *, *::before, *::after { box-sizing: border-box; } /** Use a more readable tab size (opinionated). */ :root { -moz-tab-size: 4; tab-size: 4; } /** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ overscroll-behavior: none; } /* Sections ======== */ /** Remove the margin in all browsers. */ body { margin: 0; overscroll-behavior: none; } /** Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */ body { font-family: system-ui, -apple-system, /* Firefox supports this but not yet `system-ui` */ "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; } /* Grouping content ================ */ /** 1. Add the correct height in Firefox. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) */ hr { height: 0; /* 1 */ color: inherit; /* 2 */ } /* Text-level semantics ==================== */ /** Add the correct text decoration in Chrome, Edge, and Safari. */ abbr[title] { -webkit-text-decoration: underline dotted; text-decoration: underline dotted; } /** Add the correct font weight in Edge and Safari. */ b, strong { font-weight: bolder; } /** 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) 2. Correct the odd 'em' font sizing in all browsers. */ code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** Add the correct font size in all browsers. */ small { font-size: 80%; } /** Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Tabular data ============ */ /** 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) 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) */ table { text-indent: 0; /* 1 */ border-color: inherit; /* 2 */ } /* Forms ===== */ /** 1. Change the font styles in all browsers. 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** Remove the inheritance of text transform in Edge and Firefox. 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** Remove the inner border and padding in Firefox. */ /** Restore the focus styles unset by the previous rule. */ /** Remove the additional ':invalid' styles in Firefox. See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 */ /** Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. */ legend { padding: 0; } /** Add the correct vertical alignment in Chrome and Firefox. */ progress { vertical-align: baseline; } /** Correct the cursor style of increment and decrement buttons in Safari. */ /** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */ /** Remove the inner padding in Chrome and Safari on macOS. */ /** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to 'inherit' in Safari. */ /* Interactive =========== */ /* Add the correct display in Chrome and Safari. */ summary { display: list-item; } /** * Manually forked from SUIT CSS Base: https://github.com/suitcss/base * A thin layer on top of normalize.css that provides a starting point more * suitable for web applications. */ /** * Removes the default spacing and border for appropriate elements. */ blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; } button { background-color: transparent; background-image: none; } /** * Work around a Firefox/IE bug where the transparent `button` background * results in a loss of the default `button` focus styles. */ button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; } fieldset { margin: 0; padding: 0; } ol, ul { list-style: none; margin: 0; padding: 0; } /** * Tailwind custom reset styles */ /** * 1. Use the user's configured `sans` font-family (with Tailwind's default * sans-serif font stack as a fallback) as a sane default. * 2. Use Tailwind's default "normal" line-height so the user isn't forced * to override it to ensure consistency even when using the default theme. */ html { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */ line-height: 1.5; /* 2 */ } /** * Inherit font-family and line-height from `html` so users can set them as * a class directly on the `html` element. */ body { font-family: inherit; line-height: inherit; } /** * 1. Prevent padding and border from affecting element width. * * We used to set this in the html element and inherit from * the parent element for everything else. This caused issues * in shadow-dom-enhanced elements like <details> where the content * is wrapped by a div with box-sizing set to `content-box`. * * https://github.com/mozdevs/cssremedy/issues/4 * * * 2. Allow adding a border to an element by just adding a border-width. * * By default, the way the browser specifies that an element should have no * border is by setting it's border-style to `none` in the user-agent * stylesheet. * * In order to easily add borders to elements by just setting the `border-width` * property, we change the default border-style for all elements to `solid`, and * use border-width to hide them instead. This way our `border` utilities only * need to set the `border-width` property instead of the entire `border` * shorthand, making our border utilities much more straightforward to compose. * * https://github.com/tailwindcss/tailwindcss/pull/116 */ *, ::before, ::after { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ border-color: #e5e7eb; /* 2 */ } /* * Ensure horizontal rules are visible by default */ hr { border-top-width: 1px; } /** * Undo the `border-style: none` reset that Normalize applies to images so that * our `border-{width}` utilities have the expected effect. * * The Normalize reset is unnecessary for us since we default the border-width * to 0 on all elements. * * https://github.com/tailwindcss/tailwindcss/issues/362 */ img { border-style: solid; } textarea { resize: vertical; } input::placeholder, textarea::placeholder { opacity: 1; color: #9ca3af; } button, [role="button"] { cursor: pointer; } table { border-collapse: collapse; } h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; } /** * Reset links to optimize for opt-in styling instead of * opt-out. */ a { color: inherit; text-decoration: inherit; } /** * Reset form element properties that are easy to forget to * style explicitly so you don't inadvertently introduce * styles that deviate from your design system. These styles * supplement a partial reset that is already applied by * normalize.css. */ button, input, optgroup, select, textarea { padding: 0; line-height: inherit; color: inherit; } /** * Use the configured 'mono' font family for elements that * are expected to be rendered with a monospace font, falling * back to the system monospace stack if there is no configured * 'mono' font family. */ pre, code, kbd, samp { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } /** * Make replaced elements `display: block` by default as that's * the behavior you want almost all of the time. Inspired by * CSS Remedy, with `svg` added as well. * * https://github.com/mozdevs/cssremedy/issues/14 */ img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; } /** * Constrain images and videos to the parent width and preserve * their intrinsic aspect ratio. * * https://github.com/mozdevs/cssremedy/issues/14 */ img, video { max-width: 100%; height: auto; } [type="text"], [type="email"], [type="password"], [type="time"], [multiple], textarea, select { -webkit-appearance: none; appearance: none; background-color: #fff; border-color: #6b7280; border-width: 1px; border-radius: 0px; padding-top: 0.5rem; padding-right: 0.75rem; padding-bottom: 0.5rem; padding-left: 0.75rem; font-size: 1rem; line-height: 1.5rem; } [type="text"]:focus, [type="email"]:focus, [type="password"]:focus, [type="time"]:focus, [multiple]:focus, textarea:focus, select:focus { outline: 2px solid transparent; outline-offset: 2px; --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #2563eb; --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); border-color: #2563eb; } input::placeholder, textarea::placeholder { color: #6b7280; opacity: 1; } select { 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"); background-position: right 0.5rem center; background-repeat: no-repeat; background-size: 1.5em 1.5em; padding-right: 2.5rem; -webkit-print-color-adjust: exact; color-adjust: exact; } [multiple] { background-image: initial; background-position: initial; background-repeat: unset; background-size: initial; padding-right: 0.75rem; -webkit-print-color-adjust: unset; color-adjust: unset; } .container { width: 100%; } @media (min-width: 640px) { .container { max-width: 640px; } } @media (min-width: 768px) { .container { max-width: 768px; } } @media (min-width: 1024px) { .container { max-width: 1024px; } } @media (min-width: 1280px) { .container { max-width: 1280px; } } @media (min-width: 1536px) { .container { max-width: 1536px; } } .space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } .space-y-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); } .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } .space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); } .space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); } .space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(2rem * var(--tw-space-y-reverse)); } .divide-y > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 0; border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); } .divide-gray-200 > :not([hidden]) ~ :not([hidden]) { --tw-divide-opacity: 1; border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } .bg-white { --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } .bg-gray-50 { --tw-bg-opacity: 1; background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } .bg-gray-100 { --tw-bg-opacity: 1; background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } .bg-gray-200 { --tw-bg-opacity: 1; background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } .bg-gray-500 { --tw-bg-opacity: 1; background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } .bg-gray-600 { --tw-bg-opacity: 1; background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } .bg-red-50 { --tw-bg-opacity: 1; background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } .bg-red-100 { --tw-bg-opacity: 1; background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } .bg-red-600 { --tw-bg-opacity: 1; background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } .bg-yellow-50 { --tw-bg-opacity: 1; background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } .bg-green-50 { --tw-bg-opacity: 1; background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } .bg-green-100 { --tw-bg-opacity: 1; background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } .bg-green-600 { --tw-bg-opacity: 1; background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } .bg-green-700 { --tw-bg-opacity: 1; background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } .bg-blue-100 { --tw-bg-opacity: 1; background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } .bg-blue-600 { --tw-bg-opacity: 1; background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } .bg-indigo-100 { --tw-bg-opacity: 1; background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } .bg-indigo-600 { --tw-bg-opacity: 1; background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } .bg-indigo-700 { --tw-bg-opacity: 1; background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } .bg-purple-50 { --tw-bg-opacity: 1; background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } .bg-light-blue-50 { --tw-bg-opacity: 1; background-color: rgba(240, 249, 255, var(--tw-bg-opacity)); } .bg-teal-50 { --tw-bg-opacity: 1; background-color: rgba(240, 253, 250, var(--tw-bg-opacity)); } .hover\:bg-gray-50:hover { --tw-bg-opacity: 1; background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } .hover\:bg-gray-100:hover { --tw-bg-opacity: 1; background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } .hover\:bg-gray-700:hover { --tw-bg-opacity: 1; background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } .hover\:bg-red-200:hover { background-color: #fecaca; } .hover\:bg-red-700:hover { --tw-bg-opacity: 1; background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } .hover\:bg-green-100:hover { --tw-bg-opacity: 1; background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } .hover\:bg-green-200:hover { background-color: #a7f3d0; } .hover\:bg-green-700:hover { --tw-bg-opacity: 1; background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } .hover\:bg-blue-700:hover { --tw-bg-opacity: 1; background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } .hover\:bg-indigo-200:hover { --tw-bg-opacity: 1; background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } .hover\:bg-indigo-700:hover { --tw-bg-opacity: 1; background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } .bg-opacity-75 { --tw-bg-opacity: 0.75; } .border-transparent { border-color: transparent; } .border-l { border-left-width: 1px; } .border-r { border-right-width: 1px; } .border-0 { border: 0px; } .border-gray-100 { --tw-border-opacity: 1; border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } .border-gray-200 { --tw-border-opacity: 1; border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } .border-gray-300 { --tw-border-opacity: 1; border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } .border-red-200 { --tw-border-opacity: 1; border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } .border-yellow-200 { --tw-border-opacity: 1; border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } .border-green-200 { --tw-border-opacity: 1; border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } .border-green-700 { border-color: #2f855a; } .border-red-700 { --tw-border-opacity: 1; border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } .focus\:border-green-500:focus { --tw-border-opacity: 1; border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } .focus\:border-indigo-500:focus { --tw-border-opacity: 1; border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } .rounded-none { border-radius: 0px; } .rounded { border-radius: 0.25rem; } .rounded-md { border-radius: 0.375rem; } .rounded-lg { border-radius: 0.5rem; } .rounded-full { border-radius: 9999px; } .rounded-r-md { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; } .rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } .rounded-tl-lg { border-top-left-radius: 0.5rem; } .rounded-tr-lg { border-top-right-radius: 0.5rem; } .rounded-br-lg { border-bottom-right-radius: 0.5rem; } .rounded-bl-lg { border-bottom-left-radius: 0.5rem; } .border { border-width: 1px; } .border-r-0 { border-right-width: 0px; } .border-t { border-top-width: 1px; } .border-b { border-bottom-width: 1px; } .block { display: block; } .inline-block { display: inline-block; } .flex { display: flex; } .inline-flex { display: inline-flex; } .table { display: table; } .flow-root { display: flow-root; } .grid { display: grid; } .items-stretch { align-items: stretch; } .contents { display: contents; } .hidden { display: none; } .flex-col { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; } .items-center { align-items: center; } .items-stretch { align-items: stretch; } .justify-end { justify-content: flex-end; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .flex-1 { flex: 1 1 0%; } .flex-grow { flex-grow: 1; } .flex-shrink-0 { flex-shrink: 0; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-extrabold { font-weight: 800; } .h-0 { height: 0px; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-7 { height: 1.75rem; } .h-12 { height: 3rem; } .h-48 { height: 12rem; } .h-full { height: 100%; } .text-xs { font-size: 0.75rem; line-height: 1rem; } .text-sm { font-size: 0.875rem; line-height: 1.25rem; } .text-base { font-size: 1rem; line-height: 1.5rem; } .text-lg { font-size: 1.125rem; line-height: 1.75rem; } .text-xl { font-size: 1.25rem; line-height: 1.75rem; } .text-3xl { font-size: 1.875rem; line-height: 2.25rem; } .leading-4 { line-height: 1rem; } .leading-5 { line-height: 1.25rem; } .leading-6 { line-height: 1.5rem; } .leading-7 { line-height: 1.75rem; } .list-disc { list-style-type: disc; } .line-through { text-decoration: line-through; } .my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; } .my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; } .my-4 { margin-top: 1rem; margin-bottom: 1rem; } .mx-auto { margin-left: auto; margin-right: auto; } .-my-1 { margin-top: -0.25rem; margin-bottom: -0.25rem; } .-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } .-my-2 { margin-top: -0.5rem; margin-bottom: -0.5rem; } .-my-5 { margin-top: -1.25rem; margin-bottom: -1.25rem; } .-my-1\.5 { margin-top: -0.375rem; margin-bottom: -0.375rem; } .-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } .mt-1 { margin-top: 0.25rem; } .mr-1 { margin-right: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mr-2 { margin-right: 0.5rem; } .mb-2 { margin-bottom: 0.5rem; } .ml-2 { margin-left: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mr-3 { margin-right: 0.75rem; } .mb-3 { margin-bottom: 0.75rem; } .ml-3 { margin-left: 0.75rem; } .mt-4 { margin-top: 1rem; } .ml-4 { margin-left: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; } .mb-6 { margin-bottom: 1.5rem; } .mt-8 { margin-top: 2rem; } .mb-8 { margin-bottom: 2rem; } .ml-auto { margin-left: auto; } .mt-1\.5 { margin-top: 0.375rem; } .mr-1\.5 { margin-right: 0.375rem; } .-ml-px { margin-left: -1px; } .max-w-sm { max-width: 24rem; } .max-w-md { max-width: 28rem; } .max-w-lg { max-width: 32rem; } .max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; } .max-w-7xl { max-width: 80rem; } .max-w-full { max-width: 100%; } .min-h-screen { min-height: 100vh; } .min-w-0 { min-width: 0px; } .min-w-full { min-width: 100%; } .object-cover { object-fit: cover; } .opacity-0 { opacity: 0; } .opacity-100 { opacity: 1; } .group:hover .group-hover\:opacity-75 { opacity: 0.75; } .focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; } .overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; } .overflow-y-auto { overflow-y: auto; } .overflow-y-scroll { overflow-y: scroll; } .p-0 { padding: 0px; } .p-1 { padding: 0.25rem; } .p-2 { padding: 0.5rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-1\.5 { padding: 0.375rem; } .py-0 { padding-top: 0px; padding-bottom: 0px; } .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; } .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; } .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .py-8 { padding-top: 2rem; padding-bottom: 2rem; } .py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; } .py-24 { padding-top: 6rem; padding-bottom: 6rem; } .py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; } .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; } .px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; } .pt-0 { padding-top: 0px; } .pb-2 { padding-bottom: 0.5rem; } .pl-3 { padding-left: 0.75rem; } .pt-4 { padding-top: 1rem; } .pr-4 { padding-right: 1rem; } .pb-4 { padding-bottom: 1rem; } .pt-5 { padding-top: 1.25rem; } .pb-5 { padding-bottom: 1.25rem; } .pl-5 { padding-left: 1.25rem; } .pt-6 { padding-top: 1.5rem; } .pb-6 { padding-bottom: 1.5rem; } .pt-8 { padding-top: 2rem; } .pb-8 { padding-bottom: 2rem; } .pl-10 { padding-left: 2.5rem; } .pl-16 { padding-left: 4rem; } .pb-20 { padding-bottom: 5rem; } .pt-0\.5 { padding-top: 0.125rem; } .pointer-events-none { pointer-events: none; } .pointer-events-auto { pointer-events: auto; } .fixed { position: fixed; } .absolute { position: absolute; } .relative { position: relative; } .inset-0 { top: 0px; right: 0px; bottom: 0px; left: 0px; } .inset-y-0 { top: 0px; bottom: 0px; } .right-0 { right: 0px; } .left-0 { left: 0px; } .top-6 { top: 1.5rem; } .right-6 { right: 1.5rem; } * { --tw-shadow: 0 0 #0000; } .shadow-sm { --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow { --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-lg { --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } .shadow-xl { --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } * { --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(59, 130, 246, 0.5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; } .ring-1 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .ring-2 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .ring-4 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus-within\:ring-2:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus-within\:ring-inset:focus-within { --tw-ring-inset: inset; } .focus\:ring-1:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } .focus\:ring-offset-green-50:focus { --tw-ring-offset-color: #ecfdf5; } .ring-offset-2 { --tw-ring-offset-width: 2px; } .focus-within\:ring-offset-2:focus-within { --tw-ring-offset-width: 2px; } .focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; } .ring-black { --tw-ring-opacity: 1; --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } .ring-white { --tw-ring-opacity: 1; --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } .ring-indigo-500 { --tw-ring-opacity: 1; --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } .focus-within\:ring-indigo-500:focus-within { --tw-ring-opacity: 1; --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } .focus-within\:ring-cyan-500:focus-within { --tw-ring-opacity: 1; --tw-ring-color: rgba(6, 182, 212, var(--tw-ring-opacity)); } .focus\:ring-white:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } .focus\:ring-gray-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } .focus\:ring-red-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } .focus\:ring-green-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } .focus\:ring-green-600:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } .focus\:ring-blue-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } .focus\:ring-indigo-500:focus { --tw-ring-opacity: 1; --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } .ring-opacity-5 { --tw-ring-opacity: 0.05; } .text-left { text-align: left; } .text-center { text-align: center; } .text-right { text-align: right; } .text-white { --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .text-gray-300 { --tw-text-opacity: 1; color: rgba(209, 213, 219, var(--tw-text-opacity)); } .text-gray-400 { --tw-text-opacity: 1; color: rgba(156, 163, 175, var(--tw-text-opacity)); } .text-gray-500 { --tw-text-opacity: 1; color: rgba(107, 114, 128, var(--tw-text-opacity)); } .text-gray-600 { --tw-text-opacity: 1; color: rgba(75, 85, 99, var(--tw-text-opacity)); } .text-gray-700 { --tw-text-opacity: 1; color: rgba(55, 65, 81, var(--tw-text-opacity)); } .text-gray-800 { --tw-text-opacity: 1; color: rgba(31, 41, 55, var(--tw-text-opacity)); } .text-gray-900 { --tw-text-opacity: 1; color: rgba(17, 24, 39, var(--tw-text-opacity)); } .text-red-400 { --tw-text-opacity: 1; color: rgba(248, 113, 113, var(--tw-text-opacity)); } .text-red-600 { --tw-text-opacity: 1; color: rgba(220, 38, 38, var(--tw-text-opacity)); } .text-red-700 { --tw-text-opacity: 1; color: rgba(185, 28, 28, var(--tw-text-opacity)); } .text-red-800 { --tw-text-opacity: 1; color: rgba(153, 27, 27, var(--tw-text-opacity)); } .text-yellow-400 { --tw-text-opacity: 1; color: rgba(251, 191, 36, var(--tw-text-opacity)); } .text-yellow-700 { --tw-text-opacity: 1; color: rgba(180, 83, 9, var(--tw-text-opacity)); } .text-yellow-800 { --tw-text-opacity: 1; color: rgba(146, 64, 14, var(--tw-text-opacity)); } .text-green-200 { --tw-text-opacity: 1; color: rgba(167, 243, 208, var(--tw-text-opacity)); } .text-green-300 { --tw-text-opacity: 1; color: rgba(110, 231, 183, var(--tw-text-opacity)); } .text-green-400 { --tw-text-opacity: 1; color: rgba(52, 211, 153, var(--tw-text-opacity)); } .text-green-500 { --tw-text-opacity: 1; color: rgba(16, 185, 129, var(--tw-text-opacity)); } .text-green-600 { --tw-text-opacity: 1; color: rgba(5, 150, 105, var(--tw-text-opacity)); } .text-green-700 { --tw-text-opacity: 1; color: rgba(4, 120, 87, var(--tw-text-opacity)); } .text-green-800 { --tw-text-opacity: 1; color: rgba(6, 95, 70, var(--tw-text-opacity)); } .text-blue-800 { --tw-text-opacity: 1; color: rgba(30, 64, 175, var(--tw-text-opacity)); } .text-indigo-200 { --tw-text-opacity: 1; color: rgba(199, 210, 254, var(--tw-text-opacity)); } .text-indigo-300 { --tw-text-opacity: 1; color: rgba(165, 180, 252, var(--tw-text-opacity)); } .text-indigo-500 { --tw-text-opacity: 1; color: rgba(99, 102, 241, var(--tw-text-opacity)); } .text-indigo-600 { --tw-text-opacity: 1; color: rgba(79, 70, 229, var(--tw-text-opacity)); } .text-indigo-700 { --tw-text-opacity: 1; color: rgba(67, 56, 202, var(--tw-text-opacity)); } .text-purple-700 { --tw-text-opacity: 1; color: rgba(109, 40, 217, var(--tw-text-opacity)); } .text-light-blue-700 { --tw-text-opacity: 1; color: rgba(3, 105, 161, var(--tw-text-opacity)); } .text-teal-700 { --tw-text-opacity: 1; color: rgba(15, 118, 110, var(--tw-text-opacity)); } .group:hover .group-hover\:text-gray-400 { --tw-text-opacity: 1; color: rgba(156, 163, 175, var(--tw-text-opacity)); } .group:hover .group-hover\:text-gray-500 { --tw-text-opacity: 1; color: rgba(107, 114, 128, var(--tw-text-opacity)); } .group:hover .group-hover\:text-green-900 { --tw-text-opacity: 1; color: rgba(6, 78, 59, var(--tw-text-opacity)); } .group:hover .group-hover\:text-indigo-900 { --tw-text-opacity: 1; color: rgba(49, 46, 129, var(--tw-text-opacity)); } .hover\:text-white:hover { --tw-text-opacity: 1; color: rgba(255, 255, 255, var(--tw-text-opacity)); } .hover\:text-gray-500:hover { --tw-text-opacity: 1; color: rgba(107, 114, 128, var(--tw-text-opacity)); } .hover\:text-gray-700:hover { --tw-text-opacity: 1; color: rgba(55, 65, 81, var(--tw-text-opacity)); } .hover\:text-gray-900:hover { --tw-text-opacity: 1; color: rgba(17, 24, 39, var(--tw-text-opacity)); } .hover\:text-red-900:hover { --tw-text-opacity: 1; color: rgba(127, 29, 29, var(--tw-text-opacity)); } .hover\:text-green-900:hover { --tw-text-opacity: 1; color: rgba(6, 78, 59, var(--tw-text-opacity)); } .hover\:text-indigo-700:hover { --tw-text-opacity: 1; color: rgba(67, 56, 202, var(--tw-text-opacity)); } .hover\:text-indigo-900:hover { --tw-text-opacity: 1; color: rgba(49, 46, 129, var(--tw-text-opacity)); } .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .uppercase { text-transform: uppercase; } .capitalize { text-transform: capitalize; } .hover\:underline:hover { text-decoration: underline; } .tracking-tight { letter-spacing: -0.025em; } .tracking-wider { letter-spacing: 0.05em; } .align-middle { vertical-align: middle; } .align-bottom { vertical-align: bottom; } .whitespace-nowrap { white-space: nowrap; } .w-0 { width: 0px; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-12 { width: 3rem; } .w-full { width: 100%; } .w-screen { width: 100vw; } .z-0 { z-index: 0; } .z-10 { z-index: 10; } .focus-within\:z-10:focus-within { z-index: 10; } .focus\:z-10:focus { z-index: 10; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-x-4 { column-gap: 1rem; } .gap-y-8 { row-gap: 2rem; } .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); } .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); } .col-span-1 { grid-column: span 1 / span 1; } .col-span-2 { grid-column: span 2 / span 2; } .float-right { float: right; } .justify-self-end { justify-self: end; } .align-items-center { align-items: center; } .cursor-pointer { cursor: pointer; } .transform { --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; transform: translateX(var(--tw-translate-x)) translateY(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)); } .translate-x-0 { --tw-translate-x: 0px; } .translate-x-full { --tw-translate-x: 100%; } .translate-y-0 { --tw-translate-y: 0px; } .translate-y-2 { --tw-translate-y: 0.5rem; } .translate-y-4 { --tw-translate-y: 1rem; } .transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } .transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } .transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } .ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } .ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } .ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } .duration-100 { transition-duration: 100ms; } .duration-200 { transition-duration: 200ms; } .duration-300 { transition-duration: 300ms; } .duration-500 { transition-duration: 500ms; } @keyframes spin { to { transform: rotate(360deg); } } @keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } } @keyframes pulse { 50% { opacity: 0.5; } } @keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); } 50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); } } @media (min-width: 640px) { .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 0; border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); } .sm\:rounded-lg { border-radius: 0.5rem; } .sm\:rounded-b-lg { border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem; } .sm\:rounded-tr-none { border-top-right-radius: 0px; } .sm\:rounded-bl-none { border-bottom-left-radius: 0px; } .sm\:rounded-tr-lg { border-top-right-radius: 0.5rem; } .sm\:rounded-bl-lg { border-bottom-left-radius: 0.5rem; } .sm\:block { display: block; } .sm\:inline-block { display: inline-block; } .sm\:flex { display: flex; } .sm\:grid { display: grid; } .sm\:flex-row { flex-direction: row; } .sm\:flex-wrap { flex-wrap: wrap; } .sm\:items-start { align-items: flex-start; } .sm\:justify-end { justify-content: flex-end; } .sm\:justify-center { justify-content: center; } .sm\:justify-between { justify-content: space-between; } .sm\:h-screen { height: 100vh; } .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; } .sm\:leading-9 { line-height: 2.25rem; } .sm\:my-8 { margin-top: 2rem; margin-bottom: 2rem; } .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } .sm\:mt-0 { margin-top: 0px; } .sm\:mt-1 { margin-top: 0.25rem; } .sm\:ml-3 { margin-left: 0.75rem; } .sm\:mt-5 { margin-top: 1.25rem; } .sm\:mt-6 { margin-top: 1.5rem; } .sm\:mr-6 { margin-right: 1.5rem; } .sm\:max-w-lg { max-width: 32rem; } .sm\:overflow-hidden { overflow: hidden; } .sm\:p-0 { padding: 0px; } .sm\:p-6 { padding: 1.5rem; } .sm\:p-8 { padding: 2rem; } .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; } .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .sm\:pl-16 { padding-left: 4rem; } .sm\:text-center { text-align: center; } .sm\:truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .sm\:align-middle { vertical-align: middle; } .sm\:w-full { width: 100%; } .sm\:gap-3 { gap: 0.75rem; } .sm\:gap-px { gap: 1px; } .sm\:grid-flow-row-dense { grid-auto-flow: row dense; } .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .sm\:col-span-1 { grid-column: span 1 / span 1; } .sm\:col-span-2 { grid-column: span 2 / span 2; } .sm\:col-start-1 { grid-column-start: 1; } .sm\:col-start-2 { grid-column-start: 2; } .sm\:scale-95 { --tw-scale-x: 0.95; --tw-scale-y: 0.95; } .sm\:scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; } .sm\:translate-x-0 { --tw-translate-x: 0px; } .sm\:translate-x-2 { --tw-translate-x: 0.5rem; } .sm\:translate-y-0 { --tw-translate-y: 0px; } .sm\:duration-700 { transition-duration: 700ms; } } @media (min-width: 768px) { .md\:flex { display: flex; } .md\:items-center { align-items: center; } .md\:justify-between { justify-content: space-between; } .md\:mt-0 { margin-top: 0px; } .md\:ml-2 { margin-left: 0.5rem; } .md\:ml-4 { margin-left: 1rem; } .md\:mt-8 { margin-top: 2rem; } .md\:p-12 { padding: 3rem; } .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } } @media (min-width: 1024px) { .lg\:border-gray-200 { --tw-border-opacity: 1; border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } .lg\:border-t { border-top-width: 1px; } .lg\:mx-auto { margin-left: auto; margin-right: auto; } .lg\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } .lg\:max-w-4xl { max-width: 56rem; } .lg\:max-w-6xl { max-width: 72rem; } .lg\:max-w-7xl { max-width: 80rem; } .lg\:p-20 { padding: 5rem; } .lg\:px-4 { padding-left: 1rem; padding-right: 1rem; } .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } .lg\:grid-flow-col-dense { grid-auto-flow: column dense; } .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .lg\:col-span-1 { grid-column: span 1 / span 1; } .lg\:col-span-2 { grid-column: span 2 / span 2; } .lg\:col-start-1 { grid-column-start: 1; } .lg\:col-start-3 { grid-column-start: 3; } } @media (min-width: 1280px) { } @media (min-width: 1536px) { } // Color picker css .sp-container { position: absolute; top: 0; left: 0; display: inline-block; z-index: 9999994; overflow: hidden; } .sp-original-input-container { position: relative; display: inline-flex; } .sp-original-input-container input { margin: 0 !important; } .sp-original-input-container .sp-add-on { width: 40px; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; } input.spectrum.with-add-on { border-top-left-radius: 0; border-bottom-left-radius: 0; border-left: 0; } .sp-original-input-container .sp-add-on .sp-colorize { height: 100%; width: 100%; border-radius: inherit; } .sp-colorize-container { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .sp-container.sp-flat { position: relative; } .sp-container, .sp-container * { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } .sp-top { position: relative; width: 100%; display: inline-block; } .sp-top-inner { position: absolute; top: 0; left: 0; bottom: 0; right: 0; } .sp-color { position: absolute; top: 0; left: 0; bottom: 0; right: 20px !important; } .sp-hue { position: absolute; top: 0; right: 0; bottom: 0; width: 12px; height: 100%; left: initial !important; } .sp-clear-enabled .sp-hue { top: 15%; height: 85%; } .sp-fill { padding-top: 80%; } .sp-sat, .sp-val { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .sp-alpha-enabled .sp-top { margin-bottom: 28px !important; } .sp-alpha-enabled .sp-alpha { display: block; } .sp-alpha-handle { position: absolute; top: -3px; cursor: pointer; height: 16px; border-radius: 50%; width: 16px; margin-right: 5px; left: -2px; right: 0; background: #f9f9f9; box-shadow: 0 0 2px 0 #3a3a3a; } .sp-alpha { display: none; position: absolute; bottom: -18px; right: 0; left: 0; height: 10px; } .sp-alpha-inner { border-radius: 4px; } .sp-clear { display: none; } .sp-clear.sp-clear-display { background-position: center; } .sp-clear-enabled .sp-clear { display: block; position: absolute; top: 3px; right: 0; bottom: 0; cursor: pointer; left: initial; height: 12px; width: 12px; } .sp-alpha, .sp-alpha-handle, .sp-clear, .sp-container, .sp-container button, .sp-container.sp-dragging .sp-input, .sp-dragger, .sp-preview, .sp-replacer, .sp-slider { -webkit-user-select: none; -moz-user-select: -moz-none; -o-user-select: none; user-select: none; } .sp-container.sp-input-disabled .sp-input-container { display: none; } .sp-container.sp-buttons-disabled .sp-button-container { display: none; } .sp-container.sp-palette-buttons-disabled .sp-palette-button-container { display: none; } .sp-palette-only .sp-picker-container { display: none; } .sp-palette-disabled .sp-palette-container { display: none; } .sp-initial-disabled .sp-initial { display: none; } .sp-sat { background-image: -webkit-gradient( linear, 0 0, 100% 0, from(#fff), to(rgba(204, 154, 129, 0)) ); background-image: -webkit-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0)); } .sp-val { border-radius: 4px; background-image: -webkit-gradient( linear, 0 100%, 0 0, from(#000), to(rgba(204, 154, 129, 0)) ); background-image: -webkit-linear-gradient( bottom, #000, rgba(204, 154, 129, 0) ); background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0)); } .sp-hue { background: -moz-linear-gradient( top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100% ); background: -ms-linear-gradient( top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100% ); background: -o-linear-gradient( top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100% ); background: -webkit-gradient( linear, left top, left bottom, from(red), color-stop(0.17, #ff0), color-stop(0.33, #0f0), color-stop(0.5, #0ff), color-stop(0.67, #00f), color-stop(0.83, #f0f), to(red) ); background: -webkit-linear-gradient( top, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100% ); background: linear-gradient( to bottom, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100% ); } .sp-1 { height: 17%; } .sp-2 { height: 16%; } .sp-3 { height: 17%; } .sp-4 { height: 17%; } .sp-5 { height: 16%; } .sp-6 { height: 17%; } .sp-hidden { display: none !important; } .sp-cf:after, .sp-cf:before { content: ""; display: table; } .sp-cf:after { clear: both; } @media (max-device-width: 480px) { .sp-color { right: 40%; } .sp-hue { left: 63%; } .sp-fill { padding-top: 60%; } } .sp-dragger { border-radius: 5px; height: 10px; width: 10px; border: 1px solid #fff; cursor: pointer; position: absolute; top: 0; left: 0; margin-left: 3px; margin-top: 3px; box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); } .sp-slider { position: absolute; top: 0; cursor: pointer; height: 16px; border-radius: 50%; width: 16px; left: -2px; background: #f9f9f9; box-shadow: 0 0 2px 0 #3a3a3a; margin-top: 8px; } .sp-container { display: inline-flex; border-radius: 0; background-color: #fff; padding: 0; border-radius: 4px; color: #000; box-shadow: 0 0 0 1px rgba(99, 114, 130, 0.16), 0 8px 16px rgba(27, 39, 51, 0.08); } .sp-clear, .sp-color, .sp-container, .sp-container button, .sp-container input, .sp-hue { font-size: 12px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } .sp-top { margin-bottom: 10px; } .sp-clear, .sp-color, .sp-hue, .sp-sat, .sp-val { border-radius: 3px; } .sp-input-container { margin-top: -5px; } .sp-button-container.sp-cf, .sp-initial.sp-thumb.sp-cf, .sp-input-container.sp-cf { height: 25px; } .sp-picker-container .sp-cf { margin-bottom: 10px; } .sp-palette-row-initial > span:first-child { cursor: pointer; } .sp-initial-disabled .sp-input-container { width: 100%; } .sp-input { padding: 0 5px !important; margin: 0; width: 100%; box-shadow: none !important; height: 100% !important; background: 0 0; color: #3a3a3a; border-radius: 2px !important; border: 1px solid #e0e0e0 !important; text-align: center; font-family: monospace; font-size: inherit !important; } .sp-input:focus { border: 1px solid orange; } .sp-input.sp-validation-error { border: 1px solid red; background: #fdd; } .sp-palette-container, .sp-picker-container { position: relative; padding: 10px; } .sp-picker-container { width: 200px; padding-bottom: 0; } .sp-palette-container { border-right: solid 1px #ccc; } .sp-palette-only .sp-palette-container { border: 0; } .sp-palette .sp-thumb-el { display: block; position: relative; float: left; width: 24px; height: 15px; margin: 3px; cursor: pointer; border: solid 2px transparent; } .sp-palette .sp-thumb-el.sp-thumb-active, .sp-palette .sp-thumb-el:hover { border-color: orange; } .sp-thumb-el { position: relative; } .sp-initial { float: left; } .sp-initial span { width: 30px; height: 25px; border: none; display: block; float: left; margin: 0; } .sp-initial .spe-thumb-el.sp-thumb-active { border-radius: 0 5px 5px 0; } .sp-initial .spe-thumb-el { border-radius: 5px 0 0 5px; } .sp-initial .sp-clear-display { background-position: center; } .sp-button-container { float: right; } .sp-palette-button-container { margin-top: 10px; } .sp-replacer { position: relative; overflow: hidden; cursor: pointer; display: inline-block; border-radius: 3px; border: 1px solid #aaa; color: #666; transition: border-color 0.3s; vertical-align: middle; width: 3rem; height: 1.5rem; } .sp-replacer.sp-active, .sp-replacer:hover { border: 1px solid #666; color: #000; } .sp-replacer.sp-disabled { cursor: default; border-color: silver; color: silver; } .sp-dd { position: absolute; font-size: 10px; right: 0; top: 0; bottom: 0; padding: 0 2px; line-height: 1.6rem; background-color: #fff; } .sp-preview { position: relative; width: 100%; height: 100%; float: left; z-index: 0; } .sp-preview-inner { transition: background-color 0.2s; } .sp-preview-inner.sp-clear-display { display: none; } .sp-palette .sp-thumb-el { width: 16px; height: 16px; margin: 3px; border: none; border-radius: 3px; } .sp-container button { border-radius: 3px; border: none; background: 0 0; line-height: 1; padding: 0 8px; height: 25px; text-transform: capitalize; text-align: center; vertical-align: middle; cursor: pointer; color: #606c72; font-weight: 700; } .sp-container button.sp-choose { background-color: #3cab3b; color: #fff; margin-left: 5px; } .sp-container button:hover { opacity: 0.8; } .sp-container button.sp-palette-toggle { width: 100%; background-color: #f3f3f3; margin: 0; } .sp-palette span.sp-thumb-active, .sp-palette span:hover { border-color: #000; } .sp-alpha, .sp-preview, .sp-thumb-el { position: relative; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .sp-alpha-inner, .sp-preview-inner, .sp-thumb-inner { display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } .sp-palette .sp-thumb-inner { border-radius: 3px; background-position: 50% 50%; background-repeat: no-repeat; } .sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=); } .sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=); } .sp-clear-display { background-repeat: no-repeat; background-position: center; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABe0lEQVQokYXSsUtcQRTF4d8Jj+VhHSxkEQuLsEUKK0nhTBFTmLSSUhBCMCAWsmgIwWrBLk0akfwLCaSQKBJmtrIIISwpRFKIhViETScphGMzysMtvOVwvpm5d0bGNCuGWAOPgYdl6S8wSDn9b+bUhDHEKWAdeAFMANg+l/TV9ofcz6cjMIbYBvaBMds7QCqZ58CmpBNgPuV0DvAAIMyFGugWtJr7eTv38xEwkPRPErY7QDeG2LqFkjrAgu0dSd/KDVqSNmxvAZ8lfbS9AHRuYemnLWkv5XRVBrQMbAI/gTXgEzAJtJuwBVS2L2OIle03QA/4Lmkl5XQBXEqqbFcAVYFDYChpFngiqWf7l6TXKaezMt2Zkhk24THwG+jZriX9AFZvUAyxLbRke2D75O5zPAO+ADXwEtizjaRHwDvbTyUtppwOmicCHAJvbXcl9YA1SQDjtseA97YPRz7ATcUQp2y/kjRdevsjaTfldNrMjcDGBjXA3T96L7yvrgFzP69+0Ao/HAAAAABJRU5ErkJggg==); } .del-sel-btn { width: 100px; margin: 12px !important; float: right; margin-right: 36px !important; } .native-colors .sp-colorize-container.sp-add-on { width: 24px !important; } .disabled\:opacity-50:disabled { opacity: 0.5; pointer-events: none; } .content-visibility-auto { /* content-visibility: auto; */ } .area--primary-hover-color, .area--secondary-hover-color, .area--primary-alt-color, .area--secondary-alt-color, .area--primary-alt-hover-color, .area--secondary-alt-hover-color, .area--primary-rgb-vals, .area--secondary-rgb-vals, .area--tertiary-rgb-vals, .area--dark-rgb-vals, .area--paragraph-rgb-vals, .area--black-rgb-vals, .area--success-rgb-vals, .area--warning-rgb-vals, .area--error-rgb-vals, .area--extra-color-1-rgb-vals, .area--extra-color-2-rgb-vals, .area--extra-color-3-rgb-vals, .area--extra-color-4-rgb-vals { display: none; pointer-events: none; opacity: 50%; } .purge-whitelist-select { width: 100%; margin-top: 12px; padding: 6px !important; border: 1px solid #ddd !important; } .purge_folder_option { padding: 4px; } .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; /* Position the tooltip */ position: absolute; z-index: 1; } .tooltip:hover .tooltiptext { visibility: visible; } .omColorsLi { display: flex; flex-direction: column; }
Upload File
Create Folder