doordesk-js/doordesk/style/tailwind.css

44 lines
697 B
CSS
Raw Normal View History

2023-07-02 04:52:35 -04:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply bg-gradient-to-br from-zinc-900 to-zinc-950;
@apply w-screen h-screen;
2023-07-10 20:59:52 -04:00
@apply text-orange-50 antialiased font-mono tracking-tighter;
}
a[aria-current="page"] {
border-bottom: 2px solid #de0002;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
2023-07-02 04:52:35 -04:00
}
/* for innerHTML articles */
article p {
@apply mt-5 indent-4;
}
article h3 {
@apply mt-8;
}
article h3 {
@apply text-2xl text-orange-600;
}
article a {
@apply text-orange-300 hover:underline;
}
article ul, article ol {
@apply mt-5 list-inside;
}
article ul {
@apply list-disc;
}
article ol {
@apply list-decimal;
}