2024-10-29 20:41:22 +07:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2024-10-30 15:39:01 +07:00
|
|
|
|
2024-10-31 16:25:16 +07:00
|
|
|
.link {
|
|
|
|
@apply text-orange-400 hover:brightness-125;
|
|
|
|
}
|
|
|
|
a.external {
|
|
|
|
@apply link after:content-['_↗'];
|
|
|
|
}
|
|
|
|
|
2024-10-30 15:39:01 +07:00
|
|
|
/* main navbar */
|
|
|
|
#main-navbar div a {
|
|
|
|
@apply py-0.5 md:py-3 px-4 md:px-1 border-s-2 md:border-s-0 md:border-b-2 border-transparent text-gray-500 hover:text-gray-800 focus:outline-none dark:text-neutral-400 dark:hover:text-neutral-200;
|
|
|
|
}
|
|
|
|
#main-navbar div a.active {
|
|
|
|
@apply py-0.5 md:py-3 px-4 md:px-1 border-s-2 md:border-s-0 md:border-b-2 border-orange-400 font-medium text-neutral-200 focus:outline-none;
|
|
|
|
}
|
2024-10-31 16:25:16 +07:00
|
|
|
|
2024-10-31 18:09:02 +07:00
|
|
|
/** home page **/
|
2024-10-31 16:25:16 +07:00
|
|
|
a.btn-link {
|
|
|
|
@apply py-1 px-3 mt-2 inline-flex items-center gap-x-1 text-sm font-medium rounded-lg border border-neutral-700 bg-neutral-800 text-white shadow-sm hover:bg-neutral-700;
|
|
|
|
}
|
2024-10-31 18:09:02 +07:00
|
|
|
/* my nodes copy input button */
|
|
|
|
button.copy-input {
|
|
|
|
@apply px-2 shrink-0 inline-flex justify-center items-center gap-x-2 text-sm font-semibold rounded-e-md border border-transparent bg-orange-600 text-white hover:brightness-125 focus:outline-none focus:bg-orange-700 disabled:opacity-50 disabled:pointer-events-none;
|
|
|
|
}
|
2024-10-31 22:45:26 +07:00
|
|
|
|
|
|
|
/* pagination */
|
|
|
|
nav.pagination button.active {
|
|
|
|
@apply py-1.5 px-2 inline-flex items-center gap-x-2 text-sm font-bold rounded-lg border border-orange-500 bg-orange-500 text-white shadow-sm hover:brightness-125 disabled:opacity-90 disabled:pointer-events-none;
|
|
|
|
}
|
|
|
|
nav.pagination button {
|
|
|
|
@apply py-1.5 px-2 inline-flex items-center gap-x-2 text-sm font-medium rounded-lg bg-neutral-800 border border-neutral-700 text-white shadow-sm hover:brightness-125 disabled:opacity-50 disabled:pointer-events-none;
|
|
|
|
}
|