2025-01-29 13:27:10 -05:00
|
|
|
@import 'tailwindcss';
|
|
|
|
|
|
|
|
@plugin '@tailwindcss/forms';
|
|
|
|
@plugin '@tailwindcss/typography';
|
|
|
|
|
|
|
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
|
|
|
@source '../../vendor/laravel/jetstream/**/*.blade.php';
|
|
|
|
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
--font-sans: Figtree, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
The default border color has changed to `currentColor` in Tailwind CSS v4,
|
|
|
|
so we've added these compatibility styles to make sure everything still
|
|
|
|
looks the same as it did with Tailwind CSS v3.
|
|
|
|
|
|
|
|
If we ever want to remove these styles, we need to add an explicit border
|
|
|
|
color utility to any element that depends on these defaults.
|
|
|
|
*/
|
|
|
|
@layer base {
|
|
|
|
*,
|
|
|
|
::after,
|
|
|
|
::before,
|
|
|
|
::backdrop,
|
|
|
|
::file-selector-button {
|
|
|
|
border-color: var(--color-gray-200, currentColor);
|
|
|
|
}
|
|
|
|
}
|
2024-05-13 18:55:34 -04:00
|
|
|
|
|
|
|
[x-cloak] {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-05-17 17:11:54 -04:00
|
|
|
|
2025-01-29 13:27:10 -05:00
|
|
|
button {
|
|
|
|
@apply cursor-pointer;
|
|
|
|
}
|
|
|
|
|
2024-08-15 17:57:35 -04:00
|
|
|
main a:not(.mod-list-component):not(.tab):not([role="menuitem"]) {
|
2024-06-01 23:04:06 -04:00
|
|
|
@apply underline text-gray-800 hover:text-black dark:text-gray-200 dark:hover:text-white;
|
|
|
|
}
|
|
|
|
|
2024-05-24 17:06:02 -04:00
|
|
|
.badge-version {
|
|
|
|
@apply bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-100;
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
@apply bg-red-100 dark:bg-red-700 text-red-700 dark:text-red-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.green {
|
|
|
|
@apply bg-green-100 dark:bg-green-700 text-green-700 dark:text-green-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.emerald {
|
|
|
|
@apply bg-emerald-100 dark:bg-emerald-700 text-emerald-700 dark:text-emerald-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.lime {
|
|
|
|
@apply bg-lime-100 dark:bg-lime-700 text-lime-700 dark:text-lime-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.yellow {
|
|
|
|
@apply bg-yellow-100 dark:bg-yellow-700 text-yellow-700 dark:text-yellow-100;
|
|
|
|
}
|
2024-05-17 17:11:54 -04:00
|
|
|
}
|
2024-06-01 23:04:06 -04:00
|
|
|
|
|
|
|
.user-markdown {
|
|
|
|
b, strong {
|
|
|
|
@apply font-bold;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
i, em {
|
|
|
|
@apply italic
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
@apply font-bold mt-4 mb-2 text-black dark:text-white;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h1 {
|
|
|
|
@apply text-2xl;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h2 {
|
|
|
|
@apply text-xl;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h3 {
|
|
|
|
@apply text-lg;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h4 {
|
|
|
|
@apply text-base;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h5 {
|
|
|
|
@apply text-sm;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
h6 {
|
|
|
|
@apply text-xs;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
p {
|
|
|
|
@apply my-2 text-gray-800 dark:text-gray-300;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
ul {
|
|
|
|
@apply list-disc mb-2;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
ol {
|
|
|
|
@apply list-decimal mb-2;
|
|
|
|
}
|
2024-06-05 16:31:29 -04:00
|
|
|
|
2024-06-01 23:04:06 -04:00
|
|
|
li {
|
|
|
|
@apply my-2 ml-7 text-gray-800 dark:text-gray-300;
|
|
|
|
}
|
|
|
|
}
|
2024-08-16 00:11:47 -04:00
|
|
|
|
|
|
|
.ribbon {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ribbon {
|
|
|
|
--f: .5em;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding-inline: 1lh;
|
|
|
|
padding-bottom: var(--f);
|
|
|
|
border-image: conic-gradient(#0008 0 0) 51%/var(--f);
|
|
|
|
clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
|
|
|
|
transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
|
|
|
|
transform-origin: 100% 100%;
|
|
|
|
background-color: #0e7490;
|
|
|
|
}
|
2024-09-17 16:47:43 -04:00
|
|
|
|
|
|
|
.rainbow {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
|
|
|
|
background-size: 1800% 1800%;
|
|
|
|
-webkit-animation: rainbow 18s ease infinite;
|
|
|
|
-o-animation: rainbow 18s ease infinite;
|
|
|
|
animation: rainbow 18s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes rainbow {
|
|
|
|
0% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 100% 19%
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes rainbow {
|
|
|
|
0% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 100% 19%
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-o-keyframes rainbow {
|
|
|
|
0% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 100% 19%
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rainbow {
|
|
|
|
0% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 100% 19%
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 82%
|
|
|
|
}
|
|
|
|
}
|