2024-02-09 19:00:26 -08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2024-02-09 19:40:32 -08:00
|
|
|
@layer utilities {
|
|
|
|
.text-balance {
|
|
|
|
text-wrap: balance;
|
|
|
|
}
|
2024-02-09 19:00:26 -08:00
|
|
|
}
|
|
|
|
|
2024-02-09 19:40:32 -08:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
2024-02-09 19:00:26 -08:00
|
|
|
}
|
2024-02-09 23:44:00 -08:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: #2563eb; /* Tailwind's blue-600 */
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2024-02-10 22:54:11 -08:00
|
|
|
.button-default {
|
|
|
|
@apply bg-blue-600 text-slate-100 hover:bg-blue-400 font-semibold rounded py-2 px-4 my-2;
|
|
|
|
}
|
2024-02-11 16:52:59 -08:00
|
|
|
|
|
|
|
.badge-base {
|
|
|
|
@apply px-3 py-1.5 rounded inline-block w-fit mr-2 mt-4 text-slate-50 border-2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-draft {
|
|
|
|
@apply badge-base bg-slate-500 border-slate-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-published {
|
|
|
|
@apply badge-base bg-sky-500 border-sky-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-reviewed {
|
|
|
|
@apply badge-base bg-green-700 border-green-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-under-review {
|
|
|
|
@apply badge-base bg-yellow-500 border-yellow-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-report {
|
|
|
|
@apply badge-base bg-green-500 border-green-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-presentation {
|
|
|
|
@apply badge-base bg-blue-500 border-blue-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-white-paper {
|
|
|
|
@apply badge-base bg-fuchsia-700 border-fuchsia-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-datasheet {
|
|
|
|
@apply badge-base bg-amber-600 border-amber-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-dwm {
|
|
|
|
@apply badge-base bg-rose-950 border-rose-950;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-other {
|
|
|
|
@apply badge-base bg-gray-400 border-gray-400;
|
|
|
|
}
|