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