rafa-links/src/styles/base.css

42 lines
682 B
CSS
Raw Normal View History

2022-08-18 04:38:12 +00:00
/* The integration's default injected base.css fileeee */
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
2022-08-19 00:43:54 +00:00
main.blog h1 {
2022-08-18 04:38:12 +00:00
@apply text-4xl font-bold mb-8 text-center uppercase;
}
2022-08-19 00:43:54 +00:00
main.blog h2 {
2022-08-18 04:38:12 +00:00
@apply text-2xl font-bold mb-8 uppercase;
}
2022-08-19 00:43:54 +00:00
main.blog h3 {
2022-08-18 04:38:12 +00:00
@apply text-xl font-bold mb-8;
}
2022-08-19 00:43:54 +00:00
main.blog h4 {
2022-08-18 04:38:12 +00:00
@apply text-sm font-bold mb-8 uppercase;
}
2022-08-19 00:43:54 +00:00
main.blog ol {
2022-08-18 04:38:12 +00:00
@apply list-decimal mb-8 ml-8;
}
2022-08-19 00:43:54 +00:00
main.blog li:not(:last-child) {
2022-08-18 04:38:12 +00:00
@apply mb-4;
}
2022-08-19 00:43:54 +00:00
main.blog a {
2022-08-18 04:38:12 +00:00
@apply text-green-500;
}
2022-08-19 00:43:54 +00:00
main.blog p {
2022-08-18 04:38:12 +00:00
@apply mb-8;
}
2022-08-19 00:43:54 +00:00
main.blog img {
2022-08-18 04:38:12 +00:00
@apply w-full mb-8 aspect-[5/2] object-cover;
}
}