2023-06-14 21:53:27 +02:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
@layer components {
|
|
|
|
.progress-bar {
|
|
|
|
@apply transition-[width] duration-700 bg-primary h-1 rounded-full;
|
|
|
|
}
|
|
|
|
.progress-bar-wrapper {
|
|
|
|
@apply bg-primary-content h-1 rounded-full mt-1;
|
|
|
|
}
|
|
|
|
.system-icon {
|
|
|
|
@apply h-8 w-8 shrink-0 mr-3 opacity-90;
|
|
|
|
}
|
|
|
|
.extra-icon {
|
|
|
|
@apply h-3 w-3 shrink-0 mr-2 text-primary;
|
|
|
|
}
|
|
|
|
.extra-sun-icon {
|
|
|
|
@apply h-4 w-4 shrink-0 -mb-1 mr-2 text-primary;
|
|
|
|
}
|
|
|
|
.extra-info {
|
|
|
|
@apply text-xs truncate text-secondary;
|
|
|
|
}
|
|
|
|
.hover-effect {
|
2024-03-18 16:12:25 +01:00
|
|
|
@apply no-underline md:hover:underline underline-offset-2 decoration-primary text-sm text-slate-700 dark:text-slate-300 hover:text-slate-900 dark:hover:text-slate-50 transition-all ease-linear duration-150;
|
2023-06-14 21:53:27 +02:00
|
|
|
}
|
2024-03-18 16:12:25 +01:00
|
|
|
.heading {
|
|
|
|
@apply text-lg text-secondary select-none truncate underline decoration-primary underline-offset-4;
|
2023-06-14 21:53:27 +02:00
|
|
|
}
|
|
|
|
}
|