tailwind.css
1759 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 | :root { |
| 499 | --red: #cc1818; |
| 500 | } |
| 501 | |
| 502 | body { |
| 503 | --tw-bg-opacity: 1; |
| 504 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 505 | --tw-text-opacity: 1; |
| 506 | color: rgb(55 65 81 / var(--tw-text-opacity)); |
| 507 | } |
| 508 | |
| 509 | img { |
| 510 | border-style: initial; |
| 511 | } |
| 512 | |
| 513 | img, svg, video, canvas, audio, iframe, embed, object { |
| 514 | display: initial; |
| 515 | } |
| 516 | |
| 517 | a { |
| 518 | text-decoration: underline; |
| 519 | } |
| 520 | |
| 521 | .tblrow { |
| 522 | padding: 0.75rem; |
| 523 | } |
| 524 | |
| 525 | .hide { |
| 526 | display: none; |
| 527 | } |
| 528 | |
| 529 | .notice, div.error, div.updated { |
| 530 | margin-top: 0.25rem; |
| 531 | margin-bottom: 0.25rem; |
| 532 | } |
| 533 | |
| 534 | .dashicons-nametag { |
| 535 | font-size: 2.25rem; |
| 536 | line-height: 2.5rem; |
| 537 | } |
| 538 | |
| 539 | @media (min-width: 640px) { |
| 540 | .tblrow { |
| 541 | margin-left: 0.25rem; |
| 542 | margin-right: 0.25rem; |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | [x-cloak] { |
| 547 | display: none !important; |
| 548 | } |
| 549 | |
| 550 | .tooltip { |
| 551 | visibility: hidden; |
| 552 | position: absolute; |
| 553 | } |
| 554 | |
| 555 | .has-tooltip:hover .tooltip { |
| 556 | visibility: visible; |
| 557 | z-index: 50; |
| 558 | } |
| 559 | |
| 560 | .absolute { |
| 561 | position: absolute; |
| 562 | } |
| 563 | |
| 564 | .wp-list-table #id { |
| 565 | width: 6%; |
| 566 | } |
| 567 | .wp-list-table #check { |
| 568 | width: 20%; |
| 569 | } |
| 570 | .children { |
| 571 | margin-left: 2rem; |
| 572 | margin-top: 0.25rem; |
| 573 | } |
| 574 | |
| 575 | /* The switch - the box around the slider */ |
| 576 | .switch { |
| 577 | position: relative; |
| 578 | display: inline-block; |
| 579 | width: 60px; |
| 580 | height: 34px; |
| 581 | } |
| 582 | |
| 583 | /* Hide default HTML checkbox */ |
| 584 | .switch input { |
| 585 | opacity: 0; |
| 586 | width: 0; |
| 587 | height: 0; |
| 588 | } |
| 589 | |
| 590 | /* The slider */ |
| 591 | .slider { |
| 592 | position: absolute; |
| 593 | cursor: pointer; |
| 594 | top: 0; |
| 595 | left: 0; |
| 596 | right: 0; |
| 597 | bottom: 0; |
| 598 | background-color: #ccc; |
| 599 | transition: .4s; |
| 600 | } |
| 601 | |
| 602 | .slider:before { |
| 603 | position: absolute; |
| 604 | content: ""; |
| 605 | height: 26px; |
| 606 | width: 26px; |
| 607 | left: 4px; |
| 608 | bottom: 4px; |
| 609 | background-color: white; |
| 610 | transition: .4s; |
| 611 | } |
| 612 | |
| 613 | input:checked + .slider { |
| 614 | background-color: #2196F3; |
| 615 | } |
| 616 | |
| 617 | input:focus + .slider { |
| 618 | box-shadow: 0 0 1px #2196F3; |
| 619 | } |
| 620 | |
| 621 | input:checked + .slider:before { |
| 622 | transform: translateX(26px); |
| 623 | } |
| 624 | |
| 625 | /* Rounded sliders */ |
| 626 | .slider.round { |
| 627 | border-radius: 34px; |
| 628 | } |
| 629 | |
| 630 | .slider.round:before { |
| 631 | border-radius: 50%; |
| 632 | } |
| 633 | |
| 634 | /* remove list style */ |
| 635 | .delop .delop-filter li, .delop .delop-filter label{ |
| 636 | list-style: none; |
| 637 | margin-left: 0px; |
| 638 | } |
| 639 | |
| 640 | #delete-old-posts-redirects .delete-old-posts_page_delete-old-posts-redirects { |
| 641 | position: relative; |
| 642 | } |
| 643 | .delete-old-posts_page_delete-old-posts-redirects .no-vertical-align { |
| 644 | vertical-align: initial; |
| 645 | } |
| 646 | .global-redirect-url-input-wrapper { |
| 647 | position: relative; |
| 648 | display: inline-block; |
| 649 | width: 100%; |
| 650 | } |
| 651 | .global-redirect-url-input-wrapper label { |
| 652 | position: relative; |
| 653 | } |
| 654 | .global-redirect-url-input-wrapper label .after { |
| 655 | display: none; |
| 656 | } |
| 657 | .global-redirect-url-input-wrapper label:hover .after { |
| 658 | display: inline-block; |
| 659 | position: absolute; |
| 660 | right: 15px; |
| 661 | top: 50%; |
| 662 | transform: translateY(-50%); |
| 663 | color: var(--red); |
| 664 | width: 10px; |
| 665 | cursor: pointer; |
| 666 | } |
| 667 | .global-redirect-url-input-wrapper input[type="submit"] { |
| 668 | vertical-align: middle; |
| 669 | } |
| 670 | |
| 671 | .sr-only { |
| 672 | position: absolute; |
| 673 | width: 1px; |
| 674 | height: 1px; |
| 675 | padding: 0; |
| 676 | margin: -1px; |
| 677 | overflow: hidden; |
| 678 | clip: rect(0, 0, 0, 0); |
| 679 | white-space: nowrap; |
| 680 | border-width: 0; |
| 681 | } |
| 682 | |
| 683 | .static { |
| 684 | position: static; |
| 685 | } |
| 686 | |
| 687 | .fixed { |
| 688 | position: fixed; |
| 689 | } |
| 690 | |
| 691 | .absolute { |
| 692 | position: absolute; |
| 693 | } |
| 694 | |
| 695 | .relative { |
| 696 | position: relative; |
| 697 | } |
| 698 | |
| 699 | .right-1 { |
| 700 | right: 0.25rem; |
| 701 | } |
| 702 | |
| 703 | .top-1 { |
| 704 | top: 0.25rem; |
| 705 | } |
| 706 | |
| 707 | .top-0 { |
| 708 | top: 0px; |
| 709 | } |
| 710 | |
| 711 | .right-0 { |
| 712 | right: 0px; |
| 713 | } |
| 714 | |
| 715 | .left-0 { |
| 716 | left: 0px; |
| 717 | } |
| 718 | |
| 719 | .right-3 { |
| 720 | right: 0.75rem; |
| 721 | } |
| 722 | |
| 723 | .m-2 { |
| 724 | margin: 0.5rem; |
| 725 | } |
| 726 | |
| 727 | .m-3\.5 { |
| 728 | margin: 0.875rem; |
| 729 | } |
| 730 | |
| 731 | .m-3 { |
| 732 | margin: 0.75rem; |
| 733 | } |
| 734 | |
| 735 | .m-5 { |
| 736 | margin: 1.25rem; |
| 737 | } |
| 738 | |
| 739 | .mx-4 { |
| 740 | margin-left: 1rem; |
| 741 | margin-right: 1rem; |
| 742 | } |
| 743 | |
| 744 | .my-8 { |
| 745 | margin-top: 2rem; |
| 746 | margin-bottom: 2rem; |
| 747 | } |
| 748 | |
| 749 | .my-2 { |
| 750 | margin-top: 0.5rem; |
| 751 | margin-bottom: 0.5rem; |
| 752 | } |
| 753 | |
| 754 | .mx-auto { |
| 755 | margin-left: auto; |
| 756 | margin-right: auto; |
| 757 | } |
| 758 | |
| 759 | .-mx-1 { |
| 760 | margin-left: -0.25rem; |
| 761 | margin-right: -0.25rem; |
| 762 | } |
| 763 | |
| 764 | .mx-8 { |
| 765 | margin-left: 2rem; |
| 766 | margin-right: 2rem; |
| 767 | } |
| 768 | |
| 769 | .mb-4 { |
| 770 | margin-bottom: 1rem; |
| 771 | } |
| 772 | |
| 773 | .mr-5 { |
| 774 | margin-right: 1.25rem; |
| 775 | } |
| 776 | |
| 777 | .ml-2 { |
| 778 | margin-left: 0.5rem; |
| 779 | } |
| 780 | |
| 781 | .ml-1 { |
| 782 | margin-left: 0.25rem; |
| 783 | } |
| 784 | |
| 785 | .mb-5 { |
| 786 | margin-bottom: 1.25rem; |
| 787 | } |
| 788 | |
| 789 | .mb-2 { |
| 790 | margin-bottom: 0.5rem; |
| 791 | } |
| 792 | |
| 793 | .mt-8 { |
| 794 | margin-top: 2rem; |
| 795 | } |
| 796 | |
| 797 | .ml-4 { |
| 798 | margin-left: 1rem; |
| 799 | } |
| 800 | |
| 801 | .mt-2 { |
| 802 | margin-top: 0.5rem; |
| 803 | } |
| 804 | |
| 805 | .\!ml-2 { |
| 806 | margin-left: 0.5rem !important; |
| 807 | } |
| 808 | |
| 809 | .mt-3 { |
| 810 | margin-top: 0.75rem; |
| 811 | } |
| 812 | |
| 813 | .mr-4 { |
| 814 | margin-right: 1rem; |
| 815 | } |
| 816 | |
| 817 | .mb-6 { |
| 818 | margin-bottom: 1.5rem; |
| 819 | } |
| 820 | |
| 821 | .-mb-px { |
| 822 | margin-bottom: -1px; |
| 823 | } |
| 824 | |
| 825 | .mr-3 { |
| 826 | margin-right: 0.75rem; |
| 827 | } |
| 828 | |
| 829 | .-mt-8 { |
| 830 | margin-top: -2rem; |
| 831 | } |
| 832 | |
| 833 | .mb-1 { |
| 834 | margin-bottom: 0.25rem; |
| 835 | } |
| 836 | |
| 837 | .mt-12 { |
| 838 | margin-top: 3rem; |
| 839 | } |
| 840 | |
| 841 | .mb-3 { |
| 842 | margin-bottom: 0.75rem; |
| 843 | } |
| 844 | |
| 845 | .ml-5 { |
| 846 | margin-left: 1.25rem; |
| 847 | } |
| 848 | |
| 849 | .block { |
| 850 | display: block; |
| 851 | } |
| 852 | |
| 853 | .inline-block { |
| 854 | display: inline-block; |
| 855 | } |
| 856 | |
| 857 | .inline { |
| 858 | display: inline; |
| 859 | } |
| 860 | |
| 861 | .flex { |
| 862 | display: flex; |
| 863 | } |
| 864 | |
| 865 | .inline-flex { |
| 866 | display: inline-flex; |
| 867 | } |
| 868 | |
| 869 | .table { |
| 870 | display: table; |
| 871 | } |
| 872 | |
| 873 | .grid { |
| 874 | display: grid; |
| 875 | } |
| 876 | |
| 877 | .contents { |
| 878 | display: contents; |
| 879 | } |
| 880 | |
| 881 | .hidden { |
| 882 | display: none; |
| 883 | } |
| 884 | |
| 885 | .h-5 { |
| 886 | height: 1.25rem; |
| 887 | } |
| 888 | |
| 889 | .h-6 { |
| 890 | height: 1.5rem; |
| 891 | } |
| 892 | |
| 893 | .max-h-56 { |
| 894 | max-height: 14rem; |
| 895 | } |
| 896 | |
| 897 | .w-full { |
| 898 | width: 100%; |
| 899 | } |
| 900 | |
| 901 | .w-6 { |
| 902 | width: 1.5rem; |
| 903 | } |
| 904 | |
| 905 | .w-9 { |
| 906 | width: 2.25rem; |
| 907 | } |
| 908 | |
| 909 | .w-1\/2 { |
| 910 | width: 50%; |
| 911 | } |
| 912 | |
| 913 | .w-3\/4 { |
| 914 | width: 75%; |
| 915 | } |
| 916 | |
| 917 | .w-1\/5 { |
| 918 | width: 20%; |
| 919 | } |
| 920 | |
| 921 | .w-20 { |
| 922 | width: 5rem; |
| 923 | } |
| 924 | |
| 925 | .w-64 { |
| 926 | width: 16rem; |
| 927 | } |
| 928 | |
| 929 | .max-w-full { |
| 930 | max-width: 100%; |
| 931 | } |
| 932 | |
| 933 | .max-w-\[150px\] { |
| 934 | max-width: 150px; |
| 935 | } |
| 936 | |
| 937 | .max-w-xs { |
| 938 | max-width: 20rem; |
| 939 | } |
| 940 | |
| 941 | .max-w-md { |
| 942 | max-width: 28rem; |
| 943 | } |
| 944 | |
| 945 | .flex-grow { |
| 946 | flex-grow: 1; |
| 947 | } |
| 948 | |
| 949 | .cursor-pointer { |
| 950 | cursor: pointer; |
| 951 | } |
| 952 | |
| 953 | .list-disc { |
| 954 | list-style-type: disc; |
| 955 | } |
| 956 | |
| 957 | .auto-cols-auto { |
| 958 | grid-auto-columns: auto; |
| 959 | } |
| 960 | |
| 961 | .grid-flow-col { |
| 962 | grid-auto-flow: column; |
| 963 | } |
| 964 | |
| 965 | .flex-row { |
| 966 | flex-direction: row; |
| 967 | } |
| 968 | |
| 969 | .flex-col { |
| 970 | flex-direction: column; |
| 971 | } |
| 972 | |
| 973 | .flex-wrap { |
| 974 | flex-wrap: wrap; |
| 975 | } |
| 976 | |
| 977 | .items-center { |
| 978 | align-items: center; |
| 979 | } |
| 980 | |
| 981 | .justify-between { |
| 982 | justify-content: space-between; |
| 983 | } |
| 984 | |
| 985 | .gap-5 { |
| 986 | gap: 1.25rem; |
| 987 | } |
| 988 | |
| 989 | .gap-3 { |
| 990 | gap: 0.75rem; |
| 991 | } |
| 992 | |
| 993 | .overflow-auto { |
| 994 | overflow: auto; |
| 995 | } |
| 996 | |
| 997 | .overflow-y-scroll { |
| 998 | overflow-y: scroll; |
| 999 | } |
| 1000 | |
| 1001 | .rounded-full { |
| 1002 | border-radius: 9999px; |
| 1003 | } |
| 1004 | |
| 1005 | .rounded { |
| 1006 | border-radius: 0.25rem; |
| 1007 | } |
| 1008 | |
| 1009 | .rounded-lg { |
| 1010 | border-radius: 0.5rem; |
| 1011 | } |
| 1012 | |
| 1013 | .rounded-b { |
| 1014 | border-bottom-right-radius: 0.25rem; |
| 1015 | border-bottom-left-radius: 0.25rem; |
| 1016 | } |
| 1017 | |
| 1018 | .border { |
| 1019 | border-width: 1px; |
| 1020 | } |
| 1021 | |
| 1022 | .border-t-4 { |
| 1023 | border-top-width: 4px; |
| 1024 | } |
| 1025 | |
| 1026 | .border-t { |
| 1027 | border-top-width: 1px; |
| 1028 | } |
| 1029 | |
| 1030 | .border-b { |
| 1031 | border-bottom-width: 1px; |
| 1032 | } |
| 1033 | |
| 1034 | .border-r { |
| 1035 | border-right-width: 1px; |
| 1036 | } |
| 1037 | |
| 1038 | .border-sky-200 { |
| 1039 | --tw-border-opacity: 1; |
| 1040 | border-color: rgb(186 230 253 / var(--tw-border-opacity)); |
| 1041 | } |
| 1042 | |
| 1043 | .border-red-200 { |
| 1044 | --tw-border-opacity: 1; |
| 1045 | border-color: rgb(254 202 202 / var(--tw-border-opacity)); |
| 1046 | } |
| 1047 | |
| 1048 | .border-green-200 { |
| 1049 | --tw-border-opacity: 1; |
| 1050 | border-color: rgb(187 247 208 / var(--tw-border-opacity)); |
| 1051 | } |
| 1052 | |
| 1053 | .border-orange-200 { |
| 1054 | --tw-border-opacity: 1; |
| 1055 | border-color: rgb(254 215 170 / var(--tw-border-opacity)); |
| 1056 | } |
| 1057 | |
| 1058 | .border-indigo-200 { |
| 1059 | --tw-border-opacity: 1; |
| 1060 | border-color: rgb(199 210 254 / var(--tw-border-opacity)); |
| 1061 | } |
| 1062 | |
| 1063 | .border-rose-200 { |
| 1064 | --tw-border-opacity: 1; |
| 1065 | border-color: rgb(254 205 211 / var(--tw-border-opacity)); |
| 1066 | } |
| 1067 | |
| 1068 | .border-purple-200 { |
| 1069 | --tw-border-opacity: 1; |
| 1070 | border-color: rgb(233 213 255 / var(--tw-border-opacity)); |
| 1071 | } |
| 1072 | |
| 1073 | .border-stone-200 { |
| 1074 | --tw-border-opacity: 1; |
| 1075 | border-color: rgb(231 229 228 / var(--tw-border-opacity)); |
| 1076 | } |
| 1077 | |
| 1078 | .border-yellow-200 { |
| 1079 | --tw-border-opacity: 1; |
| 1080 | border-color: rgb(254 240 138 / var(--tw-border-opacity)); |
| 1081 | } |
| 1082 | |
| 1083 | .border-lime-200 { |
| 1084 | --tw-border-opacity: 1; |
| 1085 | border-color: rgb(217 249 157 / var(--tw-border-opacity)); |
| 1086 | } |
| 1087 | |
| 1088 | .border-inherit { |
| 1089 | border-color: inherit; |
| 1090 | } |
| 1091 | |
| 1092 | .border-green-500 { |
| 1093 | --tw-border-opacity: 1; |
| 1094 | border-color: rgb(34 197 94 / var(--tw-border-opacity)); |
| 1095 | } |
| 1096 | |
| 1097 | .border-transparent { |
| 1098 | border-color: transparent; |
| 1099 | } |
| 1100 | |
| 1101 | .bg-white { |
| 1102 | --tw-bg-opacity: 1; |
| 1103 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)); |
| 1104 | } |
| 1105 | |
| 1106 | .bg-blue-500 { |
| 1107 | --tw-bg-opacity: 1; |
| 1108 | background-color: rgb(59 130 246 / var(--tw-bg-opacity)); |
| 1109 | } |
| 1110 | |
| 1111 | .bg-gray-200 { |
| 1112 | --tw-bg-opacity: 1; |
| 1113 | background-color: rgb(229 231 235 / var(--tw-bg-opacity)); |
| 1114 | } |
| 1115 | |
| 1116 | .bg-amber-50 { |
| 1117 | --tw-bg-opacity: 1; |
| 1118 | background-color: rgb(255 251 235 / var(--tw-bg-opacity)); |
| 1119 | } |
| 1120 | |
| 1121 | .bg-green-50 { |
| 1122 | --tw-bg-opacity: 1; |
| 1123 | background-color: rgb(240 253 244 / var(--tw-bg-opacity)); |
| 1124 | } |
| 1125 | |
| 1126 | .bg-gray-100 { |
| 1127 | --tw-bg-opacity: 1; |
| 1128 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 1129 | } |
| 1130 | |
| 1131 | .\!bg-white { |
| 1132 | --tw-bg-opacity: 1 !important; |
| 1133 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important; |
| 1134 | } |
| 1135 | |
| 1136 | .bg-indigo-200 { |
| 1137 | --tw-bg-opacity: 1; |
| 1138 | background-color: rgb(199 210 254 / var(--tw-bg-opacity)); |
| 1139 | } |
| 1140 | |
| 1141 | .bg-indigo-500 { |
| 1142 | --tw-bg-opacity: 1; |
| 1143 | background-color: rgb(99 102 241 / var(--tw-bg-opacity)); |
| 1144 | } |
| 1145 | |
| 1146 | .bg-opacity-75 { |
| 1147 | --tw-bg-opacity: 0.75; |
| 1148 | } |
| 1149 | |
| 1150 | .fill-current { |
| 1151 | fill: currentColor; |
| 1152 | } |
| 1153 | |
| 1154 | .stroke-current { |
| 1155 | stroke: currentColor; |
| 1156 | } |
| 1157 | |
| 1158 | .stroke-2 { |
| 1159 | stroke-width: 2; |
| 1160 | } |
| 1161 | |
| 1162 | .p-8 { |
| 1163 | padding: 2rem; |
| 1164 | } |
| 1165 | |
| 1166 | .p-7 { |
| 1167 | padding: 1.75rem; |
| 1168 | } |
| 1169 | |
| 1170 | .p-5 { |
| 1171 | padding: 1.25rem; |
| 1172 | } |
| 1173 | |
| 1174 | .p-6 { |
| 1175 | padding: 1.5rem; |
| 1176 | } |
| 1177 | |
| 1178 | .p-1 { |
| 1179 | padding: 0.25rem; |
| 1180 | } |
| 1181 | |
| 1182 | .p-2 { |
| 1183 | padding: 0.5rem; |
| 1184 | } |
| 1185 | |
| 1186 | .p-3 { |
| 1187 | padding: 0.75rem; |
| 1188 | } |
| 1189 | |
| 1190 | .p-4 { |
| 1191 | padding: 1rem; |
| 1192 | } |
| 1193 | |
| 1194 | .px-4 { |
| 1195 | padding-left: 1rem; |
| 1196 | padding-right: 1rem; |
| 1197 | } |
| 1198 | |
| 1199 | .py-3 { |
| 1200 | padding-top: 0.75rem; |
| 1201 | padding-bottom: 0.75rem; |
| 1202 | } |
| 1203 | |
| 1204 | .py-1 { |
| 1205 | padding-top: 0.25rem; |
| 1206 | padding-bottom: 0.25rem; |
| 1207 | } |
| 1208 | |
| 1209 | .px-6 { |
| 1210 | padding-left: 1.5rem; |
| 1211 | padding-right: 1.5rem; |
| 1212 | } |
| 1213 | |
| 1214 | .py-4 { |
| 1215 | padding-top: 1rem; |
| 1216 | padding-bottom: 1rem; |
| 1217 | } |
| 1218 | |
| 1219 | .py-8 { |
| 1220 | padding-top: 2rem; |
| 1221 | padding-bottom: 2rem; |
| 1222 | } |
| 1223 | |
| 1224 | .px-3 { |
| 1225 | padding-left: 0.75rem; |
| 1226 | padding-right: 0.75rem; |
| 1227 | } |
| 1228 | |
| 1229 | .px-0\.5 { |
| 1230 | padding-left: 0.125rem; |
| 1231 | padding-right: 0.125rem; |
| 1232 | } |
| 1233 | |
| 1234 | .px-0 { |
| 1235 | padding-left: 0px; |
| 1236 | padding-right: 0px; |
| 1237 | } |
| 1238 | |
| 1239 | .px-1 { |
| 1240 | padding-left: 0.25rem; |
| 1241 | padding-right: 0.25rem; |
| 1242 | } |
| 1243 | |
| 1244 | .pt-6 { |
| 1245 | padding-top: 1.5rem; |
| 1246 | } |
| 1247 | |
| 1248 | .pb-6 { |
| 1249 | padding-bottom: 1.5rem; |
| 1250 | } |
| 1251 | |
| 1252 | .pl-4 { |
| 1253 | padding-left: 1rem; |
| 1254 | } |
| 1255 | |
| 1256 | .pr-10 { |
| 1257 | padding-right: 2.5rem; |
| 1258 | } |
| 1259 | |
| 1260 | .pt-1 { |
| 1261 | padding-top: 0.25rem; |
| 1262 | } |
| 1263 | |
| 1264 | .pb-1 { |
| 1265 | padding-bottom: 0.25rem; |
| 1266 | } |
| 1267 | |
| 1268 | .text-left { |
| 1269 | text-align: left; |
| 1270 | } |
| 1271 | |
| 1272 | .text-center { |
| 1273 | text-align: center; |
| 1274 | } |
| 1275 | |
| 1276 | .text-right { |
| 1277 | text-align: right; |
| 1278 | } |
| 1279 | |
| 1280 | .align-middle { |
| 1281 | vertical-align: middle; |
| 1282 | } |
| 1283 | |
| 1284 | .font-sans { |
| 1285 | 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"; |
| 1286 | } |
| 1287 | |
| 1288 | .text-4xl { |
| 1289 | font-size: 2.25rem; |
| 1290 | line-height: 2.5rem; |
| 1291 | } |
| 1292 | |
| 1293 | .text-base { |
| 1294 | font-size: 1rem; |
| 1295 | line-height: 1.5rem; |
| 1296 | } |
| 1297 | |
| 1298 | .text-sm { |
| 1299 | font-size: 0.875rem; |
| 1300 | line-height: 1.25rem; |
| 1301 | } |
| 1302 | |
| 1303 | .text-lg { |
| 1304 | font-size: 1.125rem; |
| 1305 | line-height: 1.75rem; |
| 1306 | } |
| 1307 | |
| 1308 | .text-xs { |
| 1309 | font-size: 0.75rem; |
| 1310 | line-height: 1rem; |
| 1311 | } |
| 1312 | |
| 1313 | .font-bold { |
| 1314 | font-weight: 700; |
| 1315 | } |
| 1316 | |
| 1317 | .font-medium { |
| 1318 | font-weight: 500; |
| 1319 | } |
| 1320 | |
| 1321 | .font-normal { |
| 1322 | font-weight: 400; |
| 1323 | } |
| 1324 | |
| 1325 | .leading-6 { |
| 1326 | line-height: 1.5rem; |
| 1327 | } |
| 1328 | |
| 1329 | .leading-none { |
| 1330 | line-height: 1; |
| 1331 | } |
| 1332 | |
| 1333 | .leading-loose { |
| 1334 | line-height: 2; |
| 1335 | } |
| 1336 | |
| 1337 | .text-sky-600 { |
| 1338 | --tw-text-opacity: 1; |
| 1339 | color: rgb(2 132 199 / var(--tw-text-opacity)); |
| 1340 | } |
| 1341 | |
| 1342 | .text-red-600 { |
| 1343 | --tw-text-opacity: 1; |
| 1344 | color: rgb(220 38 38 / var(--tw-text-opacity)); |
| 1345 | } |
| 1346 | |
| 1347 | .text-green-600 { |
| 1348 | --tw-text-opacity: 1; |
| 1349 | color: rgb(22 163 74 / var(--tw-text-opacity)); |
| 1350 | } |
| 1351 | |
| 1352 | .text-orange-600 { |
| 1353 | --tw-text-opacity: 1; |
| 1354 | color: rgb(234 88 12 / var(--tw-text-opacity)); |
| 1355 | } |
| 1356 | |
| 1357 | .text-indigo-600 { |
| 1358 | --tw-text-opacity: 1; |
| 1359 | color: rgb(79 70 229 / var(--tw-text-opacity)); |
| 1360 | } |
| 1361 | |
| 1362 | .text-rose-600 { |
| 1363 | --tw-text-opacity: 1; |
| 1364 | color: rgb(225 29 72 / var(--tw-text-opacity)); |
| 1365 | } |
| 1366 | |
| 1367 | .text-purple-600 { |
| 1368 | --tw-text-opacity: 1; |
| 1369 | color: rgb(147 51 234 / var(--tw-text-opacity)); |
| 1370 | } |
| 1371 | |
| 1372 | .text-stone-600 { |
| 1373 | --tw-text-opacity: 1; |
| 1374 | color: rgb(87 83 78 / var(--tw-text-opacity)); |
| 1375 | } |
| 1376 | |
| 1377 | .text-yellow-600 { |
| 1378 | --tw-text-opacity: 1; |
| 1379 | color: rgb(202 138 4 / var(--tw-text-opacity)); |
| 1380 | } |
| 1381 | |
| 1382 | .text-lime-600 { |
| 1383 | --tw-text-opacity: 1; |
| 1384 | color: rgb(101 163 13 / var(--tw-text-opacity)); |
| 1385 | } |
| 1386 | |
| 1387 | .text-white { |
| 1388 | --tw-text-opacity: 1; |
| 1389 | color: rgb(255 255 255 / var(--tw-text-opacity)); |
| 1390 | } |
| 1391 | |
| 1392 | .text-gray-900 { |
| 1393 | --tw-text-opacity: 1; |
| 1394 | color: rgb(17 24 39 / var(--tw-text-opacity)); |
| 1395 | } |
| 1396 | |
| 1397 | .text-red-300 { |
| 1398 | --tw-text-opacity: 1; |
| 1399 | color: rgb(252 165 165 / var(--tw-text-opacity)); |
| 1400 | } |
| 1401 | |
| 1402 | .text-sky-500 { |
| 1403 | --tw-text-opacity: 1; |
| 1404 | color: rgb(14 165 233 / var(--tw-text-opacity)); |
| 1405 | } |
| 1406 | |
| 1407 | .text-red-500 { |
| 1408 | --tw-text-opacity: 1; |
| 1409 | color: rgb(239 68 68 / var(--tw-text-opacity)); |
| 1410 | } |
| 1411 | |
| 1412 | .text-teal-900 { |
| 1413 | --tw-text-opacity: 1; |
| 1414 | color: rgb(19 78 74 / var(--tw-text-opacity)); |
| 1415 | } |
| 1416 | |
| 1417 | .text-teal-500 { |
| 1418 | --tw-text-opacity: 1; |
| 1419 | color: rgb(20 184 166 / var(--tw-text-opacity)); |
| 1420 | } |
| 1421 | |
| 1422 | .text-gray-500 { |
| 1423 | --tw-text-opacity: 1; |
| 1424 | color: rgb(107 114 128 / var(--tw-text-opacity)); |
| 1425 | } |
| 1426 | |
| 1427 | .text-gray-600 { |
| 1428 | --tw-text-opacity: 1; |
| 1429 | color: rgb(75 85 99 / var(--tw-text-opacity)); |
| 1430 | } |
| 1431 | |
| 1432 | .text-gray-400 { |
| 1433 | --tw-text-opacity: 1; |
| 1434 | color: rgb(156 163 175 / var(--tw-text-opacity)); |
| 1435 | } |
| 1436 | |
| 1437 | .text-gray-800 { |
| 1438 | --tw-text-opacity: 1; |
| 1439 | color: rgb(31 41 55 / var(--tw-text-opacity)); |
| 1440 | } |
| 1441 | |
| 1442 | .text-slate-500 { |
| 1443 | --tw-text-opacity: 1; |
| 1444 | color: rgb(100 116 139 / var(--tw-text-opacity)); |
| 1445 | } |
| 1446 | |
| 1447 | .underline { |
| 1448 | text-decoration-line: underline; |
| 1449 | } |
| 1450 | |
| 1451 | .decoration-sky-600 { |
| 1452 | text-decoration-color: #0284c7; |
| 1453 | } |
| 1454 | |
| 1455 | .decoration-red-600 { |
| 1456 | text-decoration-color: #dc2626; |
| 1457 | } |
| 1458 | |
| 1459 | .decoration-green-600 { |
| 1460 | text-decoration-color: #16a34a; |
| 1461 | } |
| 1462 | |
| 1463 | .decoration-orange-600 { |
| 1464 | text-decoration-color: #ea580c; |
| 1465 | } |
| 1466 | |
| 1467 | .decoration-indigo-600 { |
| 1468 | text-decoration-color: #4f46e5; |
| 1469 | } |
| 1470 | |
| 1471 | .decoration-rose-600 { |
| 1472 | text-decoration-color: #e11d48; |
| 1473 | } |
| 1474 | |
| 1475 | .decoration-purple-600 { |
| 1476 | text-decoration-color: #9333ea; |
| 1477 | } |
| 1478 | |
| 1479 | .decoration-stone-600 { |
| 1480 | text-decoration-color: #57534e; |
| 1481 | } |
| 1482 | |
| 1483 | .decoration-yellow-600 { |
| 1484 | text-decoration-color: #ca8a04; |
| 1485 | } |
| 1486 | |
| 1487 | .decoration-lime-600 { |
| 1488 | text-decoration-color: #65a30d; |
| 1489 | } |
| 1490 | |
| 1491 | .decoration-2 { |
| 1492 | text-decoration-thickness: 2px; |
| 1493 | } |
| 1494 | |
| 1495 | .shadow-md { |
| 1496 | --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); |
| 1497 | --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); |
| 1498 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1499 | } |
| 1500 | |
| 1501 | .shadow { |
| 1502 | --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); |
| 1503 | --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); |
| 1504 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1505 | } |
| 1506 | |
| 1507 | .shadow-lg { |
| 1508 | --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); |
| 1509 | --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); |
| 1510 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1511 | } |
| 1512 | |
| 1513 | .shadow-sm { |
| 1514 | --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); |
| 1515 | --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); |
| 1516 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 1517 | } |
| 1518 | |
| 1519 | .drop-shadow-sm { |
| 1520 | --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); |
| 1521 | 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); |
| 1522 | } |
| 1523 | |
| 1524 | .filter { |
| 1525 | 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); |
| 1526 | } |
| 1527 | |
| 1528 | .transition { |
| 1529 | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; |
| 1530 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| 1531 | transition-duration: 150ms; |
| 1532 | } |
| 1533 | |
| 1534 | .duration-300 { |
| 1535 | transition-duration: 300ms; |
| 1536 | } |
| 1537 | |
| 1538 | .duration-100 { |
| 1539 | transition-duration: 100ms; |
| 1540 | } |
| 1541 | |
| 1542 | .ease-in-out { |
| 1543 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| 1544 | } |
| 1545 | |
| 1546 | .after\:absolute::after { |
| 1547 | content: var(--tw-content); |
| 1548 | position: absolute; |
| 1549 | } |
| 1550 | |
| 1551 | .after\:top-\[2px\]::after { |
| 1552 | content: var(--tw-content); |
| 1553 | top: 2px; |
| 1554 | } |
| 1555 | |
| 1556 | .after\:h-4::after { |
| 1557 | content: var(--tw-content); |
| 1558 | height: 1rem; |
| 1559 | } |
| 1560 | |
| 1561 | .after\:w-4::after { |
| 1562 | content: var(--tw-content); |
| 1563 | width: 1rem; |
| 1564 | } |
| 1565 | |
| 1566 | .after\:rounded-full::after { |
| 1567 | content: var(--tw-content); |
| 1568 | border-radius: 9999px; |
| 1569 | } |
| 1570 | |
| 1571 | .after\:border::after { |
| 1572 | content: var(--tw-content); |
| 1573 | border-width: 1px; |
| 1574 | } |
| 1575 | |
| 1576 | .after\:border-gray-300::after { |
| 1577 | content: var(--tw-content); |
| 1578 | --tw-border-opacity: 1; |
| 1579 | border-color: rgb(209 213 219 / var(--tw-border-opacity)); |
| 1580 | } |
| 1581 | |
| 1582 | .after\:bg-white::after { |
| 1583 | content: var(--tw-content); |
| 1584 | --tw-bg-opacity: 1; |
| 1585 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)); |
| 1586 | } |
| 1587 | |
| 1588 | .after\:transition-all::after { |
| 1589 | content: var(--tw-content); |
| 1590 | transition-property: all; |
| 1591 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| 1592 | transition-duration: 150ms; |
| 1593 | } |
| 1594 | |
| 1595 | .after\:content-\[\'\'\]::after { |
| 1596 | --tw-content: ''; |
| 1597 | content: var(--tw-content); |
| 1598 | } |
| 1599 | |
| 1600 | .hover\:bg-blue-600:hover { |
| 1601 | --tw-bg-opacity: 1; |
| 1602 | background-color: rgb(37 99 235 / var(--tw-bg-opacity)); |
| 1603 | } |
| 1604 | |
| 1605 | .hover\:bg-gray-400:hover { |
| 1606 | --tw-bg-opacity: 1; |
| 1607 | background-color: rgb(156 163 175 / var(--tw-bg-opacity)); |
| 1608 | } |
| 1609 | |
| 1610 | .hover\:bg-gray-100:hover { |
| 1611 | --tw-bg-opacity: 1; |
| 1612 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 1613 | } |
| 1614 | |
| 1615 | .hover\:bg-indigo-200:hover { |
| 1616 | --tw-bg-opacity: 1; |
| 1617 | background-color: rgb(199 210 254 / var(--tw-bg-opacity)); |
| 1618 | } |
| 1619 | |
| 1620 | .hover\:bg-opacity-75:hover { |
| 1621 | --tw-bg-opacity: 0.75; |
| 1622 | } |
| 1623 | |
| 1624 | .hover\:text-white:hover { |
| 1625 | --tw-text-opacity: 1; |
| 1626 | color: rgb(255 255 255 / var(--tw-text-opacity)); |
| 1627 | } |
| 1628 | |
| 1629 | .focus\:outline-none:focus { |
| 1630 | outline: 2px solid transparent; |
| 1631 | outline-offset: 2px; |
| 1632 | } |
| 1633 | |
| 1634 | .focus\:ring:focus { |
| 1635 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); |
| 1636 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); |
| 1637 | box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); |
| 1638 | } |
| 1639 | |
| 1640 | .focus\:ring-blue-600:focus { |
| 1641 | --tw-ring-opacity: 1; |
| 1642 | --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); |
| 1643 | } |
| 1644 | |
| 1645 | .focus\:ring-opacity-50:focus { |
| 1646 | --tw-ring-opacity: 0.5; |
| 1647 | } |
| 1648 | |
| 1649 | .peer:checked ~ .peer-checked\:bg-blue-600 { |
| 1650 | --tw-bg-opacity: 1; |
| 1651 | background-color: rgb(37 99 235 / var(--tw-bg-opacity)); |
| 1652 | } |
| 1653 | |
| 1654 | .peer:checked ~ .peer-checked\:after\:translate-x-full::after { |
| 1655 | content: var(--tw-content); |
| 1656 | --tw-translate-x: 100%; |
| 1657 | transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); |
| 1658 | } |
| 1659 | |
| 1660 | .peer:checked ~ .peer-checked\:after\:border-white::after { |
| 1661 | content: var(--tw-content); |
| 1662 | --tw-border-opacity: 1; |
| 1663 | border-color: rgb(255 255 255 / var(--tw-border-opacity)); |
| 1664 | } |
| 1665 | |
| 1666 | .peer:focus ~ .peer-focus\:outline-none { |
| 1667 | outline: 2px solid transparent; |
| 1668 | outline-offset: 2px; |
| 1669 | } |
| 1670 | |
| 1671 | .peer:focus ~ .peer-focus\:ring-0 { |
| 1672 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); |
| 1673 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); |
| 1674 | box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); |
| 1675 | } |
| 1676 | |
| 1677 | .peer:focus ~ .peer-focus\:ring-blue-300 { |
| 1678 | --tw-ring-opacity: 1; |
| 1679 | --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity)); |
| 1680 | } |
| 1681 | |
| 1682 | [dir="rtl"] .peer:checked ~ .rtl\:peer-checked\:after\:-translate-x-full::after { |
| 1683 | content: var(--tw-content); |
| 1684 | --tw-translate-x: -100%; |
| 1685 | transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); |
| 1686 | } |
| 1687 | |
| 1688 | @media (prefers-color-scheme: dark) { |
| 1689 | |
| 1690 | .dark\:border-gray-600 { |
| 1691 | --tw-border-opacity: 1; |
| 1692 | border-color: rgb(75 85 99 / var(--tw-border-opacity)); |
| 1693 | } |
| 1694 | |
| 1695 | .dark\:bg-gray-700 { |
| 1696 | --tw-bg-opacity: 1; |
| 1697 | background-color: rgb(55 65 81 / var(--tw-bg-opacity)); |
| 1698 | } |
| 1699 | |
| 1700 | .dark\:text-gray-300 { |
| 1701 | --tw-text-opacity: 1; |
| 1702 | color: rgb(209 213 219 / var(--tw-text-opacity)); |
| 1703 | } |
| 1704 | |
| 1705 | .peer:focus ~ .dark\:peer-focus\:ring-blue-800 { |
| 1706 | --tw-ring-opacity: 1; |
| 1707 | --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity)); |
| 1708 | } |
| 1709 | } |
| 1710 | |
| 1711 | @media (min-width: 640px) { |
| 1712 | |
| 1713 | .sm\:rounded { |
| 1714 | border-radius: 0.25rem; |
| 1715 | } |
| 1716 | |
| 1717 | .sm\:border-l { |
| 1718 | border-left-width: 1px; |
| 1719 | } |
| 1720 | |
| 1721 | .sm\:border-r { |
| 1722 | border-right-width: 1px; |
| 1723 | } |
| 1724 | |
| 1725 | .sm\:px-4 { |
| 1726 | padding-left: 1rem; |
| 1727 | padding-right: 1rem; |
| 1728 | } |
| 1729 | } |
| 1730 | |
| 1731 | @media (min-width: 768px) { |
| 1732 | |
| 1733 | .md\:border-r { |
| 1734 | border-right-width: 1px; |
| 1735 | } |
| 1736 | |
| 1737 | .md\:border-b { |
| 1738 | border-bottom-width: 1px; |
| 1739 | } |
| 1740 | |
| 1741 | .md\:pb-6 { |
| 1742 | padding-bottom: 1.5rem; |
| 1743 | } |
| 1744 | } |
| 1745 | |
| 1746 | @media (min-width: 1024px) { |
| 1747 | |
| 1748 | .lg\:flex { |
| 1749 | display: flex; |
| 1750 | } |
| 1751 | |
| 1752 | .lg\:w-1\/2 { |
| 1753 | width: 50%; |
| 1754 | } |
| 1755 | |
| 1756 | .lg\:border-b-0 { |
| 1757 | border-bottom-width: 0px; |
| 1758 | } |
| 1759 | } |