tailwind.css
1565 lines
| 1 | /* |
| 2 | ! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com |
| 3 | *//* |
| 4 | 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) |
| 5 | 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) |
| 6 | */ |
| 7 | |
| 8 | *, |
| 9 | ::before, |
| 10 | ::after { |
| 11 | box-sizing: border-box; /* 1 */ |
| 12 | border-width: 0; /* 2 */ |
| 13 | border-style: solid; /* 2 */ |
| 14 | border-color: #e5e7eb; /* 2 */ |
| 15 | } |
| 16 | |
| 17 | ::before, |
| 18 | ::after { |
| 19 | --tw-content: ''; |
| 20 | } |
| 21 | |
| 22 | /* |
| 23 | 1. Use a consistent sensible line-height in all browsers. |
| 24 | 2. Prevent adjustments of font size after orientation changes in iOS. |
| 25 | 3. Use a more readable tab size. |
| 26 | 4. Use the user's configured `sans` font-family by default. |
| 27 | */ |
| 28 | |
| 29 | html { |
| 30 | line-height: 1.5; /* 1 */ |
| 31 | -webkit-text-size-adjust: 100%; /* 2 */ |
| 32 | -moz-tab-size: 4; /* 3 */ |
| 33 | -o-tab-size: 4; |
| 34 | tab-size: 4; /* 3 */ |
| 35 | 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"; /* 4 */ |
| 36 | } |
| 37 | |
| 38 | /* |
| 39 | 1. Remove the margin in all browsers. |
| 40 | 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. |
| 41 | */ |
| 42 | |
| 43 | body { |
| 44 | margin: 0; /* 1 */ |
| 45 | line-height: inherit; /* 2 */ |
| 46 | } |
| 47 | |
| 48 | /* |
| 49 | 1. Add the correct height in Firefox. |
| 50 | 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) |
| 51 | 3. Ensure horizontal rules are visible by default. |
| 52 | */ |
| 53 | |
| 54 | hr { |
| 55 | height: 0; /* 1 */ |
| 56 | color: inherit; /* 2 */ |
| 57 | border-top-width: 1px; /* 3 */ |
| 58 | } |
| 59 | |
| 60 | /* |
| 61 | Add the correct text decoration in Chrome, Edge, and Safari. |
| 62 | */ |
| 63 | |
| 64 | abbr:where([title]) { |
| 65 | -webkit-text-decoration: underline dotted; |
| 66 | text-decoration: underline dotted; |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | Remove the default font size and weight for headings. |
| 71 | */ |
| 72 | |
| 73 | h1, |
| 74 | h2, |
| 75 | h3, |
| 76 | h4, |
| 77 | h5, |
| 78 | h6 { |
| 79 | font-size: inherit; |
| 80 | font-weight: inherit; |
| 81 | } |
| 82 | |
| 83 | /* |
| 84 | Reset links to optimize for opt-in styling instead of opt-out. |
| 85 | */ |
| 86 | |
| 87 | a { |
| 88 | color: inherit; |
| 89 | text-decoration: inherit; |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | Add the correct font weight in Edge and Safari. |
| 94 | */ |
| 95 | |
| 96 | b, |
| 97 | strong { |
| 98 | font-weight: bolder; |
| 99 | } |
| 100 | |
| 101 | /* |
| 102 | 1. Use the user's configured `mono` font family by default. |
| 103 | 2. Correct the odd `em` font sizing in all browsers. |
| 104 | */ |
| 105 | |
| 106 | code, |
| 107 | kbd, |
| 108 | samp, |
| 109 | pre { |
| 110 | font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ |
| 111 | font-size: 1em; /* 2 */ |
| 112 | } |
| 113 | |
| 114 | /* |
| 115 | Add the correct font size in all browsers. |
| 116 | */ |
| 117 | |
| 118 | small { |
| 119 | font-size: 80%; |
| 120 | } |
| 121 | |
| 122 | /* |
| 123 | Prevent `sub` and `sup` elements from affecting the line height in all browsers. |
| 124 | */ |
| 125 | |
| 126 | sub, |
| 127 | sup { |
| 128 | font-size: 75%; |
| 129 | line-height: 0; |
| 130 | position: relative; |
| 131 | vertical-align: baseline; |
| 132 | } |
| 133 | |
| 134 | sub { |
| 135 | bottom: -0.25em; |
| 136 | } |
| 137 | |
| 138 | sup { |
| 139 | top: -0.5em; |
| 140 | } |
| 141 | |
| 142 | /* |
| 143 | 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) |
| 144 | 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) |
| 145 | 3. Remove gaps between table borders by default. |
| 146 | */ |
| 147 | |
| 148 | table { |
| 149 | text-indent: 0; /* 1 */ |
| 150 | border-color: inherit; /* 2 */ |
| 151 | border-collapse: collapse; /* 3 */ |
| 152 | } |
| 153 | |
| 154 | /* |
| 155 | 1. Change the font styles in all browsers. |
| 156 | 2. Remove the margin in Firefox and Safari. |
| 157 | 3. Remove default padding in all browsers. |
| 158 | */ |
| 159 | |
| 160 | button, |
| 161 | input, |
| 162 | optgroup, |
| 163 | select, |
| 164 | textarea { |
| 165 | font-family: inherit; /* 1 */ |
| 166 | font-size: 100%; /* 1 */ |
| 167 | font-weight: inherit; /* 1 */ |
| 168 | line-height: inherit; /* 1 */ |
| 169 | color: inherit; /* 1 */ |
| 170 | margin: 0; /* 2 */ |
| 171 | padding: 0; /* 3 */ |
| 172 | } |
| 173 | |
| 174 | /* |
| 175 | Remove the inheritance of text transform in Edge and Firefox. |
| 176 | */ |
| 177 | |
| 178 | button, |
| 179 | select { |
| 180 | text-transform: none; |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | 1. Correct the inability to style clickable types in iOS and Safari. |
| 185 | 2. Remove default button styles. |
| 186 | */ |
| 187 | |
| 188 | button, |
| 189 | [type='button'], |
| 190 | [type='reset'], |
| 191 | [type='submit'] { |
| 192 | -webkit-appearance: button; /* 1 */ |
| 193 | background-color: transparent; /* 2 */ |
| 194 | background-image: none; /* 2 */ |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | Use the modern Firefox focus style for all focusable elements. |
| 199 | */ |
| 200 | |
| 201 | :-moz-focusring { |
| 202 | outline: auto; |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) |
| 207 | */ |
| 208 | |
| 209 | :-moz-ui-invalid { |
| 210 | box-shadow: none; |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | Add the correct vertical alignment in Chrome and Firefox. |
| 215 | */ |
| 216 | |
| 217 | progress { |
| 218 | vertical-align: baseline; |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | Correct the cursor style of increment and decrement buttons in Safari. |
| 223 | */ |
| 224 | |
| 225 | ::-webkit-inner-spin-button, |
| 226 | ::-webkit-outer-spin-button { |
| 227 | height: auto; |
| 228 | } |
| 229 | |
| 230 | /* |
| 231 | 1. Correct the odd appearance in Chrome and Safari. |
| 232 | 2. Correct the outline style in Safari. |
| 233 | */ |
| 234 | |
| 235 | [type='search'] { |
| 236 | -webkit-appearance: textfield; /* 1 */ |
| 237 | outline-offset: -2px; /* 2 */ |
| 238 | } |
| 239 | |
| 240 | /* |
| 241 | Remove the inner padding in Chrome and Safari on macOS. |
| 242 | */ |
| 243 | |
| 244 | ::-webkit-search-decoration { |
| 245 | -webkit-appearance: none; |
| 246 | } |
| 247 | |
| 248 | /* |
| 249 | 1. Correct the inability to style clickable types in iOS and Safari. |
| 250 | 2. Change font properties to `inherit` in Safari. |
| 251 | */ |
| 252 | |
| 253 | ::-webkit-file-upload-button { |
| 254 | -webkit-appearance: button; /* 1 */ |
| 255 | font: inherit; /* 2 */ |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | Add the correct display in Chrome and Safari. |
| 260 | */ |
| 261 | |
| 262 | summary { |
| 263 | display: list-item; |
| 264 | } |
| 265 | |
| 266 | /* |
| 267 | Removes the default spacing and border for appropriate elements. |
| 268 | */ |
| 269 | |
| 270 | blockquote, |
| 271 | dl, |
| 272 | dd, |
| 273 | h1, |
| 274 | h2, |
| 275 | h3, |
| 276 | h4, |
| 277 | h5, |
| 278 | h6, |
| 279 | hr, |
| 280 | figure, |
| 281 | p, |
| 282 | pre { |
| 283 | margin: 0; |
| 284 | } |
| 285 | |
| 286 | fieldset { |
| 287 | margin: 0; |
| 288 | padding: 0; |
| 289 | } |
| 290 | |
| 291 | legend { |
| 292 | padding: 0; |
| 293 | } |
| 294 | |
| 295 | ol, |
| 296 | ul, |
| 297 | menu { |
| 298 | list-style: none; |
| 299 | margin: 0; |
| 300 | padding: 0; |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | Prevent resizing textareas horizontally by default. |
| 305 | */ |
| 306 | |
| 307 | textarea { |
| 308 | resize: vertical; |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) |
| 313 | 2. Set the default placeholder color to the user's configured gray 400 color. |
| 314 | */ |
| 315 | |
| 316 | input::-moz-placeholder, textarea::-moz-placeholder { |
| 317 | opacity: 1; /* 1 */ |
| 318 | color: #9ca3af; /* 2 */ |
| 319 | } |
| 320 | |
| 321 | input::placeholder, |
| 322 | textarea::placeholder { |
| 323 | opacity: 1; /* 1 */ |
| 324 | color: #9ca3af; /* 2 */ |
| 325 | } |
| 326 | |
| 327 | /* |
| 328 | Set the default cursor for buttons. |
| 329 | */ |
| 330 | |
| 331 | button, |
| 332 | [role="button"] { |
| 333 | cursor: pointer; |
| 334 | } |
| 335 | |
| 336 | /* |
| 337 | Make sure disabled buttons don't get the pointer cursor. |
| 338 | */ |
| 339 | :disabled { |
| 340 | cursor: default; |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) |
| 345 | 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) |
| 346 | This can trigger a poorly considered lint error in some tools but is included by design. |
| 347 | */ |
| 348 | |
| 349 | img, |
| 350 | svg, |
| 351 | video, |
| 352 | canvas, |
| 353 | audio, |
| 354 | iframe, |
| 355 | embed, |
| 356 | object { |
| 357 | display: block; /* 1 */ |
| 358 | vertical-align: middle; /* 2 */ |
| 359 | } |
| 360 | |
| 361 | /* |
| 362 | Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) |
| 363 | */ |
| 364 | |
| 365 | img, |
| 366 | video { |
| 367 | max-width: 100%; |
| 368 | height: auto; |
| 369 | } |
| 370 | |
| 371 | *, ::before, ::after { |
| 372 | --tw-border-spacing-x: 0; |
| 373 | --tw-border-spacing-y: 0; |
| 374 | --tw-translate-x: 0; |
| 375 | --tw-translate-y: 0; |
| 376 | --tw-rotate: 0; |
| 377 | --tw-skew-x: 0; |
| 378 | --tw-skew-y: 0; |
| 379 | --tw-scale-x: 1; |
| 380 | --tw-scale-y: 1; |
| 381 | --tw-pan-x: ; |
| 382 | --tw-pan-y: ; |
| 383 | --tw-pinch-zoom: ; |
| 384 | --tw-scroll-snap-strictness: proximity; |
| 385 | --tw-ordinal: ; |
| 386 | --tw-slashed-zero: ; |
| 387 | --tw-numeric-figure: ; |
| 388 | --tw-numeric-spacing: ; |
| 389 | --tw-numeric-fraction: ; |
| 390 | --tw-ring-inset: ; |
| 391 | --tw-ring-offset-width: 0px; |
| 392 | --tw-ring-offset-color: #fff; |
| 393 | --tw-ring-color: rgb(59 130 246 / 0.5); |
| 394 | --tw-ring-offset-shadow: 0 0 #0000; |
| 395 | --tw-ring-shadow: 0 0 #0000; |
| 396 | --tw-shadow: 0 0 #0000; |
| 397 | --tw-shadow-colored: 0 0 #0000; |
| 398 | --tw-blur: ; |
| 399 | --tw-brightness: ; |
| 400 | --tw-contrast: ; |
| 401 | --tw-grayscale: ; |
| 402 | --tw-hue-rotate: ; |
| 403 | --tw-invert: ; |
| 404 | --tw-saturate: ; |
| 405 | --tw-sepia: ; |
| 406 | --tw-drop-shadow: ; |
| 407 | --tw-backdrop-blur: ; |
| 408 | --tw-backdrop-brightness: ; |
| 409 | --tw-backdrop-contrast: ; |
| 410 | --tw-backdrop-grayscale: ; |
| 411 | --tw-backdrop-hue-rotate: ; |
| 412 | --tw-backdrop-invert: ; |
| 413 | --tw-backdrop-opacity: ; |
| 414 | --tw-backdrop-saturate: ; |
| 415 | --tw-backdrop-sepia: ; |
| 416 | } |
| 417 | |
| 418 | ::backdrop { |
| 419 | --tw-border-spacing-x: 0; |
| 420 | --tw-border-spacing-y: 0; |
| 421 | --tw-translate-x: 0; |
| 422 | --tw-translate-y: 0; |
| 423 | --tw-rotate: 0; |
| 424 | --tw-skew-x: 0; |
| 425 | --tw-skew-y: 0; |
| 426 | --tw-scale-x: 1; |
| 427 | --tw-scale-y: 1; |
| 428 | --tw-pan-x: ; |
| 429 | --tw-pan-y: ; |
| 430 | --tw-pinch-zoom: ; |
| 431 | --tw-scroll-snap-strictness: proximity; |
| 432 | --tw-ordinal: ; |
| 433 | --tw-slashed-zero: ; |
| 434 | --tw-numeric-figure: ; |
| 435 | --tw-numeric-spacing: ; |
| 436 | --tw-numeric-fraction: ; |
| 437 | --tw-ring-inset: ; |
| 438 | --tw-ring-offset-width: 0px; |
| 439 | --tw-ring-offset-color: #fff; |
| 440 | --tw-ring-color: rgb(59 130 246 / 0.5); |
| 441 | --tw-ring-offset-shadow: 0 0 #0000; |
| 442 | --tw-ring-shadow: 0 0 #0000; |
| 443 | --tw-shadow: 0 0 #0000; |
| 444 | --tw-shadow-colored: 0 0 #0000; |
| 445 | --tw-blur: ; |
| 446 | --tw-brightness: ; |
| 447 | --tw-contrast: ; |
| 448 | --tw-grayscale: ; |
| 449 | --tw-hue-rotate: ; |
| 450 | --tw-invert: ; |
| 451 | --tw-saturate: ; |
| 452 | --tw-sepia: ; |
| 453 | --tw-drop-shadow: ; |
| 454 | --tw-backdrop-blur: ; |
| 455 | --tw-backdrop-brightness: ; |
| 456 | --tw-backdrop-contrast: ; |
| 457 | --tw-backdrop-grayscale: ; |
| 458 | --tw-backdrop-hue-rotate: ; |
| 459 | --tw-backdrop-invert: ; |
| 460 | --tw-backdrop-opacity: ; |
| 461 | --tw-backdrop-saturate: ; |
| 462 | --tw-backdrop-sepia: ; |
| 463 | } |
| 464 | .container { |
| 465 | width: 100%; |
| 466 | } |
| 467 | @media (min-width: 640px) { |
| 468 | |
| 469 | .container { |
| 470 | max-width: 640px; |
| 471 | } |
| 472 | } |
| 473 | @media (min-width: 768px) { |
| 474 | |
| 475 | .container { |
| 476 | max-width: 768px; |
| 477 | } |
| 478 | } |
| 479 | @media (min-width: 1024px) { |
| 480 | |
| 481 | .container { |
| 482 | max-width: 1024px; |
| 483 | } |
| 484 | } |
| 485 | @media (min-width: 1280px) { |
| 486 | |
| 487 | .container { |
| 488 | max-width: 1280px; |
| 489 | } |
| 490 | } |
| 491 | @media (min-width: 1536px) { |
| 492 | |
| 493 | .container { |
| 494 | max-width: 1536px; |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | body { |
| 499 | --tw-bg-opacity: 1; |
| 500 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 501 | --tw-text-opacity: 1; |
| 502 | color: rgb(55 65 81 / var(--tw-text-opacity)); |
| 503 | } |
| 504 | |
| 505 | img { |
| 506 | border-style: initial; |
| 507 | } |
| 508 | |
| 509 | img, svg, video, canvas, audio, iframe, embed, object { |
| 510 | display: initial; |
| 511 | } |
| 512 | |
| 513 | a { |
| 514 | text-decoration: underline; |
| 515 | } |
| 516 | |
| 517 | .tblrow { |
| 518 | padding: 0.75rem; |
| 519 | } |
| 520 | |
| 521 | .hide { |
| 522 | display: none; |
| 523 | } |
| 524 | |
| 525 | .notice, div.error, div.updated { |
| 526 | margin-top: 0.25rem; |
| 527 | margin-bottom: 0.25rem; |
| 528 | } |
| 529 | |
| 530 | .dashicons-nametag { |
| 531 | font-size: 2.25rem; |
| 532 | line-height: 2.5rem; |
| 533 | } |
| 534 | |
| 535 | @media (min-width: 640px) { |
| 536 | .tblrow { |
| 537 | margin-left: 0.25rem; |
| 538 | margin-right: 0.25rem; |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | [x-cloak] { |
| 543 | display: none !important; |
| 544 | } |
| 545 | |
| 546 | .tooltip { |
| 547 | visibility: hidden; |
| 548 | position: absolute; |
| 549 | } |
| 550 | |
| 551 | .has-tooltip:hover .tooltip { |
| 552 | visibility: visible; |
| 553 | z-index: 50; |
| 554 | } |
| 555 | |
| 556 | .absolute { |
| 557 | position: absolute; |
| 558 | } |
| 559 | |
| 560 | .wp-list-table #id { |
| 561 | width: 6%; |
| 562 | } |
| 563 | .wp-list-table #check { |
| 564 | width: 20%; |
| 565 | } |
| 566 | .children { |
| 567 | margin-left: 2rem; |
| 568 | margin-top: 0.25rem; |
| 569 | } |
| 570 | |
| 571 | /* The switch - the box around the slider */ |
| 572 | .switch { |
| 573 | position: relative; |
| 574 | display: inline-block; |
| 575 | width: 60px; |
| 576 | height: 34px; |
| 577 | } |
| 578 | |
| 579 | /* Hide default HTML checkbox */ |
| 580 | .switch input { |
| 581 | opacity: 0; |
| 582 | width: 0; |
| 583 | height: 0; |
| 584 | } |
| 585 | |
| 586 | /* The slider */ |
| 587 | .slider { |
| 588 | position: absolute; |
| 589 | cursor: pointer; |
| 590 | top: 0; |
| 591 | left: 0; |
| 592 | right: 0; |
| 593 | bottom: 0; |
| 594 | background-color: #ccc; |
| 595 | transition: .4s; |
| 596 | } |
| 597 | |
| 598 | .slider:before { |
| 599 | position: absolute; |
| 600 | content: ""; |
| 601 | height: 26px; |
| 602 | width: 26px; |
| 603 | left: 4px; |
| 604 | bottom: 4px; |
| 605 | background-color: white; |
| 606 | transition: .4s; |
| 607 | } |
| 608 | |
| 609 | input:checked + .slider { |
| 610 | background-color: #2196F3; |
| 611 | } |
| 612 | |
| 613 | input:focus + .slider { |
| 614 | box-shadow: 0 0 1px #2196F3; |
| 615 | } |
| 616 | |
| 617 | input:checked + .slider:before { |
| 618 | transform: translateX(26px); |
| 619 | } |
| 620 | |
| 621 | /* Rounded sliders */ |
| 622 | .slider.round { |
| 623 | border-radius: 34px; |
| 624 | } |
| 625 | |
| 626 | .slider.round:before { |
| 627 | border-radius: 50%; |
| 628 | } |
| 629 | |
| 630 | /* remove list style */ |
| 631 | .delop .delop-filter li, .delop .delop-filter label{ |
| 632 | list-style: none; |
| 633 | margin-left: 0px; |
| 634 | } |
| 635 | |
| 636 | .static { |
| 637 | position: static; |
| 638 | } |
| 639 | |
| 640 | .fixed { |
| 641 | position: fixed; |
| 642 | } |
| 643 | |
| 644 | .absolute { |
| 645 | position: absolute; |
| 646 | } |
| 647 | |
| 648 | .relative { |
| 649 | position: relative; |
| 650 | } |
| 651 | |
| 652 | .right-1 { |
| 653 | right: 0.25rem; |
| 654 | } |
| 655 | |
| 656 | .top-1 { |
| 657 | top: 0.25rem; |
| 658 | } |
| 659 | |
| 660 | .top-0 { |
| 661 | top: 0px; |
| 662 | } |
| 663 | |
| 664 | .right-0 { |
| 665 | right: 0px; |
| 666 | } |
| 667 | |
| 668 | .left-0 { |
| 669 | left: 0px; |
| 670 | } |
| 671 | |
| 672 | .right-3 { |
| 673 | right: 0.75rem; |
| 674 | } |
| 675 | |
| 676 | .m-2 { |
| 677 | margin: 0.5rem; |
| 678 | } |
| 679 | |
| 680 | .m-3\.5 { |
| 681 | margin: 0.875rem; |
| 682 | } |
| 683 | |
| 684 | .m-3 { |
| 685 | margin: 0.75rem; |
| 686 | } |
| 687 | |
| 688 | .m-5 { |
| 689 | margin: 1.25rem; |
| 690 | } |
| 691 | |
| 692 | .mx-4 { |
| 693 | margin-left: 1rem; |
| 694 | margin-right: 1rem; |
| 695 | } |
| 696 | |
| 697 | .my-8 { |
| 698 | margin-top: 2rem; |
| 699 | margin-bottom: 2rem; |
| 700 | } |
| 701 | |
| 702 | .my-2 { |
| 703 | margin-top: 0.5rem; |
| 704 | margin-bottom: 0.5rem; |
| 705 | } |
| 706 | |
| 707 | .mx-auto { |
| 708 | margin-left: auto; |
| 709 | margin-right: auto; |
| 710 | } |
| 711 | |
| 712 | .-mx-1 { |
| 713 | margin-left: -0.25rem; |
| 714 | margin-right: -0.25rem; |
| 715 | } |
| 716 | |
| 717 | .mx-8 { |
| 718 | margin-left: 2rem; |
| 719 | margin-right: 2rem; |
| 720 | } |
| 721 | |
| 722 | .mb-4 { |
| 723 | margin-bottom: 1rem; |
| 724 | } |
| 725 | |
| 726 | .mr-5 { |
| 727 | margin-right: 1.25rem; |
| 728 | } |
| 729 | |
| 730 | .ml-2 { |
| 731 | margin-left: 0.5rem; |
| 732 | } |
| 733 | |
| 734 | .ml-1 { |
| 735 | margin-left: 0.25rem; |
| 736 | } |
| 737 | |
| 738 | .mb-2 { |
| 739 | margin-bottom: 0.5rem; |
| 740 | } |
| 741 | |
| 742 | .mt-8 { |
| 743 | margin-top: 2rem; |
| 744 | } |
| 745 | |
| 746 | .ml-4 { |
| 747 | margin-left: 1rem; |
| 748 | } |
| 749 | |
| 750 | .mt-2 { |
| 751 | margin-top: 0.5rem; |
| 752 | } |
| 753 | |
| 754 | .mt-3 { |
| 755 | margin-top: 0.75rem; |
| 756 | } |
| 757 | |
| 758 | .mr-4 { |
| 759 | margin-right: 1rem; |
| 760 | } |
| 761 | |
| 762 | .mb-6 { |
| 763 | margin-bottom: 1.5rem; |
| 764 | } |
| 765 | |
| 766 | .-mb-px { |
| 767 | margin-bottom: -1px; |
| 768 | } |
| 769 | |
| 770 | .mr-3 { |
| 771 | margin-right: 0.75rem; |
| 772 | } |
| 773 | |
| 774 | .-mt-8 { |
| 775 | margin-top: -2rem; |
| 776 | } |
| 777 | |
| 778 | .mb-1 { |
| 779 | margin-bottom: 0.25rem; |
| 780 | } |
| 781 | |
| 782 | .mt-12 { |
| 783 | margin-top: 3rem; |
| 784 | } |
| 785 | |
| 786 | .mb-3 { |
| 787 | margin-bottom: 0.75rem; |
| 788 | } |
| 789 | |
| 790 | .ml-5 { |
| 791 | margin-left: 1.25rem; |
| 792 | } |
| 793 | |
| 794 | .block { |
| 795 | display: block; |
| 796 | } |
| 797 | |
| 798 | .inline-block { |
| 799 | display: inline-block; |
| 800 | } |
| 801 | |
| 802 | .inline { |
| 803 | display: inline; |
| 804 | } |
| 805 | |
| 806 | .flex { |
| 807 | display: flex; |
| 808 | } |
| 809 | |
| 810 | .inline-flex { |
| 811 | display: inline-flex; |
| 812 | } |
| 813 | |
| 814 | .table { |
| 815 | display: table; |
| 816 | } |
| 817 | |
| 818 | .grid { |
| 819 | display: grid; |
| 820 | } |
| 821 | |
| 822 | .contents { |
| 823 | display: contents; |
| 824 | } |
| 825 | |
| 826 | .hidden { |
| 827 | display: none; |
| 828 | } |
| 829 | |
| 830 | .h-6 { |
| 831 | height: 1.5rem; |
| 832 | } |
| 833 | |
| 834 | .max-h-56 { |
| 835 | max-height: 14rem; |
| 836 | } |
| 837 | |
| 838 | .w-full { |
| 839 | width: 100%; |
| 840 | } |
| 841 | |
| 842 | .w-6 { |
| 843 | width: 1.5rem; |
| 844 | } |
| 845 | |
| 846 | .w-3\/4 { |
| 847 | width: 75%; |
| 848 | } |
| 849 | |
| 850 | .w-1\/5 { |
| 851 | width: 20%; |
| 852 | } |
| 853 | |
| 854 | .w-20 { |
| 855 | width: 5rem; |
| 856 | } |
| 857 | |
| 858 | .w-64 { |
| 859 | width: 16rem; |
| 860 | } |
| 861 | |
| 862 | .w-1\/2 { |
| 863 | width: 50%; |
| 864 | } |
| 865 | |
| 866 | .max-w-full { |
| 867 | max-width: 100%; |
| 868 | } |
| 869 | |
| 870 | .max-w-xs { |
| 871 | max-width: 20rem; |
| 872 | } |
| 873 | |
| 874 | .max-w-md { |
| 875 | max-width: 28rem; |
| 876 | } |
| 877 | |
| 878 | .flex-grow { |
| 879 | flex-grow: 1; |
| 880 | } |
| 881 | |
| 882 | .cursor-pointer { |
| 883 | cursor: pointer; |
| 884 | } |
| 885 | |
| 886 | .list-disc { |
| 887 | list-style-type: disc; |
| 888 | } |
| 889 | |
| 890 | .auto-cols-auto { |
| 891 | grid-auto-columns: auto; |
| 892 | } |
| 893 | |
| 894 | .grid-flow-col { |
| 895 | grid-auto-flow: column; |
| 896 | } |
| 897 | |
| 898 | .flex-row { |
| 899 | flex-direction: row; |
| 900 | } |
| 901 | |
| 902 | .flex-col { |
| 903 | flex-direction: column; |
| 904 | } |
| 905 | |
| 906 | .flex-wrap { |
| 907 | flex-wrap: wrap; |
| 908 | } |
| 909 | |
| 910 | .items-center { |
| 911 | align-items: center; |
| 912 | } |
| 913 | |
| 914 | .justify-between { |
| 915 | justify-content: space-between; |
| 916 | } |
| 917 | |
| 918 | .gap-5 { |
| 919 | gap: 1.25rem; |
| 920 | } |
| 921 | |
| 922 | .gap-3 { |
| 923 | gap: 0.75rem; |
| 924 | } |
| 925 | |
| 926 | .overflow-auto { |
| 927 | overflow: auto; |
| 928 | } |
| 929 | |
| 930 | .rounded-full { |
| 931 | border-radius: 9999px; |
| 932 | } |
| 933 | |
| 934 | .rounded { |
| 935 | border-radius: 0.25rem; |
| 936 | } |
| 937 | |
| 938 | .rounded-lg { |
| 939 | border-radius: 0.5rem; |
| 940 | } |
| 941 | |
| 942 | .rounded-b { |
| 943 | border-bottom-right-radius: 0.25rem; |
| 944 | border-bottom-left-radius: 0.25rem; |
| 945 | } |
| 946 | |
| 947 | .border { |
| 948 | border-width: 1px; |
| 949 | } |
| 950 | |
| 951 | .border-t-4 { |
| 952 | border-top-width: 4px; |
| 953 | } |
| 954 | |
| 955 | .border-t { |
| 956 | border-top-width: 1px; |
| 957 | } |
| 958 | |
| 959 | .border-b { |
| 960 | border-bottom-width: 1px; |
| 961 | } |
| 962 | |
| 963 | .border-r { |
| 964 | border-right-width: 1px; |
| 965 | } |
| 966 | |
| 967 | .border-sky-200 { |
| 968 | --tw-border-opacity: 1; |
| 969 | border-color: rgb(186 230 253 / var(--tw-border-opacity)); |
| 970 | } |
| 971 | |
| 972 | .border-red-200 { |
| 973 | --tw-border-opacity: 1; |
| 974 | border-color: rgb(254 202 202 / var(--tw-border-opacity)); |
| 975 | } |
| 976 | |
| 977 | .border-green-200 { |
| 978 | --tw-border-opacity: 1; |
| 979 | border-color: rgb(187 247 208 / var(--tw-border-opacity)); |
| 980 | } |
| 981 | |
| 982 | .border-orange-200 { |
| 983 | --tw-border-opacity: 1; |
| 984 | border-color: rgb(254 215 170 / var(--tw-border-opacity)); |
| 985 | } |
| 986 | |
| 987 | .border-indigo-200 { |
| 988 | --tw-border-opacity: 1; |
| 989 | border-color: rgb(199 210 254 / var(--tw-border-opacity)); |
| 990 | } |
| 991 | |
| 992 | .border-rose-200 { |
| 993 | --tw-border-opacity: 1; |
| 994 | border-color: rgb(254 205 211 / var(--tw-border-opacity)); |
| 995 | } |
| 996 | |
| 997 | .border-purple-200 { |
| 998 | --tw-border-opacity: 1; |
| 999 | border-color: rgb(233 213 255 / var(--tw-border-opacity)); |
| 1000 | } |
| 1001 | |
| 1002 | .border-stone-200 { |
| 1003 | --tw-border-opacity: 1; |
| 1004 | border-color: rgb(231 229 228 / var(--tw-border-opacity)); |
| 1005 | } |
| 1006 | |
| 1007 | .border-yellow-200 { |
| 1008 | --tw-border-opacity: 1; |
| 1009 | border-color: rgb(254 240 138 / var(--tw-border-opacity)); |
| 1010 | } |
| 1011 | |
| 1012 | .border-lime-200 { |
| 1013 | --tw-border-opacity: 1; |
| 1014 | border-color: rgb(217 249 157 / var(--tw-border-opacity)); |
| 1015 | } |
| 1016 | |
| 1017 | .border-inherit { |
| 1018 | border-color: inherit; |
| 1019 | } |
| 1020 | |
| 1021 | .border-green-500 { |
| 1022 | --tw-border-opacity: 1; |
| 1023 | border-color: rgb(34 197 94 / var(--tw-border-opacity)); |
| 1024 | } |
| 1025 | |
| 1026 | .border-transparent { |
| 1027 | border-color: transparent; |
| 1028 | } |
| 1029 | |
| 1030 | .bg-white { |
| 1031 | --tw-bg-opacity: 1; |
| 1032 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)); |
| 1033 | } |
| 1034 | |
| 1035 | .bg-blue-500 { |
| 1036 | --tw-bg-opacity: 1; |
| 1037 | background-color: rgb(59 130 246 / var(--tw-bg-opacity)); |
| 1038 | } |
| 1039 | |
| 1040 | .bg-amber-50 { |
| 1041 | --tw-bg-opacity: 1; |
| 1042 | background-color: rgb(255 251 235 / var(--tw-bg-opacity)); |
| 1043 | } |
| 1044 | |
| 1045 | .bg-gray-200 { |
| 1046 | --tw-bg-opacity: 1; |
| 1047 | background-color: rgb(229 231 235 / var(--tw-bg-opacity)); |
| 1048 | } |
| 1049 | |
| 1050 | .bg-green-50 { |
| 1051 | --tw-bg-opacity: 1; |
| 1052 | background-color: rgb(240 253 244 / var(--tw-bg-opacity)); |
| 1053 | } |
| 1054 | |
| 1055 | .bg-gray-100 { |
| 1056 | --tw-bg-opacity: 1; |
| 1057 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 1058 | } |
| 1059 | |
| 1060 | .\!bg-white { |
| 1061 | --tw-bg-opacity: 1 !important; |
| 1062 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important; |
| 1063 | } |
| 1064 | |
| 1065 | .bg-indigo-200 { |
| 1066 | --tw-bg-opacity: 1; |
| 1067 | background-color: rgb(199 210 254 / var(--tw-bg-opacity)); |
| 1068 | } |
| 1069 | |
| 1070 | .bg-indigo-500 { |
| 1071 | --tw-bg-opacity: 1; |
| 1072 | background-color: rgb(99 102 241 / var(--tw-bg-opacity)); |
| 1073 | } |
| 1074 | |
| 1075 | .bg-opacity-75 { |
| 1076 | --tw-bg-opacity: 0.75; |
| 1077 | } |
| 1078 | |
| 1079 | .fill-current { |
| 1080 | fill: currentColor; |
| 1081 | } |
| 1082 | |
| 1083 | .stroke-current { |
| 1084 | stroke: currentColor; |
| 1085 | } |
| 1086 | |
| 1087 | .stroke-2 { |
| 1088 | stroke-width: 2; |
| 1089 | } |
| 1090 | |
| 1091 | .p-8 { |
| 1092 | padding: 2rem; |
| 1093 | } |
| 1094 | |
| 1095 | .p-7 { |
| 1096 | padding: 1.75rem; |
| 1097 | } |
| 1098 | |
| 1099 | .p-5 { |
| 1100 | padding: 1.25rem; |
| 1101 | } |
| 1102 | |
| 1103 | .p-6 { |
| 1104 | padding: 1.5rem; |
| 1105 | } |
| 1106 | |
| 1107 | .p-1 { |
| 1108 | padding: 0.25rem; |
| 1109 | } |
| 1110 | |
| 1111 | .p-2 { |
| 1112 | padding: 0.5rem; |
| 1113 | } |
| 1114 | |
| 1115 | .p-3 { |
| 1116 | padding: 0.75rem; |
| 1117 | } |
| 1118 | |
| 1119 | .p-4 { |
| 1120 | padding: 1rem; |
| 1121 | } |
| 1122 | |
| 1123 | .px-4 { |
| 1124 | padding-left: 1rem; |
| 1125 | padding-right: 1rem; |
| 1126 | } |
| 1127 | |
| 1128 | .py-3 { |
| 1129 | padding-top: 0.75rem; |
| 1130 | padding-bottom: 0.75rem; |
| 1131 | } |
| 1132 | |
| 1133 | .py-1 { |
| 1134 | padding-top: 0.25rem; |
| 1135 | padding-bottom: 0.25rem; |
| 1136 | } |
| 1137 | |
| 1138 | .px-6 { |
| 1139 | padding-left: 1.5rem; |
| 1140 | padding-right: 1.5rem; |
| 1141 | } |
| 1142 | |
| 1143 | .py-4 { |
| 1144 | padding-top: 1rem; |
| 1145 | padding-bottom: 1rem; |
| 1146 | } |
| 1147 | |
| 1148 | .py-8 { |
| 1149 | padding-top: 2rem; |
| 1150 | padding-bottom: 2rem; |
| 1151 | } |
| 1152 | |
| 1153 | .px-3 { |
| 1154 | padding-left: 0.75rem; |
| 1155 | padding-right: 0.75rem; |
| 1156 | } |
| 1157 | |
| 1158 | .px-0\.5 { |
| 1159 | padding-left: 0.125rem; |
| 1160 | padding-right: 0.125rem; |
| 1161 | } |
| 1162 | |
| 1163 | .px-0 { |
| 1164 | padding-left: 0px; |
| 1165 | padding-right: 0px; |
| 1166 | } |
| 1167 | |
| 1168 | .px-1 { |
| 1169 | padding-left: 0.25rem; |
| 1170 | padding-right: 0.25rem; |
| 1171 | } |
| 1172 | |
| 1173 | .pt-6 { |
| 1174 | padding-top: 1.5rem; |
| 1175 | } |
| 1176 | |
| 1177 | .pb-6 { |
| 1178 | padding-bottom: 1.5rem; |
| 1179 | } |
| 1180 | |
| 1181 | .pl-4 { |
| 1182 | padding-left: 1rem; |
| 1183 | } |
| 1184 | |
| 1185 | .pr-10 { |
| 1186 | padding-right: 2.5rem; |
| 1187 | } |
| 1188 | |
| 1189 | .pt-1 { |
| 1190 | padding-top: 0.25rem; |
| 1191 | } |
| 1192 | |
| 1193 | .pb-1 { |
| 1194 | padding-bottom: 0.25rem; |
| 1195 | } |
| 1196 | |
| 1197 | .text-left { |
| 1198 | text-align: left; |
| 1199 | } |
| 1200 | |
| 1201 | .text-center { |
| 1202 | text-align: center; |
| 1203 | } |
| 1204 | |
| 1205 | .text-right { |
| 1206 | text-align: right; |
| 1207 | } |
| 1208 | |
| 1209 | .align-middle { |
| 1210 | vertical-align: middle; |
| 1211 | } |
| 1212 | |
| 1213 | .font-sans { |
| 1214 | 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"; |
| 1215 | } |
| 1216 | |
| 1217 | .text-4xl { |
| 1218 | font-size: 2.25rem; |
| 1219 | line-height: 2.5rem; |
| 1220 | } |
| 1221 | |
| 1222 | .text-base { |
| 1223 | font-size: 1rem; |
| 1224 | line-height: 1.5rem; |
| 1225 | } |
| 1226 | |
| 1227 | .text-sm { |
| 1228 | font-size: 0.875rem; |
| 1229 | line-height: 1.25rem; |
| 1230 | } |
| 1231 | |
| 1232 | .text-lg { |
| 1233 | font-size: 1.125rem; |
| 1234 | line-height: 1.75rem; |
| 1235 | } |
| 1236 | |
| 1237 | .text-xs { |
| 1238 | font-size: 0.75rem; |
| 1239 | line-height: 1rem; |
| 1240 | } |
| 1241 | |
| 1242 | .font-bold { |
| 1243 | font-weight: 700; |
| 1244 | } |
| 1245 | |
| 1246 | .font-medium { |
| 1247 | font-weight: 500; |
| 1248 | } |
| 1249 | |
| 1250 | .font-normal { |
| 1251 | font-weight: 400; |
| 1252 | } |
| 1253 | |
| 1254 | .leading-none { |
| 1255 | line-height: 1; |
| 1256 | } |
| 1257 | |
| 1258 | .leading-loose { |
| 1259 | line-height: 2; |
| 1260 | } |
| 1261 | |
| 1262 | .text-sky-600 { |
| 1263 | --tw-text-opacity: 1; |
| 1264 | color: rgb(2 132 199 / var(--tw-text-opacity)); |
| 1265 | } |
| 1266 | |
| 1267 | .text-red-600 { |
| 1268 | --tw-text-opacity: 1; |
| 1269 | color: rgb(220 38 38 / var(--tw-text-opacity)); |
| 1270 | } |
| 1271 | |
| 1272 | .text-green-600 { |
| 1273 | --tw-text-opacity: 1; |
| 1274 | color: rgb(22 163 74 / var(--tw-text-opacity)); |
| 1275 | } |
| 1276 | |
| 1277 | .text-orange-600 { |
| 1278 | --tw-text-opacity: 1; |
| 1279 | color: rgb(234 88 12 / var(--tw-text-opacity)); |
| 1280 | } |
| 1281 | |
| 1282 | .text-indigo-600 { |
| 1283 | --tw-text-opacity: 1; |
| 1284 | color: rgb(79 70 229 / var(--tw-text-opacity)); |
| 1285 | } |
| 1286 | |
| 1287 | .text-rose-600 { |
| 1288 | --tw-text-opacity: 1; |
| 1289 | color: rgb(225 29 72 / var(--tw-text-opacity)); |
| 1290 | } |
| 1291 | |
| 1292 | .text-purple-600 { |
| 1293 | --tw-text-opacity: 1; |
| 1294 | color: rgb(147 51 234 / var(--tw-text-opacity)); |
| 1295 | } |
| 1296 | |
| 1297 | .text-stone-600 { |
| 1298 | --tw-text-opacity: 1; |
| 1299 | color: rgb(87 83 78 / var(--tw-text-opacity)); |
| 1300 | } |
| 1301 | |
| 1302 | .text-yellow-600 { |
| 1303 | --tw-text-opacity: 1; |
| 1304 | color: rgb(202 138 4 / var(--tw-text-opacity)); |
| 1305 | } |
| 1306 | |
| 1307 | .text-lime-600 { |
| 1308 | --tw-text-opacity: 1; |
| 1309 | color: rgb(101 163 13 / var(--tw-text-opacity)); |
| 1310 | } |
| 1311 | |
| 1312 | .text-white { |
| 1313 | --tw-text-opacity: 1; |
| 1314 | color: rgb(255 255 255 / var(--tw-text-opacity)); |
| 1315 | } |
| 1316 | |
| 1317 | .text-red-300 { |
| 1318 | --tw-text-opacity: 1; |
| 1319 | color: rgb(252 165 165 / var(--tw-text-opacity)); |
| 1320 | } |
| 1321 | |
| 1322 | .text-sky-500 { |
| 1323 | --tw-text-opacity: 1; |
| 1324 | color: rgb(14 165 233 / var(--tw-text-opacity)); |
| 1325 | } |
| 1326 | |
| 1327 | .text-red-500 { |
| 1328 | --tw-text-opacity: 1; |
| 1329 | color: rgb(239 68 68 / var(--tw-text-opacity)); |
| 1330 | } |
| 1331 | |
| 1332 | .text-teal-900 { |
| 1333 | --tw-text-opacity: 1; |
| 1334 | color: rgb(19 78 74 / var(--tw-text-opacity)); |
| 1335 | } |
| 1336 | |
| 1337 | .text-teal-500 { |
| 1338 | --tw-text-opacity: 1; |
| 1339 | color: rgb(20 184 166 / var(--tw-text-opacity)); |
| 1340 | } |
| 1341 | |
| 1342 | .text-gray-500 { |
| 1343 | --tw-text-opacity: 1; |
| 1344 | color: rgb(107 114 128 / var(--tw-text-opacity)); |
| 1345 | } |
| 1346 | |
| 1347 | .text-gray-600 { |
| 1348 | --tw-text-opacity: 1; |
| 1349 | color: rgb(75 85 99 / var(--tw-text-opacity)); |
| 1350 | } |
| 1351 | |
| 1352 | .text-gray-400 { |
| 1353 | --tw-text-opacity: 1; |
| 1354 | color: rgb(156 163 175 / var(--tw-text-opacity)); |
| 1355 | } |
| 1356 | |
| 1357 | .text-gray-800 { |
| 1358 | --tw-text-opacity: 1; |
| 1359 | color: rgb(31 41 55 / var(--tw-text-opacity)); |
| 1360 | } |
| 1361 | |
| 1362 | .text-slate-500 { |
| 1363 | --tw-text-opacity: 1; |
| 1364 | color: rgb(100 116 139 / var(--tw-text-opacity)); |
| 1365 | } |
| 1366 | |
| 1367 | .underline { |
| 1368 | text-decoration-line: underline; |
| 1369 | } |
| 1370 | |
| 1371 | .decoration-sky-600 { |
| 1372 | text-decoration-color: #0284c7; |
| 1373 | } |
| 1374 | |
| 1375 | .decoration-red-600 { |
| 1376 | text-decoration-color: #dc2626; |
| 1377 | } |
| 1378 | |
| 1379 | .decoration-green-600 { |
| 1380 | text-decoration-color: #16a34a; |
| 1381 | } |
| 1382 | |
| 1383 | .decoration-orange-600 { |
| 1384 | text-decoration-color: #ea580c; |
| 1385 | } |
| 1386 | |
| 1387 | .decoration-indigo-600 { |
| 1388 | text-decoration-color: #4f46e5; |
| 1389 | } |
| 1390 | |
| 1391 | .decoration-rose-600 { |
| 1392 | text-decoration-color: #e11d48; |
| 1393 | } |
| 1394 | |
| 1395 | .decoration-purple-600 { |
| 1396 | text-decoration-color: #9333ea; |
| 1397 | } |
| 1398 | |
| 1399 | .decoration-stone-600 { |
| 1400 | text-decoration-color: #57534e; |
| 1401 | } |
| 1402 | |
| 1403 | .decoration-yellow-600 { |
| 1404 | text-decoration-color: #ca8a04; |
| 1405 | } |
| 1406 | |
| 1407 | .decoration-lime-600 { |
| 1408 | text-decoration-color: #65a30d; |
| 1409 | } |
| 1410 | |
| 1411 | .decoration-2 { |
| 1412 | text-decoration-thickness: 2px; |
| 1413 | } |
| 1414 | |
| 1415 | .shadow-md { |
| 1416 | --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); |
| 1417 | --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); |
| 1418 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1419 | } |
| 1420 | |
| 1421 | .shadow { |
| 1422 | --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); |
| 1423 | --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); |
| 1424 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1425 | } |
| 1426 | |
| 1427 | .shadow-lg { |
| 1428 | --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); |
| 1429 | --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); |
| 1430 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1431 | } |
| 1432 | |
| 1433 | .shadow-sm { |
| 1434 | --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); |
| 1435 | --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); |
| 1436 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1437 | } |
| 1438 | |
| 1439 | .drop-shadow-sm { |
| 1440 | --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); |
| 1441 | filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); |
| 1442 | } |
| 1443 | |
| 1444 | .filter { |
| 1445 | filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); |
| 1446 | } |
| 1447 | |
| 1448 | .transition { |
| 1449 | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; |
| 1450 | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; |
| 1451 | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter; |
| 1452 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| 1453 | transition-duration: 150ms; |
| 1454 | } |
| 1455 | |
| 1456 | .duration-300 { |
| 1457 | transition-duration: 300ms; |
| 1458 | } |
| 1459 | |
| 1460 | .duration-100 { |
| 1461 | transition-duration: 100ms; |
| 1462 | } |
| 1463 | |
| 1464 | .ease-in-out { |
| 1465 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| 1466 | } |
| 1467 | |
| 1468 | .hover\:bg-blue-600:hover { |
| 1469 | --tw-bg-opacity: 1; |
| 1470 | background-color: rgb(37 99 235 / var(--tw-bg-opacity)); |
| 1471 | } |
| 1472 | |
| 1473 | .hover\:bg-gray-400:hover { |
| 1474 | --tw-bg-opacity: 1; |
| 1475 | background-color: rgb(156 163 175 / var(--tw-bg-opacity)); |
| 1476 | } |
| 1477 | |
| 1478 | .hover\:bg-gray-100:hover { |
| 1479 | --tw-bg-opacity: 1; |
| 1480 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 1481 | } |
| 1482 | |
| 1483 | .hover\:bg-indigo-200:hover { |
| 1484 | --tw-bg-opacity: 1; |
| 1485 | background-color: rgb(199 210 254 / var(--tw-bg-opacity)); |
| 1486 | } |
| 1487 | |
| 1488 | .hover\:bg-opacity-75:hover { |
| 1489 | --tw-bg-opacity: 0.75; |
| 1490 | } |
| 1491 | |
| 1492 | .hover\:text-white:hover { |
| 1493 | --tw-text-opacity: 1; |
| 1494 | color: rgb(255 255 255 / var(--tw-text-opacity)); |
| 1495 | } |
| 1496 | |
| 1497 | .focus\:outline-none:focus { |
| 1498 | outline: 2px solid transparent; |
| 1499 | outline-offset: 2px; |
| 1500 | } |
| 1501 | |
| 1502 | .focus\:ring:focus { |
| 1503 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); |
| 1504 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); |
| 1505 | box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); |
| 1506 | } |
| 1507 | |
| 1508 | .focus\:ring-blue-600:focus { |
| 1509 | --tw-ring-opacity: 1; |
| 1510 | --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); |
| 1511 | } |
| 1512 | |
| 1513 | .focus\:ring-opacity-50:focus { |
| 1514 | --tw-ring-opacity: 0.5; |
| 1515 | } |
| 1516 | |
| 1517 | @media (min-width: 640px) { |
| 1518 | |
| 1519 | .sm\:rounded { |
| 1520 | border-radius: 0.25rem; |
| 1521 | } |
| 1522 | |
| 1523 | .sm\:border-l { |
| 1524 | border-left-width: 1px; |
| 1525 | } |
| 1526 | |
| 1527 | .sm\:border-r { |
| 1528 | border-right-width: 1px; |
| 1529 | } |
| 1530 | |
| 1531 | .sm\:px-4 { |
| 1532 | padding-left: 1rem; |
| 1533 | padding-right: 1rem; |
| 1534 | } |
| 1535 | } |
| 1536 | |
| 1537 | @media (min-width: 768px) { |
| 1538 | |
| 1539 | .md\:border-r { |
| 1540 | border-right-width: 1px; |
| 1541 | } |
| 1542 | |
| 1543 | .md\:border-b { |
| 1544 | border-bottom-width: 1px; |
| 1545 | } |
| 1546 | |
| 1547 | .md\:pb-6 { |
| 1548 | padding-bottom: 1.5rem; |
| 1549 | } |
| 1550 | } |
| 1551 | |
| 1552 | @media (min-width: 1024px) { |
| 1553 | |
| 1554 | .lg\:flex { |
| 1555 | display: flex; |
| 1556 | } |
| 1557 | |
| 1558 | .lg\:w-1\/2 { |
| 1559 | width: 50%; |
| 1560 | } |
| 1561 | |
| 1562 | .lg\:border-b-0 { |
| 1563 | border-bottom-width: 0px; |
| 1564 | } |
| 1565 | } |