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
|
|
|
|
|
|
|
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;
|
|
|
|
}
|