doordesk-js/frontend/src/root.css

33 lines
411 B
CSS
Raw Normal View History

2023-06-16 00:05:37 -04:00
@tailwind base;
@tailwind components;
2023-06-17 00:12:25 -04:00
@tailwind utilities;
/* for innerHTML articles */
2023-06-17 04:15:28 -04:00
article p {
2023-06-19 22:07:12 -04:00
@apply mt-5 indent-4;
2023-06-17 00:12:25 -04:00
}
article h3 {
2023-06-17 04:15:28 -04:00
@apply mt-8;
}
article h3 {
@apply text-2xl text-orange-600;
}
article a {
2023-06-19 22:07:12 -04:00
@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;
2023-06-17 00:12:25 -04:00
}