Created
November 11, 2019 22:22
-
-
Save mannyyang/bcfc1429aa7099df1fe59842ed9dc6e8 to your computer and use it in GitHub Desktop.
Generated CSS from Tailwinds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This injects Tailwind's base styles, which is a combination of | |
| * Normalize.css and some additional base styles. | |
| * | |
| * You can see the styles here: | |
| * https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css | |
| * | |
| * If using `postcss-import`, use this import instead: | |
| * | |
| * @import "tailwindcss/preflight"; | |
| * | |
| * Don't include tailwind's preflight as we already have our own normalize.css | |
| * styles in main.less and just include the additional base styles below. | |
| * | |
| * @tailwind preflight; | |
| */ | |
| /* | |
| * Main common styles of Nativo applications. | |
| * 1) Normalize.css | |
| * 2) Custom shared styles for components. Ex. Utility classes. | |
| */ | |
| /* =========================== 1. ==================================== */ | |
| /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ | |
| /* | |
| * Modified for use with Nativo UI components. | |
| * | |
| */ | |
| /* Document | |
| ========================================================================== */ | |
| /** | |
| * 1. Correct the line height in all browsers. | |
| * 2. Prevent adjustments of font size after orientation changes in iOS. | |
| */ | |
| *, | |
| *::before, | |
| *::after { | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| line-height: 1.15; | |
| /* 1 */ | |
| -webkit-text-size-adjust: 100%; | |
| /* 2 */ | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| /* Sections | |
| ========================================================================== */ | |
| /** | |
| * Remove the margin in all browsers. | |
| */ | |
| body { | |
| margin: 0; | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| /** | |
| * Correct the font size and margin on `h1` elements within `section` and | |
| * `article` contexts in Chrome, Firefox, and Safari. | |
| */ | |
| h1 { | |
| font-size: 2em; | |
| margin: .67em 0; | |
| } | |
| /* Grouping content | |
| ========================================================================== */ | |
| /** | |
| * 1. Add the correct box sizing in Firefox. | |
| * 2. Show the overflow in Edge and IE. | |
| */ | |
| hr { | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| /* 1 */ | |
| height: 0; | |
| /* 1 */ | |
| overflow: visible; | |
| /* 2 */ | |
| } | |
| /** | |
| * 1. Correct the inheritance and scaling of font size in all browsers. | |
| * 2. Correct the odd `em` font sizing in all browsers. | |
| */ | |
| pre { | |
| font-family: monospace, monospace; | |
| /* 1 */ | |
| font-size: 1em; | |
| /* 2 */ | |
| } | |
| /* Text-level semantics | |
| ========================================================================== */ | |
| /** | |
| * Remove the gray background on active links in IE 10. | |
| */ | |
| a { | |
| background-color: transparent; | |
| } | |
| /** | |
| * 1. Remove the bottom border in Chrome 57- | |
| * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. | |
| */ | |
| abbr[title] { | |
| border-bottom: none; | |
| /* 1 */ | |
| text-decoration: underline; | |
| /* 2 */ | |
| -webkit-text-decoration: underline dotted; | |
| text-decoration: underline dotted; | |
| /* 2 */ | |
| } | |
| /** | |
| * Add the correct font weight in Chrome, Edge, and Safari. | |
| */ | |
| b, | |
| strong { | |
| font-weight: bolder; | |
| } | |
| /** | |
| * 1. Correct the inheritance and scaling of font size in all browsers. | |
| * 2. Correct the odd `em` font sizing in all browsers. | |
| */ | |
| code, | |
| kbd, | |
| samp { | |
| font-family: monospace, 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; | |
| } | |
| /* Embedded content | |
| ========================================================================== */ | |
| /** | |
| * Remove the border on images inside links in IE 10. | |
| */ | |
| img { | |
| border-style: none; | |
| } | |
| /* 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 */ | |
| } | |
| /** | |
| * Show the overflow in IE. | |
| * 1. Show the overflow in Edge. | |
| */ | |
| button, | |
| input { | |
| /* 1 */ | |
| overflow: visible; | |
| } | |
| /** | |
| * Remove the inheritance of text transform in Edge, Firefox, and IE. | |
| * 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. | |
| */ | |
| button::-moz-focus-inner, | |
| [type='button']::-moz-focus-inner, | |
| [type='reset']::-moz-focus-inner, | |
| [type='submit']::-moz-focus-inner { | |
| border-style: none; | |
| padding: 0; | |
| } | |
| /** | |
| * Restore the focus styles unset by the previous rule. | |
| */ | |
| button:-moz-focusring, | |
| [type='button']:-moz-focusring, | |
| [type='reset']:-moz-focusring, | |
| [type='submit']:-moz-focusring { | |
| outline: 1px dotted ButtonText; | |
| } | |
| /** | |
| * Correct the padding in Firefox. | |
| */ | |
| fieldset { | |
| padding: .35em .75em .625em; | |
| } | |
| /** | |
| * 1. Correct the text wrapping in Edge and IE. | |
| * 2. Correct the color inheritance from `fieldset` elements in IE. | |
| * 3. Remove the padding so developers are not caught out when they zero out | |
| * `fieldset` elements in all browsers. | |
| */ | |
| legend { | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| /* 1 */ | |
| color: inherit; | |
| /* 2 */ | |
| display: table; | |
| /* 1 */ | |
| max-width: 100%; | |
| /* 1 */ | |
| padding: 0; | |
| /* 3 */ | |
| white-space: normal; | |
| /* 1 */ | |
| } | |
| /** | |
| * Add the correct vertical alignment in Chrome, Firefox, and Opera. | |
| */ | |
| progress { | |
| vertical-align: baseline; | |
| } | |
| /** | |
| * Remove the default vertical scrollbar in IE 10+. | |
| */ | |
| textarea { | |
| overflow: auto; | |
| } | |
| /** | |
| * 1. Add the correct box sizing in IE 10. | |
| * 2. Remove the padding in IE 10. | |
| */ | |
| [type='checkbox'], | |
| [type='radio'] { | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| /* 1 */ | |
| padding: 0; | |
| /* 2 */ | |
| } | |
| /** | |
| * Correct the cursor style of increment and decrement buttons in Chrome. | |
| */ | |
| [type='number']::-webkit-inner-spin-button, | |
| [type='number']::-webkit-outer-spin-button { | |
| height: auto; | |
| } | |
| /** | |
| * 1. Correct the odd appearance in Chrome and Safari. | |
| * 2. Correct the outline style in Safari. | |
| */ | |
| [type='search'] { | |
| -webkit-appearance: textfield; | |
| /* 1 */ | |
| outline-offset: -2px; | |
| /* 2 */ | |
| } | |
| /** | |
| * Remove the inner padding in Chrome and Safari on macOS. | |
| */ | |
| [type='search']::-webkit-search-decoration { | |
| -webkit-appearance: none; | |
| } | |
| /** | |
| * 1. Correct the inability to style clickable types in iOS and Safari. | |
| * 2. Change font properties to `inherit` in Safari. | |
| */ | |
| ::-webkit-file-upload-button { | |
| -webkit-appearance: button; | |
| /* 1 */ | |
| font: inherit; | |
| /* 2 */ | |
| } | |
| /* Interactive | |
| ========================================================================== */ | |
| /* | |
| * Add the correct display in Edge, IE 10+, and Firefox. | |
| */ | |
| details { | |
| display: block; | |
| } | |
| /* | |
| * Add the correct display in all browsers. | |
| */ | |
| summary { | |
| display: list-item; | |
| } | |
| /* Misc | |
| ========================================================================== */ | |
| /** | |
| * Add the correct display in IE 10+. | |
| */ | |
| template { | |
| display: none; | |
| } | |
| /** | |
| * Add the correct display in IE 10. | |
| */ | |
| [hidden] { | |
| display: none; | |
| } | |
| ol, | |
| ul { | |
| margin: 0; | |
| } | |
| /** | |
| * Overrides for Nativo's legacy css styles. Should | |
| */ | |
| /* =========================== 2. ==================================== */ | |
| html, | |
| body { | |
| text-rendering: optimizeLegibility !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| -moz-osx-font-smoothing: grayscale; | |
| width: 100%; | |
| font-family: Helvetica Neue, Helvetica, Segoe UI, Arial, freesans, sans-serif; | |
| font-size: 12px; | |
| color: #5c5e62; | |
| } | |
| a { | |
| text-decoration: none; | |
| } | |
| p { | |
| line-height: 1.5; | |
| margin: 0; | |
| margin-bottom: 10px; | |
| } | |
| ul { | |
| margin-bottom: 0; | |
| } | |
| button:focus { | |
| outline: 0; | |
| } | |
| .row::after, | |
| .row::before { | |
| content: none; | |
| } | |
| header .container .login-status span.dropdown-toggle-image { | |
| display: -webkit-box; | |
| display: -ms-flexbox; | |
| display: flex; | |
| -webkit-box-align: center; | |
| -ms-flex-align: center; | |
| align-items: center; | |
| -webkit-box-pack: center; | |
| -ms-flex-pack: center; | |
| justify-content: center; | |
| width: 50px; | |
| height: 55px; | |
| padding: 0; | |
| margin-top: -1px; | |
| } | |
| header .container .login-status .full-circle-image { | |
| position: static; | |
| } | |
| nav { | |
| font-size: 14px; | |
| } | |
| footer { | |
| min-width: 1170px; | |
| } | |
| /** | |
| * Tailwind custom reset styles | |
| */ | |
| /** | |
| * 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 { | |
| border-width: 0; | |
| border-style: solid; | |
| border-color: #5c5e62; | |
| } | |
| /** | |
| * 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; | |
| } | |
| img { | |
| max-width: 100%; | |
| height: auto; | |
| } | |
| input::-webkit-input-placeholder, | |
| textarea::-webkit-input-placeholder { | |
| color: inherit; | |
| opacity: .5; | |
| } | |
| input:-ms-input-placeholder, | |
| textarea:-ms-input-placeholder { | |
| color: inherit; | |
| opacity: .5; | |
| } | |
| input::-ms-input-placeholder, | |
| textarea::-ms-input-placeholder { | |
| color: inherit; | |
| opacity: .5; | |
| } | |
| input::placeholder, | |
| textarea::placeholder { | |
| color: inherit; | |
| opacity: .5; | |
| } | |
| button, | |
| [role='button'] { | |
| cursor: pointer; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| } | |
| .checkered-bg { | |
| background-color: #fff; | |
| background-size: 24px 24px; | |
| background-position: 0 0, 12px 12px; | |
| background-image: linear-gradient(45deg, #efefef 25%, transparent 25%, transparent 75%, #efefef 75%, #efefef), linear-gradient(45deg, #efefef 25%, transparent 25%, transparent 75%, #efefef 75%, #efefef); | |
| } | |
| /** | |
| * This injects any component classes registered by plugins. | |
| * | |
| * If using `postcss-import`, use this import instead: | |
| * | |
| * @import "tailwindcss/components"; | |
| */ | |
| .container { | |
| width: 100%; | |
| } | |
| /** | |
| * Here you would add any of your custom component classes; stuff that you'd | |
| * want loaded *before* the utilities so that the utilities could still | |
| * override them. | |
| * | |
| * Example: | |
| * | |
| * .btn { ... } | |
| * .form-input { ... } | |
| * | |
| * Or if using a preprocessor or `postcss-import`: | |
| * | |
| * @import "components/buttons"; | |
| * @import "components/forms"; | |
| */ | |
| /** | |
| * This injects all of Tailwind's utility classes, generated based on your | |
| * config file. | |
| * | |
| * If using `postcss-import`, use this import instead: | |
| * | |
| * @import "tailwindcss/utilities"; | |
| */ | |
| .list-reset { | |
| list-style: none; | |
| padding: 0; | |
| } | |
| .appearance-none { | |
| -webkit-appearance: none; | |
| -moz-appearance: none; | |
| appearance: none; | |
| } | |
| .bg-fixed { | |
| background-attachment: fixed; | |
| } | |
| .bg-local { | |
| background-attachment: local; | |
| } | |
| .bg-scroll { | |
| background-attachment: scroll; | |
| } | |
| .bg-default { | |
| background-color: #5c5e62; | |
| } | |
| .bg-transparent { | |
| background-color: transparent; | |
| } | |
| .bg-white { | |
| background-color: #fff; | |
| } | |
| .bg-grey-1 { | |
| background-color: #fafafa; | |
| } | |
| .bg-grey-2 { | |
| background-color: #efefef; | |
| } | |
| .bg-grey-3 { | |
| background-color: #e3e3e3; | |
| } | |
| .bg-grey-4 { | |
| background-color: #dcdcdc; | |
| } | |
| .bg-grey-5 { | |
| background-color: #cecece; | |
| } | |
| .bg-grey-6 { | |
| background-color: #adadad; | |
| } | |
| .bg-grey-7 { | |
| background-color: #9b9b9b; | |
| } | |
| .bg-grey-8 { | |
| background-color: #8e8e8e; | |
| } | |
| .bg-grey-9 { | |
| background-color: #5c5e62; | |
| } | |
| .bg-black { | |
| background-color: #000; | |
| } | |
| .bg-air { | |
| background-color: #f6fbfe; | |
| } | |
| .bg-polar { | |
| background-color: #f3f9fd; | |
| } | |
| .bg-selago { | |
| background-color: #e8f4fc; | |
| } | |
| .bg-sky { | |
| background-color: #d5f0f7; | |
| } | |
| .bg-nativo { | |
| background-color: #74cfe7; | |
| } | |
| .bg-teal { | |
| background-color: #51b1cb; | |
| } | |
| .bg-rock-blue { | |
| background-color: #a0c3d2; | |
| } | |
| .bg-blue-grey { | |
| background-color: #88a6b6; | |
| } | |
| .bg-ocean { | |
| background-color: #358297; | |
| } | |
| .bg-ecru { | |
| background-color: #eeffca; | |
| } | |
| .bg-pale-olive { | |
| background-color: #bcd48a; | |
| } | |
| .bg-celery { | |
| background-color: #a5ba52; | |
| } | |
| .bg-seafoam { | |
| background-color: #86cabd; | |
| } | |
| .bg-wheat { | |
| background-color: #fabd79; | |
| } | |
| .bg-squash { | |
| background-color: #f6a724; | |
| } | |
| .bg-light-salmon { | |
| background-color: #ffa898; | |
| } | |
| .bg-blush { | |
| background-color: #f37777; | |
| } | |
| .bg-dusk { | |
| background-color: #565c81; | |
| } | |
| .bg-primary { | |
| background-color: #74cfe7; | |
| } | |
| .bg-success { | |
| background-color: #a5ba52; | |
| } | |
| .bg-warning { | |
| background-color: #f6a724; | |
| } | |
| .bg-danger { | |
| background-color: #f37777; | |
| } | |
| .bg-info { | |
| background-color: #86cabd; | |
| } | |
| .bg-hover { | |
| background-color: #e8f4fc; | |
| } | |
| .bg-light { | |
| background-color: #cecece; | |
| } | |
| .bg-grey { | |
| background-color: #9b9b9b; | |
| } | |
| .bg-dark { | |
| background-color: #5c5e62; | |
| } | |
| .hover\:bg-default:hover { | |
| background-color: #5c5e62; | |
| } | |
| .hover\:bg-transparent:hover { | |
| background-color: transparent; | |
| } | |
| .hover\:bg-white:hover { | |
| background-color: #fff; | |
| } | |
| .hover\:bg-grey-1:hover { | |
| background-color: #fafafa; | |
| } | |
| .hover\:bg-grey-2:hover { | |
| background-color: #efefef; | |
| } | |
| .hover\:bg-grey-3:hover { | |
| background-color: #e3e3e3; | |
| } | |
| .hover\:bg-grey-4:hover { | |
| background-color: #dcdcdc; | |
| } | |
| .hover\:bg-grey-5:hover { | |
| background-color: #cecece; | |
| } | |
| .hover\:bg-grey-6:hover { | |
| background-color: #adadad; | |
| } | |
| .hover\:bg-grey-7:hover { | |
| background-color: #9b9b9b; | |
| } | |
| .hover\:bg-grey-8:hover { | |
| background-color: #8e8e8e; | |
| } | |
| .hover\:bg-grey-9:hover { | |
| background-color: #5c5e62; | |
| } | |
| .hover\:bg-black:hover { | |
| background-color: #000; | |
| } | |
| .hover\:bg-air:hover { | |
| background-color: #f6fbfe; | |
| } | |
| .hover\:bg-polar:hover { | |
| background-color: #f3f9fd; | |
| } | |
| .hover\:bg-selago:hover { | |
| background-color: #e8f4fc; | |
| } | |
| .hover\:bg-sky:hover { | |
| background-color: #d5f0f7; | |
| } | |
| .hover\:bg-nativo:hover { | |
| background-color: #74cfe7; | |
| } | |
| .hover\:bg-teal:hover { | |
| background-color: #51b1cb; | |
| } | |
| .hover\:bg-rock-blue:hover { | |
| background-color: #a0c3d2; | |
| } | |
| .hover\:bg-blue-grey:hover { | |
| background-color: #88a6b6; | |
| } | |
| .hover\:bg-ocean:hover { | |
| background-color: #358297; | |
| } | |
| .hover\:bg-ecru:hover { | |
| background-color: #eeffca; | |
| } | |
| .hover\:bg-pale-olive:hover { | |
| background-color: #bcd48a; | |
| } | |
| .hover\:bg-celery:hover { | |
| background-color: #a5ba52; | |
| } | |
| .hover\:bg-seafoam:hover { | |
| background-color: #86cabd; | |
| } | |
| .hover\:bg-wheat:hover { | |
| background-color: #fabd79; | |
| } | |
| .hover\:bg-squash:hover { | |
| background-color: #f6a724; | |
| } | |
| .hover\:bg-light-salmon:hover { | |
| background-color: #ffa898; | |
| } | |
| .hover\:bg-blush:hover { | |
| background-color: #f37777; | |
| } | |
| .hover\:bg-dusk:hover { | |
| background-color: #565c81; | |
| } | |
| .hover\:bg-primary:hover { | |
| background-color: #74cfe7; | |
| } | |
| .hover\:bg-success:hover { | |
| background-color: #a5ba52; | |
| } | |
| .hover\:bg-warning:hover { | |
| background-color: #f6a724; | |
| } | |
| .hover\:bg-danger:hover { | |
| background-color: #f37777; | |
| } | |
| .hover\:bg-info:hover { | |
| background-color: #86cabd; | |
| } | |
| .hover\:bg-hover:hover { | |
| background-color: #e8f4fc; | |
| } | |
| .hover\:bg-light:hover { | |
| background-color: #cecece; | |
| } | |
| .hover\:bg-grey:hover { | |
| background-color: #9b9b9b; | |
| } | |
| .hover\:bg-dark:hover { | |
| background-color: #5c5e62; | |
| } | |
| .focus\:bg-default:focus { | |
| background-color: #5c5e62; | |
| } | |
| .focus\:bg-transparent:focus { | |
| background-color: transparent; | |
| } | |
| .focus\:bg-white:focus { | |
| background-color: #fff; | |
| } | |
| .focus\:bg-grey-1:focus { | |
| background-color: #fafafa; | |
| } | |
| .focus\:bg-grey-2:focus { | |
| background-color: #efefef; | |
| } | |
| .focus\:bg-grey-3:focus { | |
| background-color: #e3e3e3; | |
| } | |
| .focus\:bg-grey-4:focus { | |
| background-color: #dcdcdc; | |
| } | |
| .focus\:bg-grey-5:focus { | |
| background-color: #cecece; | |
| } | |
| .focus\:bg-grey-6:focus { | |
| background-color: #adadad; | |
| } | |
| .focus\:bg-grey-7:focus { | |
| background-color: #9b9b9b; | |
| } | |
| .focus\:bg-grey-8:focus { | |
| background-color: #8e8e8e; | |
| } | |
| .focus\:bg-grey-9:focus { | |
| background-color: #5c5e62; | |
| } | |
| .focus\:bg-black:focus { | |
| background-color: #000; | |
| } | |
| .focus\:bg-air:focus { | |
| background-color: #f6fbfe; | |
| } | |
| .focus\:bg-polar:focus { | |
| background-color: #f3f9fd; | |
| } | |
| .focus\:bg-selago:focus { | |
| background-color: #e8f4fc; | |
| } | |
| .focus\:bg-sky:focus { | |
| background-color: #d5f0f7; | |
| } | |
| .focus\:bg-nativo:focus { | |
| background-color: #74cfe7; | |
| } | |
| .focus\:bg-teal:focus { | |
| background-color: #51b1cb; | |
| } | |
| .focus\:bg-rock-blue:focus { | |
| background-color: #a0c3d2; | |
| } | |
| .focus\:bg-blue-grey:focus { | |
| background-color: #88a6b6; | |
| } | |
| .focus\:bg-ocean:focus { | |
| background-color: #358297; | |
| } | |
| .focus\:bg-ecru:focus { | |
| background-color: #eeffca; | |
| } | |
| .focus\:bg-pale-olive:focus { | |
| background-color: #bcd48a; | |
| } | |
| .focus\:bg-celery:focus { | |
| background-color: #a5ba52; | |
| } | |
| .focus\:bg-seafoam:focus { | |
| background-color: #86cabd; | |
| } | |
| .focus\:bg-wheat:focus { | |
| background-color: #fabd79; | |
| } | |
| .focus\:bg-squash:focus { | |
| background-color: #f6a724; | |
| } | |
| .focus\:bg-light-salmon:focus { | |
| background-color: #ffa898; | |
| } | |
| .focus\:bg-blush:focus { | |
| background-color: #f37777; | |
| } | |
| .focus\:bg-dusk:focus { | |
| background-color: #565c81; | |
| } | |
| .focus\:bg-primary:focus { | |
| background-color: #74cfe7; | |
| } | |
| .focus\:bg-success:focus { | |
| background-color: #a5ba52; | |
| } | |
| .focus\:bg-warning:focus { | |
| background-color: #f6a724; | |
| } | |
| .focus\:bg-danger:focus { | |
| background-color: #f37777; | |
| } | |
| .focus\:bg-info:focus { | |
| background-color: #86cabd; | |
| } | |
| .focus\:bg-hover:focus { | |
| background-color: #e8f4fc; | |
| } | |
| .focus\:bg-light:focus { | |
| background-color: #cecece; | |
| } | |
| .focus\:bg-grey:focus { | |
| background-color: #9b9b9b; | |
| } | |
| .focus\:bg-dark:focus { | |
| background-color: #5c5e62; | |
| } | |
| .bg-bottom { | |
| background-position: bottom; | |
| } | |
| .bg-center { | |
| background-position: center; | |
| } | |
| .bg-left { | |
| background-position: left; | |
| } | |
| .bg-left-bottom { | |
| background-position: left bottom; | |
| } | |
| .bg-left-top { | |
| background-position: left top; | |
| } | |
| .bg-right { | |
| background-position: right; | |
| } | |
| .bg-right-bottom { | |
| background-position: right bottom; | |
| } | |
| .bg-right-top { | |
| background-position: right top; | |
| } | |
| .bg-top { | |
| background-position: top; | |
| } | |
| .bg-repeat { | |
| background-repeat: repeat; | |
| } | |
| .bg-no-repeat { | |
| background-repeat: no-repeat; | |
| } | |
| .bg-repeat-x { | |
| background-repeat: repeat-x; | |
| } | |
| .bg-repeat-y { | |
| background-repeat: repeat-y; | |
| } | |
| .bg-auto { | |
| background-size: auto; | |
| } | |
| .bg-cover { | |
| background-size: cover; | |
| } | |
| .bg-contain { | |
| background-size: contain; | |
| } | |
| .border-collapse { | |
| border-collapse: collapse; | |
| } | |
| .border-separate { | |
| border-collapse: separate; | |
| } | |
| .border-transparent { | |
| border-color: transparent; | |
| } | |
| .border-white { | |
| border-color: #fff; | |
| } | |
| .border-grey-1 { | |
| border-color: #fafafa; | |
| } | |
| .border-grey-2 { | |
| border-color: #efefef; | |
| } | |
| .border-grey-3 { | |
| border-color: #e3e3e3; | |
| } | |
| .border-grey-4 { | |
| border-color: #dcdcdc; | |
| } | |
| .border-grey-5 { | |
| border-color: #cecece; | |
| } | |
| .border-grey-6 { | |
| border-color: #adadad; | |
| } | |
| .border-grey-7 { | |
| border-color: #9b9b9b; | |
| } | |
| .border-grey-8 { | |
| border-color: #8e8e8e; | |
| } | |
| .border-grey-9 { | |
| border-color: #5c5e62; | |
| } | |
| .border-black { | |
| border-color: #000; | |
| } | |
| .border-air { | |
| border-color: #f6fbfe; | |
| } | |
| .border-polar { | |
| border-color: #f3f9fd; | |
| } | |
| .border-selago { | |
| border-color: #e8f4fc; | |
| } | |
| .border-sky { | |
| border-color: #d5f0f7; | |
| } | |
| .border-nativo { | |
| border-color: #74cfe7; | |
| } | |
| .border-teal { | |
| border-color: #51b1cb; | |
| } | |
| .border-rock-blue { | |
| border-color: #a0c3d2; | |
| } | |
| .border-blue-grey { | |
| border-color: #88a6b6; | |
| } | |
| .border-ocean { | |
| border-color: #358297; | |
| } | |
| .border-ecru { | |
| border-color: #eeffca; | |
| } | |
| .border-pale-olive { | |
| border-color: #bcd48a; | |
| } | |
| .border-celery { | |
| border-color: #a5ba52; | |
| } | |
| .border-seafoam { | |
| border-color: #86cabd; | |
| } | |
| .border-wheat { | |
| border-color: #fabd79; | |
| } | |
| .border-squash { | |
| border-color: #f6a724; | |
| } | |
| .border-light-salmon { | |
| border-color: #ffa898; | |
| } | |
| .border-blush { | |
| border-color: #f37777; | |
| } | |
| .border-dusk { | |
| border-color: #565c81; | |
| } | |
| .border-primary { | |
| border-color: #74cfe7; | |
| } | |
| .border-success { | |
| border-color: #a5ba52; | |
| } | |
| .border-warning { | |
| border-color: #f6a724; | |
| } | |
| .border-danger { | |
| border-color: #f37777; | |
| } | |
| .border-info { | |
| border-color: #86cabd; | |
| } | |
| .border-hover { | |
| border-color: #e8f4fc; | |
| } | |
| .border-light { | |
| border-color: #cecece; | |
| } | |
| .border-grey { | |
| border-color: #9b9b9b; | |
| } | |
| .border-dark { | |
| border-color: #5c5e62; | |
| } | |
| .hover\:border-transparent:hover { | |
| border-color: transparent; | |
| } | |
| .hover\:border-white:hover { | |
| border-color: #fff; | |
| } | |
| .hover\:border-grey-1:hover { | |
| border-color: #fafafa; | |
| } | |
| .hover\:border-grey-2:hover { | |
| border-color: #efefef; | |
| } | |
| .hover\:border-grey-3:hover { | |
| border-color: #e3e3e3; | |
| } | |
| .hover\:border-grey-4:hover { | |
| border-color: #dcdcdc; | |
| } | |
| .hover\:border-grey-5:hover { | |
| border-color: #cecece; | |
| } | |
| .hover\:border-grey-6:hover { | |
| border-color: #adadad; | |
| } | |
| .hover\:border-grey-7:hover { | |
| border-color: #9b9b9b; | |
| } | |
| .hover\:border-grey-8:hover { | |
| border-color: #8e8e8e; | |
| } | |
| .hover\:border-grey-9:hover { | |
| border-color: #5c5e62; | |
| } | |
| .hover\:border-black:hover { | |
| border-color: #000; | |
| } | |
| .hover\:border-air:hover { | |
| border-color: #f6fbfe; | |
| } | |
| .hover\:border-polar:hover { | |
| border-color: #f3f9fd; | |
| } | |
| .hover\:border-selago:hover { | |
| border-color: #e8f4fc; | |
| } | |
| .hover\:border-sky:hover { | |
| border-color: #d5f0f7; | |
| } | |
| .hover\:border-nativo:hover { | |
| border-color: #74cfe7; | |
| } | |
| .hover\:border-teal:hover { | |
| border-color: #51b1cb; | |
| } | |
| .hover\:border-rock-blue:hover { | |
| border-color: #a0c3d2; | |
| } | |
| .hover\:border-blue-grey:hover { | |
| border-color: #88a6b6; | |
| } | |
| .hover\:border-ocean:hover { | |
| border-color: #358297; | |
| } | |
| .hover\:border-ecru:hover { | |
| border-color: #eeffca; | |
| } | |
| .hover\:border-pale-olive:hover { | |
| border-color: #bcd48a; | |
| } | |
| .hover\:border-celery:hover { | |
| border-color: #a5ba52; | |
| } | |
| .hover\:border-seafoam:hover { | |
| border-color: #86cabd; | |
| } | |
| .hover\:border-wheat:hover { | |
| border-color: #fabd79; | |
| } | |
| .hover\:border-squash:hover { | |
| border-color: #f6a724; | |
| } | |
| .hover\:border-light-salmon:hover { | |
| border-color: #ffa898; | |
| } | |
| .hover\:border-blush:hover { | |
| border-color: #f37777; | |
| } | |
| .hover\:border-dusk:hover { | |
| border-color: #565c81; | |
| } | |
| .hover\:border-primary:hover { | |
| border-color: #74cfe7; | |
| } | |
| .hover\:border-success:hover { | |
| border-color: #a5ba52; | |
| } | |
| .hover\:border-warning:hover { | |
| border-color: #f6a724; | |
| } | |
| .hover\:border-danger:hover { | |
| border-color: #f37777; | |
| } | |
| .hover\:border-info:hover { | |
| border-color: #86cabd; | |
| } | |
| .hover\:border-hover:hover { | |
| border-color: #e8f4fc; | |
| } | |
| .hover\:border-light:hover { | |
| border-color: #cecece; | |
| } | |
| .hover\:border-grey:hover { | |
| border-color: #9b9b9b; | |
| } | |
| .hover\:border-dark:hover { | |
| border-color: #5c5e62; | |
| } | |
| .focus\:border-transparent:focus { | |
| border-color: transparent; | |
| } | |
| .focus\:border-white:focus { | |
| border-color: #fff; | |
| } | |
| .focus\:border-grey-1:focus { | |
| border-color: #fafafa; | |
| } | |
| .focus\:border-grey-2:focus { | |
| border-color: #efefef; | |
| } | |
| .focus\:border-grey-3:focus { | |
| border-color: #e3e3e3; | |
| } | |
| .focus\:border-grey-4:focus { | |
| border-color: #dcdcdc; | |
| } | |
| .focus\:border-grey-5:focus { | |
| border-color: #cecece; | |
| } | |
| .focus\:border-grey-6:focus { | |
| border-color: #adadad; | |
| } | |
| .focus\:border-grey-7:focus { | |
| border-color: #9b9b9b; | |
| } | |
| .focus\:border-grey-8:focus { | |
| border-color: #8e8e8e; | |
| } | |
| .focus\:border-grey-9:focus { | |
| border-color: #5c5e62; | |
| } | |
| .focus\:border-black:focus { | |
| border-color: #000; | |
| } | |
| .focus\:border-air:focus { | |
| border-color: #f6fbfe; | |
| } | |
| .focus\:border-polar:focus { | |
| border-color: #f3f9fd; | |
| } | |
| .focus\:border-selago:focus { | |
| border-color: #e8f4fc; | |
| } | |
| .focus\:border-sky:focus { | |
| border-color: #d5f0f7; | |
| } | |
| .focus\:border-nativo:focus { | |
| border-color: #74cfe7; | |
| } | |
| .focus\:border-teal:focus { | |
| border-color: #51b1cb; | |
| } | |
| .focus\:border-rock-blue:focus { | |
| border-color: #a0c3d2; | |
| } | |
| .focus\:border-blue-grey:focus { | |
| border-color: #88a6b6; | |
| } | |
| .focus\:border-ocean:focus { | |
| border-color: #358297; | |
| } | |
| .focus\:border-ecru:focus { | |
| border-color: #eeffca; | |
| } | |
| .focus\:border-pale-olive:focus { | |
| border-color: #bcd48a; | |
| } | |
| .focus\:border-celery:focus { | |
| border-color: #a5ba52; | |
| } | |
| .focus\:border-seafoam:focus { | |
| border-color: #86cabd; | |
| } | |
| .focus\:border-wheat:focus { | |
| border-color: #fabd79; | |
| } | |
| .focus\:border-squash:focus { | |
| border-color: #f6a724; | |
| } | |
| .focus\:border-light-salmon:focus { | |
| border-color: #ffa898; | |
| } | |
| .focus\:border-blush:focus { | |
| border-color: #f37777; | |
| } | |
| .focus\:border-dusk:focus { | |
| border-color: #565c81; | |
| } | |
| .focus\:border-primary:focus { | |
| border-color: #74cfe7; | |
| } | |
| .focus\:border-success:focus { | |
| border-color: #a5ba52; | |
| } | |
| .focus\:border-warning:focus { | |
| border-color: #f6a724; | |
| } | |
| .focus\:border-danger:focus { | |
| border-color: #f37777; | |
| } | |
| .focus\:border-info:focus { | |
| border-color: #86cabd; | |
| } | |
| .focus\:border-hover:focus { | |
| border-color: #e8f4fc; | |
| } | |
| .focus\:border-light:focus { | |
| border-color: #cecece; | |
| } | |
| .focus\:border-grey:focus { | |
| border-color: #9b9b9b; | |
| } | |
| .focus\:border-dark:focus { | |
| border-color: #5c5e62; | |
| } | |
| .rounded-none { | |
| border-radius: 0px; | |
| } | |
| .rounded-sm { | |
| border-radius: 2px; | |
| } | |
| .rounded { | |
| border-radius: 3px; | |
| } | |
| .rounded-md { | |
| border-radius: 4px; | |
| } | |
| .rounded-lg { | |
| border-radius: 5px; | |
| } | |
| .rounded-xl { | |
| border-radius: 7px; | |
| } | |
| .rounded-2xl { | |
| border-radius: 10px; | |
| } | |
| .rounded-full { | |
| border-radius: 9999px; | |
| } | |
| .rounded-t-none { | |
| border-top-left-radius: 0px; | |
| border-top-right-radius: 0px; | |
| } | |
| .rounded-r-none { | |
| border-top-right-radius: 0px; | |
| border-bottom-right-radius: 0px; | |
| } | |
| .rounded-b-none { | |
| border-bottom-right-radius: 0px; | |
| border-bottom-left-radius: 0px; | |
| } | |
| .rounded-l-none { | |
| border-top-left-radius: 0px; | |
| border-bottom-left-radius: 0px; | |
| } | |
| .rounded-t-sm { | |
| border-top-left-radius: 2px; | |
| border-top-right-radius: 2px; | |
| } | |
| .rounded-r-sm { | |
| border-top-right-radius: 2px; | |
| border-bottom-right-radius: 2px; | |
| } | |
| .rounded-b-sm { | |
| border-bottom-right-radius: 2px; | |
| border-bottom-left-radius: 2px; | |
| } | |
| .rounded-l-sm { | |
| border-top-left-radius: 2px; | |
| border-bottom-left-radius: 2px; | |
| } | |
| .rounded-t { | |
| border-top-left-radius: 3px; | |
| border-top-right-radius: 3px; | |
| } | |
| .rounded-r { | |
| border-top-right-radius: 3px; | |
| border-bottom-right-radius: 3px; | |
| } | |
| .rounded-b { | |
| border-bottom-right-radius: 3px; | |
| border-bottom-left-radius: 3px; | |
| } | |
| .rounded-l { | |
| border-top-left-radius: 3px; | |
| border-bottom-left-radius: 3px; | |
| } | |
| .rounded-t-md { | |
| border-top-left-radius: 4px; | |
| border-top-right-radius: 4px; | |
| } | |
| .rounded-r-md { | |
| border-top-right-radius: 4px; | |
| border-bottom-right-radius: 4px; | |
| } | |
| .rounded-b-md { | |
| border-bottom-right-radius: 4px; | |
| border-bottom-left-radius: 4px; | |
| } | |
| .rounded-l-md { | |
| border-top-left-radius: 4px; | |
| border-bottom-left-radius: 4px; | |
| } | |
| .rounded-t-lg { | |
| border-top-left-radius: 5px; | |
| border-top-right-radius: 5px; | |
| } | |
| .rounded-r-lg { | |
| border-top-right-radius: 5px; | |
| border-bottom-right-radius: 5px; | |
| } | |
| .rounded-b-lg { | |
| border-bottom-right-radius: 5px; | |
| border-bottom-left-radius: 5px; | |
| } | |
| .rounded-l-lg { | |
| border-top-left-radius: 5px; | |
| border-bottom-left-radius: 5px; | |
| } | |
| .rounded-t-xl { | |
| border-top-left-radius: 7px; | |
| border-top-right-radius: 7px; | |
| } | |
| .rounded-r-xl { | |
| border-top-right-radius: 7px; | |
| border-bottom-right-radius: 7px; | |
| } | |
| .rounded-b-xl { | |
| border-bottom-right-radius: 7px; | |
| border-bottom-left-radius: 7px; | |
| } | |
| .rounded-l-xl { | |
| border-top-left-radius: 7px; | |
| border-bottom-left-radius: 7px; | |
| } | |
| .rounded-t-2xl { | |
| border-top-left-radius: 10px; | |
| border-top-right-radius: 10px; | |
| } | |
| .rounded-r-2xl { | |
| border-top-right-radius: 10px; | |
| border-bottom-right-radius: 10px; | |
| } | |
| .rounded-b-2xl { | |
| border-bottom-right-radius: 10px; | |
| border-bottom-left-radius: 10px; | |
| } | |
| .rounded-l-2xl { | |
| border-top-left-radius: 10px; | |
| border-bottom-left-radius: 10px; | |
| } | |
| .rounded-t-full { | |
| border-top-left-radius: 9999px; | |
| border-top-right-radius: 9999px; | |
| } | |
| .rounded-r-full { | |
| border-top-right-radius: 9999px; | |
| border-bottom-right-radius: 9999px; | |
| } | |
| .rounded-b-full { | |
| border-bottom-right-radius: 9999px; | |
| border-bottom-left-radius: 9999px; | |
| } | |
| .rounded-l-full { | |
| border-top-left-radius: 9999px; | |
| border-bottom-left-radius: 9999px; | |
| } | |
| .rounded-tl-none { | |
| border-top-left-radius: 0px; | |
| } | |
| .rounded-tr-none { | |
| border-top-right-radius: 0px; | |
| } | |
| .rounded-br-none { | |
| border-bottom-right-radius: 0px; | |
| } | |
| .rounded-bl-none { | |
| border-bottom-left-radius: 0px; | |
| } | |
| .rounded-tl-sm { | |
| border-top-left-radius: 2px; | |
| } | |
| .rounded-tr-sm { | |
| border-top-right-radius: 2px; | |
| } | |
| .rounded-br-sm { | |
| border-bottom-right-radius: 2px; | |
| } | |
| .rounded-bl-sm { | |
| border-bottom-left-radius: 2px; | |
| } | |
| .rounded-tl { | |
| border-top-left-radius: 3px; | |
| } | |
| .rounded-tr { | |
| border-top-right-radius: 3px; | |
| } | |
| .rounded-br { | |
| border-bottom-right-radius: 3px; | |
| } | |
| .rounded-bl { | |
| border-bottom-left-radius: 3px; | |
| } | |
| .rounded-tl-md { | |
| border-top-left-radius: 4px; | |
| } | |
| .rounded-tr-md { | |
| border-top-right-radius: 4px; | |
| } | |
| .rounded-br-md { | |
| border-bottom-right-radius: 4px; | |
| } | |
| .rounded-bl-md { | |
| border-bottom-left-radius: 4px; | |
| } | |
| .rounded-tl-lg { | |
| border-top-left-radius: 5px; | |
| } | |
| .rounded-tr-lg { | |
| border-top-right-radius: 5px; | |
| } | |
| .rounded-br-lg { | |
| border-bottom-right-radius: 5px; | |
| } | |
| .rounded-bl-lg { | |
| border-bottom-left-radius: 5px; | |
| } | |
| .rounded-tl-xl { | |
| border-top-left-radius: 7px; | |
| } | |
| .rounded-tr-xl { | |
| border-top-right-radius: 7px; | |
| } | |
| .rounded-br-xl { | |
| border-bottom-right-radius: 7px; | |
| } | |
| .rounded-bl-xl { | |
| border-bottom-left-radius: 7px; | |
| } | |
| .rounded-tl-2xl { | |
| border-top-left-radius: 10px; | |
| } | |
| .rounded-tr-2xl { | |
| border-top-right-radius: 10px; | |
| } | |
| .rounded-br-2xl { | |
| border-bottom-right-radius: 10px; | |
| } | |
| .rounded-bl-2xl { | |
| border-bottom-left-radius: 10px; | |
| } | |
| .rounded-tl-full { | |
| border-top-left-radius: 9999px; | |
| } | |
| .rounded-tr-full { | |
| border-top-right-radius: 9999px; | |
| } | |
| .rounded-br-full { | |
| border-bottom-right-radius: 9999px; | |
| } | |
| .rounded-bl-full { | |
| border-bottom-left-radius: 9999px; | |
| } | |
| .border-solid { | |
| border-style: solid; | |
| } | |
| .border-dashed { | |
| border-style: dashed; | |
| } | |
| .border-dotted { | |
| border-style: dotted; | |
| } | |
| .border-none { | |
| border-style: none; | |
| } | |
| .border-0 { | |
| border-width: 0; | |
| } | |
| .border-2 { | |
| border-width: 2px; | |
| } | |
| .border-3 { | |
| border-width: 3px; | |
| } | |
| .border-4 { | |
| border-width: 4px; | |
| } | |
| .border-5 { | |
| border-width: 5px; | |
| } | |
| .border-8 { | |
| border-width: 8px; | |
| } | |
| .border { | |
| border-width: 1px; | |
| } | |
| .border-t-0 { | |
| border-top-width: 0; | |
| } | |
| .border-r-0 { | |
| border-right-width: 0; | |
| } | |
| .border-b-0 { | |
| border-bottom-width: 0; | |
| } | |
| .border-l-0 { | |
| border-left-width: 0; | |
| } | |
| .border-t-2 { | |
| border-top-width: 2px; | |
| } | |
| .border-r-2 { | |
| border-right-width: 2px; | |
| } | |
| .border-b-2 { | |
| border-bottom-width: 2px; | |
| } | |
| .border-l-2 { | |
| border-left-width: 2px; | |
| } | |
| .border-t-3 { | |
| border-top-width: 3px; | |
| } | |
| .border-r-3 { | |
| border-right-width: 3px; | |
| } | |
| .border-b-3 { | |
| border-bottom-width: 3px; | |
| } | |
| .border-l-3 { | |
| border-left-width: 3px; | |
| } | |
| .border-t-4 { | |
| border-top-width: 4px; | |
| } | |
| .border-r-4 { | |
| border-right-width: 4px; | |
| } | |
| .border-b-4 { | |
| border-bottom-width: 4px; | |
| } | |
| .border-l-4 { | |
| border-left-width: 4px; | |
| } | |
| .border-t-5 { | |
| border-top-width: 5px; | |
| } | |
| .border-r-5 { | |
| border-right-width: 5px; | |
| } | |
| .border-b-5 { | |
| border-bottom-width: 5px; | |
| } | |
| .border-l-5 { | |
| border-left-width: 5px; | |
| } | |
| .border-t-8 { | |
| border-top-width: 8px; | |
| } | |
| .border-r-8 { | |
| border-right-width: 8px; | |
| } | |
| .border-b-8 { | |
| border-bottom-width: 8px; | |
| } | |
| .border-l-8 { | |
| border-left-width: 8px; | |
| } | |
| .border-t { | |
| border-top-width: 1px; | |
| } | |
| .border-r { | |
| border-right-width: 1px; | |
| } | |
| .border-b { | |
| border-bottom-width: 1px; | |
| } | |
| .border-l { | |
| border-left-width: 1px; | |
| } | |
| .cursor-auto { | |
| cursor: auto; | |
| } | |
| .cursor-default { | |
| cursor: default; | |
| } | |
| .cursor-pointer { | |
| cursor: pointer; | |
| } | |
| .cursor-wait { | |
| cursor: wait; | |
| } | |
| .cursor-move { | |
| cursor: move; | |
| } | |
| .cursor-not-allowed { | |
| cursor: not-allowed; | |
| } | |
| .block { | |
| display: block; | |
| } | |
| .inline-block { | |
| display: inline-block; | |
| } | |
| .inline { | |
| display: inline; | |
| } | |
| .table { | |
| display: table; | |
| } | |
| .table-row { | |
| display: table-row; | |
| } | |
| .table-cell { | |
| display: table-cell; | |
| } | |
| .hidden { | |
| display: none; | |
| } | |
| .flex { | |
| display: -webkit-box; | |
| display: -ms-flexbox; | |
| display: flex; | |
| } | |
| .inline-flex { | |
| display: -webkit-inline-box; | |
| display: -ms-inline-flexbox; | |
| display: inline-flex; | |
| } | |
| .flex-row { | |
| -webkit-box-orient: horizontal; | |
| -webkit-box-direction: normal; | |
| -ms-flex-direction: row; | |
| flex-direction: row; | |
| } | |
| .flex-row-reverse { | |
| -webkit-box-orient: horizontal; | |
| -webkit-box-direction: reverse; | |
| -ms-flex-direction: row-reverse; | |
| flex-direction: row-reverse; | |
| } | |
| .flex-col { | |
| -webkit-box-orient: vertical; | |
| -webkit-box-direction: normal; | |
| -ms-flex-direction: column; | |
| flex-direction: column; | |
| } | |
| .flex-col-reverse { | |
| -webkit-box-orient: vertical; | |
| -webkit-box-direction: reverse; | |
| -ms-flex-direction: column-reverse; | |
| flex-direction: column-reverse; | |
| } | |
| .flex-wrap { | |
| -ms-flex-wrap: wrap; | |
| flex-wrap: wrap; | |
| } | |
| .flex-wrap-reverse { | |
| -ms-flex-wrap: wrap-reverse; | |
| flex-wrap: wrap-reverse; | |
| } | |
| .flex-no-wrap { | |
| -ms-flex-wrap: nowrap; | |
| flex-wrap: nowrap; | |
| } | |
| .items-start { | |
| -webkit-box-align: start; | |
| -ms-flex-align: start; | |
| align-items: flex-start; | |
| } | |
| .items-end { | |
| -webkit-box-align: end; | |
| -ms-flex-align: end; | |
| align-items: flex-end; | |
| } | |
| .items-center { | |
| -webkit-box-align: center; | |
| -ms-flex-align: center; | |
| align-items: center; | |
| } | |
| .items-baseline { | |
| -webkit-box-align: baseline; | |
| -ms-flex-align: baseline; | |
| align-items: baseline; | |
| } | |
| .items-stretch { | |
| -webkit-box-align: stretch; | |
| -ms-flex-align: stretch; | |
| align-items: stretch; | |
| } | |
| .self-auto { | |
| -ms-flex-item-align: auto; | |
| align-self: auto; | |
| } | |
| .self-start { | |
| -ms-flex-item-align: start; | |
| align-self: flex-start; | |
| } | |
| .self-end { | |
| -ms-flex-item-align: end; | |
| align-self: flex-end; | |
| } | |
| .self-center { | |
| -ms-flex-item-align: center; | |
| align-self: center; | |
| } | |
| .self-stretch { | |
| -ms-flex-item-align: stretch; | |
| align-self: stretch; | |
| } | |
| .justify-start { | |
| -webkit-box-pack: start; | |
| -ms-flex-pack: start; | |
| justify-content: flex-start; | |
| } | |
| .justify-end { | |
| -webkit-box-pack: end; | |
| -ms-flex-pack: end; | |
| justify-content: flex-end; | |
| } | |
| .justify-center { | |
| -webkit-box-pack: center; | |
| -ms-flex-pack: center; | |
| justify-content: center; | |
| } | |
| .justify-between { | |
| -webkit-box-pack: justify; | |
| -ms-flex-pack: justify; | |
| justify-content: space-between; | |
| } | |
| .justify-around { | |
| -ms-flex-pack: distribute; | |
| justify-content: space-around; | |
| } | |
| .content-center { | |
| -ms-flex-line-pack: center; | |
| align-content: center; | |
| } | |
| .content-start { | |
| -ms-flex-line-pack: start; | |
| align-content: flex-start; | |
| } | |
| .content-end { | |
| -ms-flex-line-pack: end; | |
| align-content: flex-end; | |
| } | |
| .content-between { | |
| -ms-flex-line-pack: justify; | |
| align-content: space-between; | |
| } | |
| .content-around { | |
| -ms-flex-line-pack: distribute; | |
| align-content: space-around; | |
| } | |
| .flex-1 { | |
| -webkit-box-flex: 1; | |
| -ms-flex: 1; | |
| flex: 1; | |
| } | |
| .flex-auto { | |
| -webkit-box-flex: 1; | |
| -ms-flex: auto; | |
| flex: auto; | |
| } | |
| .flex-initial { | |
| -webkit-box-flex: initial; | |
| -ms-flex: initial; | |
| flex: initial; | |
| } | |
| .flex-none { | |
| -webkit-box-flex: 0; | |
| -ms-flex: none; | |
| flex: none; | |
| } | |
| .flex-grow { | |
| -webkit-box-flex: 1; | |
| -ms-flex-positive: 1; | |
| flex-grow: 1; | |
| } | |
| .flex-shrink { | |
| -ms-flex-negative: 1; | |
| flex-shrink: 1; | |
| } | |
| .flex-no-grow { | |
| -webkit-box-flex: 0; | |
| -ms-flex-positive: 0; | |
| flex-grow: 0; | |
| } | |
| .flex-no-shrink { | |
| -ms-flex-negative: 0; | |
| flex-shrink: 0; | |
| } | |
| .float-right { | |
| float: right; | |
| } | |
| .float-left { | |
| float: left; | |
| } | |
| .float-none { | |
| float: none; | |
| } | |
| .clearfix:after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } | |
| .font-sans { | |
| font-family: Helvetica Neue, Helvetica, Segoe UI, Arial, freesans, sans-serif; | |
| } | |
| .font-serif { | |
| font-family: Constantia, Lucida, Georgia, serif; | |
| } | |
| .font-mono { | |
| font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; | |
| } | |
| .font-hairline { | |
| font-weight: 100; | |
| } | |
| .font-thin { | |
| font-weight: 300; | |
| } | |
| .font-normal { | |
| font-weight: 400; | |
| } | |
| .font-medium { | |
| font-weight: 500; | |
| } | |
| .font-semibold { | |
| font-weight: 600; | |
| } | |
| .font-bold { | |
| font-weight: 700; | |
| } | |
| .hover\:font-hairline:hover { | |
| font-weight: 100; | |
| } | |
| .hover\:font-thin:hover { | |
| font-weight: 300; | |
| } | |
| .hover\:font-normal:hover { | |
| font-weight: 400; | |
| } | |
| .hover\:font-medium:hover { | |
| font-weight: 500; | |
| } | |
| .hover\:font-semibold:hover { | |
| font-weight: 600; | |
| } | |
| .hover\:font-bold:hover { | |
| font-weight: 700; | |
| } | |
| .focus\:font-hairline:focus { | |
| font-weight: 100; | |
| } | |
| .focus\:font-thin:focus { | |
| font-weight: 300; | |
| } | |
| .focus\:font-normal:focus { | |
| font-weight: 400; | |
| } | |
| .focus\:font-medium:focus { | |
| font-weight: 500; | |
| } | |
| .focus\:font-semibold:focus { | |
| font-weight: 600; | |
| } | |
| .focus\:font-bold:focus { | |
| font-weight: 700; | |
| } | |
| .h-auto { | |
| height: auto; | |
| } | |
| .h-px { | |
| height: 1px; | |
| } | |
| .h-xs { | |
| height: 10px; | |
| } | |
| .h-sm { | |
| height: 15px; | |
| } | |
| .h-md { | |
| height: 20px; | |
| } | |
| .h-lg { | |
| height: 25px; | |
| } | |
| .h-xl { | |
| height: 30px; | |
| } | |
| .h-2xl { | |
| height: 35px; | |
| } | |
| .h-3xl { | |
| height: 40px; | |
| } | |
| .h-4xl { | |
| height: 50px; | |
| } | |
| .h-5xl { | |
| height: 75px; | |
| } | |
| .h-6xl { | |
| height: 100px; | |
| } | |
| .h-full { | |
| height: 100%; | |
| } | |
| .h-screen { | |
| height: 100vh; | |
| } | |
| .leading-default { | |
| line-height: 1.15; | |
| } | |
| .leading-none { | |
| line-height: 1; | |
| } | |
| .leading-tight { | |
| line-height: 1.25; | |
| } | |
| .leading-normal { | |
| line-height: 1.5; | |
| } | |
| .leading-loose { | |
| line-height: 2; | |
| } | |
| .m-0 { | |
| margin: 0; | |
| } | |
| .m-px { | |
| margin: 1px; | |
| } | |
| .m-xs { | |
| margin: 2px; | |
| } | |
| .m-sm { | |
| margin: 3px; | |
| } | |
| .m-md { | |
| margin: 5px; | |
| } | |
| .m-lg { | |
| margin: 10px; | |
| } | |
| .m-xl { | |
| margin: 15px; | |
| } | |
| .m-2xl { | |
| margin: 20px; | |
| } | |
| .m-3xl { | |
| margin: 25px; | |
| } | |
| .m-4xl { | |
| margin: 30px; | |
| } | |
| .m-5xl { | |
| margin: 35px; | |
| } | |
| .m-6xl { | |
| margin: 40px; | |
| } | |
| .m-7xl { | |
| margin: 50px; | |
| } | |
| .my-0 { | |
| margin-top: 0; | |
| margin-bottom: 0; | |
| } | |
| .mx-0 { | |
| margin-left: 0; | |
| margin-right: 0; | |
| } | |
| .my-px { | |
| margin-top: 1px; | |
| margin-bottom: 1px; | |
| } | |
| .mx-px { | |
| margin-left: 1px; | |
| margin-right: 1px; | |
| } | |
| .my-xs { | |
| margin-top: 2px; | |
| margin-bottom: 2px; | |
| } | |
| .mx-xs { | |
| margin-left: 2px; | |
| margin-right: 2px; | |
| } | |
| .my-sm { | |
| margin-top: 3px; | |
| margin-bottom: 3px; | |
| } | |
| .mx-sm { | |
| margin-left: 3px; | |
| margin-right: 3px; | |
| } | |
| .my-md { | |
| margin-top: 5px; | |
| margin-bottom: 5px; | |
| } | |
| .mx-md { | |
| margin-left: 5px; | |
| margin-right: 5px; | |
| } | |
| .my-lg { | |
| margin-top: 10px; | |
| margin-bottom: 10px; | |
| } | |
| .mx-lg { | |
| margin-left: 10px; | |
| margin-right: 10px; | |
| } | |
| .my-xl { | |
| margin-top: 15px; | |
| margin-bottom: 15px; | |
| } | |
| .mx-xl { | |
| margin-left: 15px; | |
| margin-right: 15px; | |
| } | |
| .my-2xl { | |
| margin-top: 20px; | |
| margin-bottom: 20px; | |
| } | |
| .mx-2xl { | |
| margin-left: 20px; | |
| margin-right: 20px; | |
| } | |
| .my-3xl { | |
| margin-top: 25px; | |
| margin-bottom: 25px; | |
| } | |
| .mx-3xl { | |
| margin-left: 25px; | |
| margin-right: 25px; | |
| } | |
| .my-4xl { | |
| margin-top: 30px; | |
| margin-bottom: 30px; | |
| } | |
| .mx-4xl { | |
| margin-left: 30px; | |
| margin-right: 30px; | |
| } | |
| .my-5xl { | |
| margin-top: 35px; | |
| margin-bottom: 35px; | |
| } | |
| .mx-5xl { | |
| margin-left: 35px; | |
| margin-right: 35px; | |
| } | |
| .my-6xl { | |
| margin-top: 40px; | |
| margin-bottom: 40px; | |
| } | |
| .mx-6xl { | |
| margin-left: 40px; | |
| margin-right: 40px; | |
| } | |
| .my-7xl { | |
| margin-top: 50px; | |
| margin-bottom: 50px; | |
| } | |
| .mx-7xl { | |
| margin-left: 50px; | |
| margin-right: 50px; | |
| } | |
| .mt-0 { | |
| margin-top: 0; | |
| } | |
| .mr-0 { | |
| margin-right: 0; | |
| } | |
| .mb-0 { | |
| margin-bottom: 0; | |
| } | |
| .ml-0 { | |
| margin-left: 0; | |
| } | |
| .mt-px { | |
| margin-top: 1px; | |
| } | |
| .mr-px { | |
| margin-right: 1px; | |
| } | |
| .mb-px { | |
| margin-bottom: 1px; | |
| } | |
| .ml-px { | |
| margin-left: 1px; | |
| } | |
| .mt-xs { | |
| margin-top: 2px; | |
| } | |
| .mr-xs { | |
| margin-right: 2px; | |
| } | |
| .mb-xs { | |
| margin-bottom: 2px; | |
| } | |
| .ml-xs { | |
| margin-left: 2px; | |
| } | |
| .mt-sm { | |
| margin-top: 3px; | |
| } | |
| .mr-sm { | |
| margin-right: 3px; | |
| } | |
| .mb-sm { | |
| margin-bottom: 3px; | |
| } | |
| .ml-sm { | |
| margin-left: 3px; | |
| } | |
| .mt-md { | |
| margin-top: 5px; | |
| } | |
| .mr-md { | |
| margin-right: 5px; | |
| } | |
| .mb-md { | |
| margin-bottom: 5px; | |
| } | |
| .ml-md { | |
| margin-left: 5px; | |
| } | |
| .mt-lg { | |
| margin-top: 10px; | |
| } | |
| .mr-lg { | |
| margin-right: 10px; | |
| } | |
| .mb-lg { | |
| margin-bottom: 10px; | |
| } | |
| .ml-lg { | |
| margin-left: 10px; | |
| } | |
| .mt-xl { | |
| margin-top: 15px; | |
| } | |
| .mr-xl { | |
| margin-right: 15px; | |
| } | |
| .mb-xl { | |
| margin-bottom: 15px; | |
| } | |
| .ml-xl { | |
| margin-left: 15px; | |
| } | |
| .mt-2xl { | |
| margin-top: 20px; | |
| } | |
| .mr-2xl { | |
| margin-right: 20px; | |
| } | |
| .mb-2xl { | |
| margin-bottom: 20px; | |
| } | |
| .ml-2xl { | |
| margin-left: 20px; | |
| } | |
| .mt-3xl { | |
| margin-top: 25px; | |
| } | |
| .mr-3xl { | |
| margin-right: 25px; | |
| } | |
| .mb-3xl { | |
| margin-bottom: 25px; | |
| } | |
| .ml-3xl { | |
| margin-left: 25px; | |
| } | |
| .mt-4xl { | |
| margin-top: 30px; | |
| } | |
| .mr-4xl { | |
| margin-right: 30px; | |
| } | |
| .mb-4xl { | |
| margin-bottom: 30px; | |
| } | |
| .ml-4xl { | |
| margin-left: 30px; | |
| } | |
| .mt-5xl { | |
| margin-top: 35px; | |
| } | |
| .mr-5xl { | |
| margin-right: 35px; | |
| } | |
| .mb-5xl { | |
| margin-bottom: 35px; | |
| } | |
| .ml-5xl { | |
| margin-left: 35px; | |
| } | |
| .mt-6xl { | |
| margin-top: 40px; | |
| } | |
| .mr-6xl { | |
| margin-right: 40px; | |
| } | |
| .mb-6xl { | |
| margin-bottom: 40px; | |
| } | |
| .ml-6xl { | |
| margin-left: 40px; | |
| } | |
| .mt-7xl { | |
| margin-top: 50px; | |
| } | |
| .mr-7xl { | |
| margin-right: 50px; | |
| } | |
| .mb-7xl { | |
| margin-bottom: 50px; | |
| } | |
| .ml-7xl { | |
| margin-left: 50px; | |
| } | |
| .max-h-full { | |
| max-height: 100%; | |
| } | |
| .max-h-screen { | |
| max-height: 100vh; | |
| } | |
| .max-w-xs { | |
| max-width: 20rem; | |
| } | |
| .max-w-sm { | |
| max-width: 30rem; | |
| } | |
| .max-w-md { | |
| max-width: 40rem; | |
| } | |
| .max-w-lg { | |
| max-width: 50rem; | |
| } | |
| .max-w-xl { | |
| max-width: 60rem; | |
| } | |
| .max-w-2xl { | |
| max-width: 70rem; | |
| } | |
| .max-w-3xl { | |
| max-width: 80rem; | |
| } | |
| .max-w-4xl { | |
| max-width: 90rem; | |
| } | |
| .max-w-5xl { | |
| max-width: 100rem; | |
| } | |
| .max-w-full { | |
| max-width: 100%; | |
| } | |
| .min-h-0 { | |
| min-height: 0; | |
| } | |
| .min-h-full { | |
| min-height: 100%; | |
| } | |
| .min-h-screen { | |
| min-height: 100vh; | |
| } | |
| .min-w-0 { | |
| min-width: 0; | |
| } | |
| .min-w-full { | |
| min-width: 100%; | |
| } | |
| .-m-px { | |
| margin: -1px; | |
| } | |
| .-m-xs { | |
| margin: -2px; | |
| } | |
| .-m-sm { | |
| margin: -3px; | |
| } | |
| .-m-md { | |
| margin: -5px; | |
| } | |
| .-m-lg { | |
| margin: -10px; | |
| } | |
| .-m-xl { | |
| margin: -15px; | |
| } | |
| .-m-2xl { | |
| margin: -20px; | |
| } | |
| .-m-3xl { | |
| margin: -25px; | |
| } | |
| .-m-4xl { | |
| margin: -30px; | |
| } | |
| .-m-5xl { | |
| margin: -35px; | |
| } | |
| .-m-6xl { | |
| margin: -40px; | |
| } | |
| .-m-7xl { | |
| margin: -50px; | |
| } | |
| .-my-px { | |
| margin-top: -1px; | |
| margin-bottom: -1px; | |
| } | |
| .-mx-px { | |
| margin-left: -1px; | |
| margin-right: -1px; | |
| } | |
| .-my-xs { | |
| margin-top: -2px; | |
| margin-bottom: -2px; | |
| } | |
| .-mx-xs { | |
| margin-left: -2px; | |
| margin-right: -2px; | |
| } | |
| .-my-sm { | |
| margin-top: -3px; | |
| margin-bottom: -3px; | |
| } | |
| .-mx-sm { | |
| margin-left: -3px; | |
| margin-right: -3px; | |
| } | |
| .-my-md { | |
| margin-top: -5px; | |
| margin-bottom: -5px; | |
| } | |
| .-mx-md { | |
| margin-left: -5px; | |
| margin-right: -5px; | |
| } | |
| .-my-lg { | |
| margin-top: -10px; | |
| margin-bottom: -10px; | |
| } | |
| .-mx-lg { | |
| margin-left: -10px; | |
| margin-right: -10px; | |
| } | |
| .-my-xl { | |
| margin-top: -15px; | |
| margin-bottom: -15px; | |
| } | |
| .-mx-xl { | |
| margin-left: -15px; | |
| margin-right: -15px; | |
| } | |
| .-my-2xl { | |
| margin-top: -20px; | |
| margin-bottom: -20px; | |
| } | |
| .-mx-2xl { | |
| margin-left: -20px; | |
| margin-right: -20px; | |
| } | |
| .-my-3xl { | |
| margin-top: -25px; | |
| margin-bottom: -25px; | |
| } | |
| .-mx-3xl { | |
| margin-left: -25px; | |
| margin-right: -25px; | |
| } | |
| .-my-4xl { | |
| margin-top: -30px; | |
| margin-bottom: -30px; | |
| } | |
| .-mx-4xl { | |
| margin-left: -30px; | |
| margin-right: -30px; | |
| } | |
| .-my-5xl { | |
| margin-top: -35px; | |
| margin-bottom: -35px; | |
| } | |
| .-mx-5xl { | |
| margin-left: -35px; | |
| margin-right: -35px; | |
| } | |
| .-my-6xl { | |
| margin-top: -40px; | |
| margin-bottom: -40px; | |
| } | |
| .-mx-6xl { | |
| margin-left: -40px; | |
| margin-right: -40px; | |
| } | |
| .-my-7xl { | |
| margin-top: -50px; | |
| margin-bottom: -50px; | |
| } | |
| .-mx-7xl { | |
| margin-left: -50px; | |
| margin-right: -50px; | |
| } | |
| .-mt-px { | |
| margin-top: -1px; | |
| } | |
| .-mr-px { | |
| margin-right: -1px; | |
| } | |
| .-mb-px { | |
| margin-bottom: -1px; | |
| } | |
| .-ml-px { | |
| margin-left: -1px; | |
| } | |
| .-mt-xs { | |
| margin-top: -2px; | |
| } | |
| .-mr-xs { | |
| margin-right: -2px; | |
| } | |
| .-mb-xs { | |
| margin-bottom: -2px; | |
| } | |
| .-ml-xs { | |
| margin-left: -2px; | |
| } | |
| .-mt-sm { | |
| margin-top: -3px; | |
| } | |
| .-mr-sm { | |
| margin-right: -3px; | |
| } | |
| .-mb-sm { | |
| margin-bottom: -3px; | |
| } | |
| .-ml-sm { | |
| margin-left: -3px; | |
| } | |
| .-mt-md { | |
| margin-top: -5px; | |
| } | |
| .-mr-md { | |
| margin-right: -5px; | |
| } | |
| .-mb-md { | |
| margin-bottom: -5px; | |
| } | |
| .-ml-md { | |
| margin-left: -5px; | |
| } | |
| .-mt-lg { | |
| margin-top: -10px; | |
| } | |
| .-mr-lg { | |
| margin-right: -10px; | |
| } | |
| .-mb-lg { | |
| margin-bottom: -10px; | |
| } | |
| .-ml-lg { | |
| margin-left: -10px; | |
| } | |
| .-mt-xl { | |
| margin-top: -15px; | |
| } | |
| .-mr-xl { | |
| margin-right: -15px; | |
| } | |
| .-mb-xl { | |
| margin-bottom: -15px; | |
| } | |
| .-ml-xl { | |
| margin-left: -15px; | |
| } | |
| .-mt-2xl { | |
| margin-top: -20px; | |
| } | |
| .-mr-2xl { | |
| margin-right: -20px; | |
| } | |
| .-mb-2xl { | |
| margin-bottom: -20px; | |
| } | |
| .-ml-2xl { | |
| margin-left: -20px; | |
| } | |
| .-mt-3xl { | |
| margin-top: -25px; | |
| } | |
| .-mr-3xl { | |
| margin-right: -25px; | |
| } | |
| .-mb-3xl { | |
| margin-bottom: -25px; | |
| } | |
| .-ml-3xl { | |
| margin-left: -25px; | |
| } | |
| .-mt-4xl { | |
| margin-top: -30px; | |
| } | |
| .-mr-4xl { | |
| margin-right: -30px; | |
| } | |
| .-mb-4xl { | |
| margin-bottom: -30px; | |
| } | |
| .-ml-4xl { | |
| margin-left: -30px; | |
| } | |
| .-mt-5xl { | |
| margin-top: -35px; | |
| } | |
| .-mr-5xl { | |
| margin-right: -35px; | |
| } | |
| .-mb-5xl { | |
| margin-bottom: -35px; | |
| } | |
| .-ml-5xl { | |
| margin-left: -35px; | |
| } | |
| .-mt-6xl { | |
| margin-top: -40px; | |
| } | |
| .-mr-6xl { | |
| margin-right: -40px; | |
| } | |
| .-mb-6xl { | |
| margin-bottom: -40px; | |
| } | |
| .-ml-6xl { | |
| margin-left: -40px; | |
| } | |
| .-mt-7xl { | |
| margin-top: -50px; | |
| } | |
| .-mr-7xl { | |
| margin-right: -50px; | |
| } | |
| .-mb-7xl { | |
| margin-bottom: -50px; | |
| } | |
| .-ml-7xl { | |
| margin-left: -50px; | |
| } | |
| .opacity-0 { | |
| opacity: 0; | |
| } | |
| .opacity-25 { | |
| opacity: .25; | |
| } | |
| .opacity-50 { | |
| opacity: .5; | |
| } | |
| .opacity-75 { | |
| opacity: .75; | |
| } | |
| .opacity-100 { | |
| opacity: 1; | |
| } | |
| .outline-none { | |
| outline: 0; | |
| } | |
| .focus\:outline-none:focus { | |
| outline: 0; | |
| } | |
| .overflow-auto { | |
| overflow: auto; | |
| } | |
| .overflow-hidden { | |
| overflow: hidden; | |
| } | |
| .overflow-visible { | |
| overflow: visible; | |
| } | |
| .overflow-scroll { | |
| overflow: scroll; | |
| } | |
| .overflow-x-auto { | |
| overflow-x: auto; | |
| } | |
| .overflow-y-auto { | |
| overflow-y: auto; | |
| } | |
| .overflow-x-hidden { | |
| overflow-x: hidden; | |
| } | |
| .overflow-y-hidden { | |
| overflow-y: hidden; | |
| } | |
| .overflow-x-visible { | |
| overflow-x: visible; | |
| } | |
| .overflow-y-visible { | |
| overflow-y: visible; | |
| } | |
| .overflow-x-scroll { | |
| overflow-x: scroll; | |
| } | |
| .overflow-y-scroll { | |
| overflow-y: scroll; | |
| } | |
| .scrolling-touch { | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| .scrolling-auto { | |
| -webkit-overflow-scrolling: auto; | |
| } | |
| .p-0 { | |
| padding: 0; | |
| } | |
| .p-px { | |
| padding: 1px; | |
| } | |
| .p-xs { | |
| padding: 2px; | |
| } | |
| .p-sm { | |
| padding: 4px; | |
| } | |
| .p-md { | |
| padding: 5px; | |
| } | |
| .p-lg { | |
| padding: 10px; | |
| } | |
| .p-xl { | |
| padding: 15px; | |
| } | |
| .p-2xl { | |
| padding: 20px; | |
| } | |
| .p-3xl { | |
| padding: 25px; | |
| } | |
| .p-4xl { | |
| padding: 30px; | |
| } | |
| .p-5xl { | |
| padding: 35px; | |
| } | |
| .p-6xl { | |
| padding: 40px; | |
| } | |
| .p-7xl { | |
| padding: 50px; | |
| } | |
| .py-0 { | |
| padding-top: 0; | |
| padding-bottom: 0; | |
| } | |
| .px-0 { | |
| padding-left: 0; | |
| padding-right: 0; | |
| } | |
| .py-px { | |
| padding-top: 1px; | |
| padding-bottom: 1px; | |
| } | |
| .px-px { | |
| padding-left: 1px; | |
| padding-right: 1px; | |
| } | |
| .py-xs { | |
| padding-top: 2px; | |
| padding-bottom: 2px; | |
| } | |
| .px-xs { | |
| padding-left: 2px; | |
| padding-right: 2px; | |
| } | |
| .py-sm { | |
| padding-top: 4px; | |
| padding-bottom: 4px; | |
| } | |
| .px-sm { | |
| padding-left: 4px; | |
| padding-right: 4px; | |
| } | |
| .py-md { | |
| padding-top: 5px; | |
| padding-bottom: 5px; | |
| } | |
| .px-md { | |
| padding-left: 5px; | |
| padding-right: 5px; | |
| } | |
| .py-lg { | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| } | |
| .px-lg { | |
| padding-left: 10px; | |
| padding-right: 10px; | |
| } | |
| .py-xl { | |
| padding-top: 15px; | |
| padding-bottom: 15px; | |
| } | |
| .px-xl { | |
| padding-left: 15px; | |
| padding-right: 15px; | |
| } | |
| .py-2xl { | |
| padding-top: 20px; | |
| padding-bottom: 20px; | |
| } | |
| .px-2xl { | |
| padding-left: 20px; | |
| padding-right: 20px; | |
| } | |
| .py-3xl { | |
| padding-top: 25px; | |
| padding-bottom: 25px; | |
| } | |
| .px-3xl { | |
| padding-left: 25px; | |
| padding-right: 25px; | |
| } | |
| .py-4xl { | |
| padding-top: 30px; | |
| padding-bottom: 30px; | |
| } | |
| .px-4xl { | |
| padding-left: 30px; | |
| padding-right: 30px; | |
| } | |
| .py-5xl { | |
| padding-top: 35px; | |
| padding-bottom: 35px; | |
| } | |
| .px-5xl { | |
| padding-left: 35px; | |
| padding-right: 35px; | |
| } | |
| .py-6xl { | |
| padding-top: 40px; | |
| padding-bottom: 40px; | |
| } | |
| .px-6xl { | |
| padding-left: 40px; | |
| padding-right: 40px; | |
| } | |
| .py-7xl { | |
| padding-top: 50px; | |
| padding-bottom: 50px; | |
| } | |
| .px-7xl { | |
| padding-left: 50px; | |
| padding-right: 50px; | |
| } | |
| .pt-0 { | |
| padding-top: 0; | |
| } | |
| .pr-0 { | |
| padding-right: 0; | |
| } | |
| .pb-0 { | |
| padding-bottom: 0; | |
| } | |
| .pl-0 { | |
| padding-left: 0; | |
| } | |
| .pt-px { | |
| padding-top: 1px; | |
| } | |
| .pr-px { | |
| padding-right: 1px; | |
| } | |
| .pb-px { | |
| padding-bottom: 1px; | |
| } | |
| .pl-px { | |
| padding-left: 1px; | |
| } | |
| .pt-xs { | |
| padding-top: 2px; | |
| } | |
| .pr-xs { | |
| padding-right: 2px; | |
| } | |
| .pb-xs { | |
| padding-bottom: 2px; | |
| } | |
| .pl-xs { | |
| padding-left: 2px; | |
| } | |
| .pt-sm { | |
| padding-top: 4px; | |
| } | |
| .pr-sm { | |
| padding-right: 4px; | |
| } | |
| .pb-sm { | |
| padding-bottom: 4px; | |
| } | |
| .pl-sm { | |
| padding-left: 4px; | |
| } | |
| .pt-md { | |
| padding-top: 5px; | |
| } | |
| .pr-md { | |
| padding-right: 5px; | |
| } | |
| .pb-md { | |
| padding-bottom: 5px; | |
| } | |
| .pl-md { | |
| padding-left: 5px; | |
| } | |
| .pt-lg { | |
| padding-top: 10px; | |
| } | |
| .pr-lg { | |
| padding-right: 10px; | |
| } | |
| .pb-lg { | |
| padding-bottom: 10px; | |
| } | |
| .pl-lg { | |
| padding-left: 10px; | |
| } | |
| .pt-xl { | |
| padding-top: 15px; | |
| } | |
| .pr-xl { | |
| padding-right: 15px; | |
| } | |
| .pb-xl { | |
| padding-bottom: 15px; | |
| } | |
| .pl-xl { | |
| padding-left: 15px; | |
| } | |
| .pt-2xl { | |
| padding-top: 20px; | |
| } | |
| .pr-2xl { | |
| padding-right: 20px; | |
| } | |
| .pb-2xl { | |
| padding-bottom: 20px; | |
| } | |
| .pl-2xl { | |
| padding-left: 20px; | |
| } | |
| .pt-3xl { | |
| padding-top: 25px; | |
| } | |
| .pr-3xl { | |
| padding-right: 25px; | |
| } | |
| .pb-3xl { | |
| padding-bottom: 25px; | |
| } | |
| .pl-3xl { | |
| padding-left: 25px; | |
| } | |
| .pt-4xl { | |
| padding-top: 30px; | |
| } | |
| .pr-4xl { | |
| padding-right: 30px; | |
| } | |
| .pb-4xl { | |
| padding-bottom: 30px; | |
| } | |
| .pl-4xl { | |
| padding-left: 30px; | |
| } | |
| .pt-5xl { | |
| padding-top: 35px; | |
| } | |
| .pr-5xl { | |
| padding-right: 35px; | |
| } | |
| .pb-5xl { | |
| padding-bottom: 35px; | |
| } | |
| .pl-5xl { | |
| padding-left: 35px; | |
| } | |
| .pt-6xl { | |
| padding-top: 40px; | |
| } | |
| .pr-6xl { | |
| padding-right: 40px; | |
| } | |
| .pb-6xl { | |
| padding-bottom: 40px; | |
| } | |
| .pl-6xl { | |
| padding-left: 40px; | |
| } | |
| .pt-7xl { | |
| padding-top: 50px; | |
| } | |
| .pr-7xl { | |
| padding-right: 50px; | |
| } | |
| .pb-7xl { | |
| padding-bottom: 50px; | |
| } | |
| .pl-7xl { | |
| padding-left: 50px; | |
| } | |
| .pointer-events-none { | |
| pointer-events: none; | |
| } | |
| .pointer-events-auto { | |
| pointer-events: auto; | |
| } | |
| .static { | |
| position: static; | |
| } | |
| .fixed { | |
| position: fixed; | |
| } | |
| .absolute { | |
| position: absolute; | |
| } | |
| .relative { | |
| position: relative; | |
| } | |
| .sticky { | |
| position: -webkit-sticky; | |
| position: sticky; | |
| } | |
| .pin-none { | |
| top: auto; | |
| right: auto; | |
| bottom: auto; | |
| left: auto; | |
| } | |
| .pin { | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | |
| } | |
| .pin-y { | |
| top: 0; | |
| bottom: 0; | |
| } | |
| .pin-x { | |
| right: 0; | |
| left: 0; | |
| } | |
| .pin-t { | |
| top: 0; | |
| } | |
| .pin-r { | |
| right: 0; | |
| } | |
| .pin-b { | |
| bottom: 0; | |
| } | |
| .pin-l { | |
| left: 0; | |
| } | |
| .resize-none { | |
| resize: none; | |
| } | |
| .resize-y { | |
| resize: vertical; | |
| } | |
| .resize-x { | |
| resize: horizontal; | |
| } | |
| .resize { | |
| resize: both; | |
| } | |
| .shadow { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| } | |
| .shadow-light { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| } | |
| .shadow-medium { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| } | |
| .shadow-dark { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| } | |
| .shadow-input { | |
| -webkit-box-shadow: 0 0 3px 0 #74cfe7; | |
| box-shadow: 0 0 3px 0 #74cfe7; | |
| } | |
| .shadow-popups { | |
| -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| } | |
| .shadow-none { | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .hover\:shadow:hover { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| } | |
| .hover\:shadow-light:hover { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| } | |
| .hover\:shadow-medium:hover { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| } | |
| .hover\:shadow-dark:hover { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| } | |
| .hover\:shadow-input:hover { | |
| -webkit-box-shadow: 0 0 3px 0 #74cfe7; | |
| box-shadow: 0 0 3px 0 #74cfe7; | |
| } | |
| .hover\:shadow-popups:hover { | |
| -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| } | |
| .hover\:shadow-none:hover { | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .focus\:shadow:focus { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| } | |
| .focus\:shadow-light:focus { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| } | |
| .focus\:shadow-medium:focus { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| } | |
| .focus\:shadow-dark:focus { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| } | |
| .focus\:shadow-input:focus { | |
| -webkit-box-shadow: 0 0 3px 0 #74cfe7; | |
| box-shadow: 0 0 3px 0 #74cfe7; | |
| } | |
| .focus\:shadow-popups:focus { | |
| -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| } | |
| .focus\:shadow-none:focus { | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .active\:shadow:active { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .07); | |
| } | |
| .active\:shadow-light:active { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .1); | |
| } | |
| .active\:shadow-medium:active { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .2); | |
| } | |
| .active\:shadow-dark:active { | |
| -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| box-shadow: 0 2px 4px 1px rgba(0, 0, 0, .4); | |
| } | |
| .active\:shadow-input:active { | |
| -webkit-box-shadow: 0 0 3px 0 #74cfe7; | |
| box-shadow: 0 0 3px 0 #74cfe7; | |
| } | |
| .active\:shadow-popups:active { | |
| -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); | |
| } | |
| .active\:shadow-none:active { | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .fill-current { | |
| fill: currentColor; | |
| } | |
| .stroke-current { | |
| stroke: currentColor; | |
| } | |
| .table-auto { | |
| table-layout: auto; | |
| } | |
| .table-fixed { | |
| table-layout: fixed; | |
| } | |
| .text-left { | |
| text-align: left; | |
| } | |
| .text-center { | |
| text-align: center; | |
| } | |
| .text-right { | |
| text-align: right; | |
| } | |
| .text-justify { | |
| text-align: justify; | |
| } | |
| .text-default { | |
| color: #5c5e62; | |
| } | |
| .text-transparent { | |
| color: transparent; | |
| } | |
| .text-white { | |
| color: #fff; | |
| } | |
| .text-grey-1 { | |
| color: #fafafa; | |
| } | |
| .text-grey-2 { | |
| color: #efefef; | |
| } | |
| .text-grey-3 { | |
| color: #e3e3e3; | |
| } | |
| .text-grey-4 { | |
| color: #dcdcdc; | |
| } | |
| .text-grey-5 { | |
| color: #cecece; | |
| } | |
| .text-grey-6 { | |
| color: #adadad; | |
| } | |
| .text-grey-7 { | |
| color: #9b9b9b; | |
| } | |
| .text-grey-8 { | |
| color: #8e8e8e; | |
| } | |
| .text-grey-9 { | |
| color: #5c5e62; | |
| } | |
| .text-black { | |
| color: #000; | |
| } | |
| .text-air { | |
| color: #f6fbfe; | |
| } | |
| .text-polar { | |
| color: #f3f9fd; | |
| } | |
| .text-selago { | |
| color: #e8f4fc; | |
| } | |
| .text-sky { | |
| color: #d5f0f7; | |
| } | |
| .text-nativo { | |
| color: #74cfe7; | |
| } | |
| .text-teal { | |
| color: #51b1cb; | |
| } | |
| .text-rock-blue { | |
| color: #a0c3d2; | |
| } | |
| .text-blue-grey { | |
| color: #88a6b6; | |
| } | |
| .text-ocean { | |
| color: #358297; | |
| } | |
| .text-ecru { | |
| color: #eeffca; | |
| } | |
| .text-pale-olive { | |
| color: #bcd48a; | |
| } | |
| .text-celery { | |
| color: #a5ba52; | |
| } | |
| .text-seafoam { | |
| color: #86cabd; | |
| } | |
| .text-wheat { | |
| color: #fabd79; | |
| } | |
| .text-squash { | |
| color: #f6a724; | |
| } | |
| .text-light-salmon { | |
| color: #ffa898; | |
| } | |
| .text-blush { | |
| color: #f37777; | |
| } | |
| .text-dusk { | |
| color: #565c81; | |
| } | |
| .text-primary { | |
| color: #74cfe7; | |
| } | |
| .text-success { | |
| color: #a5ba52; | |
| } | |
| .text-warning { | |
| color: #f6a724; | |
| } | |
| .text-danger { | |
| color: #f37777; | |
| } | |
| .text-info { | |
| color: #86cabd; | |
| } | |
| .text-hover { | |
| color: #e8f4fc; | |
| } | |
| .text-light { | |
| color: #cecece; | |
| } | |
| .text-grey { | |
| color: #9b9b9b; | |
| } | |
| .text-dark { | |
| color: #5c5e62; | |
| } | |
| .hover\:text-default:hover { | |
| color: #5c5e62; | |
| } | |
| .hover\:text-transparent:hover { | |
| color: transparent; | |
| } | |
| .hover\:text-white:hover { | |
| color: #fff; | |
| } | |
| .hover\:text-grey-1:hover { | |
| color: #fafafa; | |
| } | |
| .hover\:text-grey-2:hover { | |
| color: #efefef; | |
| } | |
| .hover\:text-grey-3:hover { | |
| color: #e3e3e3; | |
| } | |
| .hover\:text-grey-4:hover { | |
| color: #dcdcdc; | |
| } | |
| .hover\:text-grey-5:hover { | |
| color: #cecece; | |
| } | |
| .hover\:text-grey-6:hover { | |
| color: #adadad; | |
| } | |
| .hover\:text-grey-7:hover { | |
| color: #9b9b9b; | |
| } | |
| .hover\:text-grey-8:hover { | |
| color: #8e8e8e; | |
| } | |
| .hover\:text-grey-9:hover { | |
| color: #5c5e62; | |
| } | |
| .hover\:text-black:hover { | |
| color: #000; | |
| } | |
| .hover\:text-air:hover { | |
| color: #f6fbfe; | |
| } | |
| .hover\:text-polar:hover { | |
| color: #f3f9fd; | |
| } | |
| .hover\:text-selago:hover { | |
| color: #e8f4fc; | |
| } | |
| .hover\:text-sky:hover { | |
| color: #d5f0f7; | |
| } | |
| .hover\:text-nativo:hover { | |
| color: #74cfe7; | |
| } | |
| .hover\:text-teal:hover { | |
| color: #51b1cb; | |
| } | |
| .hover\:text-rock-blue:hover { | |
| color: #a0c3d2; | |
| } | |
| .hover\:text-blue-grey:hover { | |
| color: #88a6b6; | |
| } | |
| .hover\:text-ocean:hover { | |
| color: #358297; | |
| } | |
| .hover\:text-ecru:hover { | |
| color: #eeffca; | |
| } | |
| .hover\:text-pale-olive:hover { | |
| color: #bcd48a; | |
| } | |
| .hover\:text-celery:hover { | |
| color: #a5ba52; | |
| } | |
| .hover\:text-seafoam:hover { | |
| color: #86cabd; | |
| } | |
| .hover\:text-wheat:hover { | |
| color: #fabd79; | |
| } | |
| .hover\:text-squash:hover { | |
| color: #f6a724; | |
| } | |
| .hover\:text-light-salmon:hover { | |
| color: #ffa898; | |
| } | |
| .hover\:text-blush:hover { | |
| color: #f37777; | |
| } | |
| .hover\:text-dusk:hover { | |
| color: #565c81; | |
| } | |
| .hover\:text-primary:hover { | |
| color: #74cfe7; | |
| } | |
| .hover\:text-success:hover { | |
| color: #a5ba52; | |
| } | |
| .hover\:text-warning:hover { | |
| color: #f6a724; | |
| } | |
| .hover\:text-danger:hover { | |
| color: #f37777; | |
| } | |
| .hover\:text-info:hover { | |
| color: #86cabd; | |
| } | |
| .hover\:text-hover:hover { | |
| color: #e8f4fc; | |
| } | |
| .hover\:text-light:hover { | |
| color: #cecece; | |
| } | |
| .hover\:text-grey:hover { | |
| color: #9b9b9b; | |
| } | |
| .hover\:text-dark:hover { | |
| color: #5c5e62; | |
| } | |
| .focus\:text-default:focus { | |
| color: #5c5e62; | |
| } | |
| .focus\:text-transparent:focus { | |
| color: transparent; | |
| } | |
| .focus\:text-white:focus { | |
| color: #fff; | |
| } | |
| .focus\:text-grey-1:focus { | |
| color: #fafafa; | |
| } | |
| .focus\:text-grey-2:focus { | |
| color: #efefef; | |
| } | |
| .focus\:text-grey-3:focus { | |
| color: #e3e3e3; | |
| } | |
| .focus\:text-grey-4:focus { | |
| color: #dcdcdc; | |
| } | |
| .focus\:text-grey-5:focus { | |
| color: #cecece; | |
| } | |
| .focus\:text-grey-6:focus { | |
| color: #adadad; | |
| } | |
| .focus\:text-grey-7:focus { | |
| color: #9b9b9b; | |
| } | |
| .focus\:text-grey-8:focus { | |
| color: #8e8e8e; | |
| } | |
| .focus\:text-grey-9:focus { | |
| color: #5c5e62; | |
| } | |
| .focus\:text-black:focus { | |
| color: #000; | |
| } | |
| .focus\:text-air:focus { | |
| color: #f6fbfe; | |
| } | |
| .focus\:text-polar:focus { | |
| color: #f3f9fd; | |
| } | |
| .focus\:text-selago:focus { | |
| color: #e8f4fc; | |
| } | |
| .focus\:text-sky:focus { | |
| color: #d5f0f7; | |
| } | |
| .focus\:text-nativo:focus { | |
| color: #74cfe7; | |
| } | |
| .focus\:text-teal:focus { | |
| color: #51b1cb; | |
| } | |
| .focus\:text-rock-blue:focus { | |
| color: #a0c3d2; | |
| } | |
| .focus\:text-blue-grey:focus { | |
| color: #88a6b6; | |
| } | |
| .focus\:text-ocean:focus { | |
| color: #358297; | |
| } | |
| .focus\:text-ecru:focus { | |
| color: #eeffca; | |
| } | |
| .focus\:text-pale-olive:focus { | |
| color: #bcd48a; | |
| } | |
| .focus\:text-celery:focus { | |
| color: #a5ba52; | |
| } | |
| .focus\:text-seafoam:focus { | |
| color: #86cabd; | |
| } | |
| .focus\:text-wheat:focus { | |
| color: #fabd79; | |
| } | |
| .focus\:text-squash:focus { | |
| color: #f6a724; | |
| } | |
| .focus\:text-light-salmon:focus { | |
| color: #ffa898; | |
| } | |
| .focus\:text-blush:focus { | |
| color: #f37777; | |
| } | |
| .focus\:text-dusk:focus { | |
| color: #565c81; | |
| } | |
| .focus\:text-primary:focus { | |
| color: #74cfe7; | |
| } | |
| .focus\:text-success:focus { | |
| color: #a5ba52; | |
| } | |
| .focus\:text-warning:focus { | |
| color: #f6a724; | |
| } | |
| .focus\:text-danger:focus { | |
| color: #f37777; | |
| } | |
| .focus\:text-info:focus { | |
| color: #86cabd; | |
| } | |
| .focus\:text-hover:focus { | |
| color: #e8f4fc; | |
| } | |
| .focus\:text-light:focus { | |
| color: #cecece; | |
| } | |
| .focus\:text-grey:focus { | |
| color: #9b9b9b; | |
| } | |
| .focus\:text-dark:focus { | |
| color: #5c5e62; | |
| } | |
| .text-default { | |
| font-size: 12px; | |
| } | |
| .text-xs { | |
| font-size: 8px; | |
| } | |
| .text-sm { | |
| font-size: 10px; | |
| } | |
| .text-md { | |
| font-size: 14px; | |
| } | |
| .text-lg { | |
| font-size: 16px; | |
| } | |
| .text-xl { | |
| font-size: 18px; | |
| } | |
| .text-2xl { | |
| font-size: 22px; | |
| } | |
| .text-3xl { | |
| font-size: 28px; | |
| } | |
| .text-4xl { | |
| font-size: 32px; | |
| } | |
| .text-5xl { | |
| font-size: 40px; | |
| } | |
| .text-6xl { | |
| font-size: 48px; | |
| } | |
| .text-7xl { | |
| font-size: 64px; | |
| } | |
| .italic { | |
| font-style: italic; | |
| } | |
| .roman { | |
| font-style: normal; | |
| } | |
| .uppercase { | |
| text-transform: uppercase; | |
| } | |
| .lowercase { | |
| text-transform: lowercase; | |
| } | |
| .capitalize { | |
| text-transform: capitalize; | |
| } | |
| .normal-case { | |
| text-transform: none; | |
| } | |
| .underline { | |
| text-decoration: underline; | |
| } | |
| .line-through { | |
| text-decoration: line-through; | |
| } | |
| .no-underline { | |
| text-decoration: none; | |
| } | |
| .antialiased { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| .subpixel-antialiased { | |
| -webkit-font-smoothing: auto; | |
| -moz-osx-font-smoothing: auto; | |
| } | |
| .hover\:italic:hover { | |
| font-style: italic; | |
| } | |
| .hover\:roman:hover { | |
| font-style: normal; | |
| } | |
| .hover\:uppercase:hover { | |
| text-transform: uppercase; | |
| } | |
| .hover\:lowercase:hover { | |
| text-transform: lowercase; | |
| } | |
| .hover\:capitalize:hover { | |
| text-transform: capitalize; | |
| } | |
| .hover\:normal-case:hover { | |
| text-transform: none; | |
| } | |
| .hover\:underline:hover { | |
| text-decoration: underline; | |
| } | |
| .hover\:line-through:hover { | |
| text-decoration: line-through; | |
| } | |
| .hover\:no-underline:hover { | |
| text-decoration: none; | |
| } | |
| .hover\:antialiased:hover { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| .hover\:subpixel-antialiased:hover { | |
| -webkit-font-smoothing: auto; | |
| -moz-osx-font-smoothing: auto; | |
| } | |
| .focus\:italic:focus { | |
| font-style: italic; | |
| } | |
| .focus\:roman:focus { | |
| font-style: normal; | |
| } | |
| .focus\:uppercase:focus { | |
| text-transform: uppercase; | |
| } | |
| .focus\:lowercase:focus { | |
| text-transform: lowercase; | |
| } | |
| .focus\:capitalize:focus { | |
| text-transform: capitalize; | |
| } | |
| .focus\:normal-case:focus { | |
| text-transform: none; | |
| } | |
| .focus\:underline:focus { | |
| text-decoration: underline; | |
| } | |
| .focus\:line-through:focus { | |
| text-decoration: line-through; | |
| } | |
| .focus\:no-underline:focus { | |
| text-decoration: none; | |
| } | |
| .focus\:antialiased:focus { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| .focus\:subpixel-antialiased:focus { | |
| -webkit-font-smoothing: auto; | |
| -moz-osx-font-smoothing: auto; | |
| } | |
| .tracking-tight { | |
| letter-spacing: -0.05em; | |
| } | |
| .tracking-normal { | |
| letter-spacing: 0; | |
| } | |
| .tracking-wide { | |
| letter-spacing: .05em; | |
| } | |
| .select-none { | |
| -webkit-user-select: none; | |
| -moz-user-select: none; | |
| -ms-user-select: none; | |
| user-select: none; | |
| } | |
| .select-text { | |
| -webkit-user-select: text; | |
| -moz-user-select: text; | |
| -ms-user-select: text; | |
| user-select: text; | |
| } | |
| .align-baseline { | |
| vertical-align: baseline; | |
| } | |
| .align-top { | |
| vertical-align: top; | |
| } | |
| .align-middle { | |
| vertical-align: middle; | |
| } | |
| .align-bottom { | |
| vertical-align: bottom; | |
| } | |
| .align-text-top { | |
| vertical-align: text-top; | |
| } | |
| .align-text-bottom { | |
| vertical-align: text-bottom; | |
| } | |
| .visible { | |
| visibility: visible; | |
| } | |
| .invisible { | |
| visibility: hidden; | |
| } | |
| .whitespace-normal { | |
| white-space: normal; | |
| } | |
| .whitespace-no-wrap { | |
| white-space: nowrap; | |
| } | |
| .whitespace-pre { | |
| white-space: pre; | |
| } | |
| .whitespace-pre-line { | |
| white-space: pre-line; | |
| } | |
| .whitespace-pre-wrap { | |
| white-space: pre-wrap; | |
| } | |
| .break-words { | |
| word-wrap: break-word; | |
| } | |
| .break-normal { | |
| word-wrap: normal; | |
| } | |
| .truncate { | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } | |
| .w-auto { | |
| width: auto; | |
| } | |
| .w-px { | |
| width: 1px; | |
| } | |
| .w-xs { | |
| width: 10px; | |
| } | |
| .w-sm { | |
| width: 15px; | |
| } | |
| .w-md { | |
| width: 20px; | |
| } | |
| .w-lg { | |
| width: 25px; | |
| } | |
| .w-xl { | |
| width: 30px; | |
| } | |
| .w-2xl { | |
| width: 35px; | |
| } | |
| .w-3xl { | |
| width: 40px; | |
| } | |
| .w-4xl { | |
| width: 50px; | |
| } | |
| .w-5xl { | |
| width: 75px; | |
| } | |
| .w-6xl { | |
| width: 100px; | |
| } | |
| .w-1\/12 { | |
| width: 8.333%; | |
| } | |
| .w-2\/12 { | |
| width: 16.66%; | |
| } | |
| .w-3\/12 { | |
| width: 25%; | |
| } | |
| .w-4\/12 { | |
| width: 33.33%; | |
| } | |
| .w-5\/12 { | |
| width: 41.66%; | |
| } | |
| .w-6\/12 { | |
| width: 50%; | |
| } | |
| .w-7\/12 { | |
| width: 58.33%; | |
| } | |
| .w-8\/12 { | |
| width: 66.66%; | |
| } | |
| .w-9\/12 { | |
| width: 75%; | |
| } | |
| .w-10\/12 { | |
| width: 83.33%; | |
| } | |
| .w-11\/12 { | |
| width: 91.66%; | |
| } | |
| .w-12\/12 { | |
| width: 100%; | |
| } | |
| .w-full { | |
| width: 100%; | |
| } | |
| .w-screen { | |
| width: 100vw; | |
| } | |
| .z-0 { | |
| z-index: 0; | |
| } | |
| .z-10 { | |
| z-index: 10; | |
| } | |
| .z-20 { | |
| z-index: 20; | |
| } | |
| .z-30 { | |
| z-index: 30; | |
| } | |
| .z-40 { | |
| z-index: 40; | |
| } | |
| .z-50 { | |
| z-index: 50; | |
| } | |
| .z-auto { | |
| z-index: auto; | |
| } | |
| /** | |
| * Here you would add any custom utilities you need that don't come out of the | |
| * box with Tailwind. | |
| * | |
| * Example : | |
| * | |
| * .bg-pattern-graph-paper { ... } | |
| * .skew-45 { ... } | |
| * | |
| * Or if using a preprocessor or `postcss-import`: | |
| * | |
| * @import "utilities/background-patterns"; | |
| * @import "utilities/skew-transforms"; | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment