michalvankodev-site/axum_server/styles/input.css

44 lines
631 B
CSS
Raw Normal View History

2024-02-22 20:13:23 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-03-02 13:12:55 +01:00
2024-04-30 23:10:12 +02:00
a {
@apply text-pink-600 underline underline-offset-2;
&:hover {
@apply transition text-blue-400;
}
}
2024-03-02 22:56:06 +01:00
.article-body {
h1 {
@apply px-4 text-2xl text-blue-900 my-2;
}
h2 {
@apply px-4 text-xl text-blue-900 my-2;
}
p {
@apply px-4 my-2;
}
pre {
@apply p-4 my-1 overflow-auto text-sm;
}
figure {
@apply m-4;
img {
@apply rounded shadow-md;
2024-03-02 13:12:55 +01:00
}
}
2024-03-02 22:56:06 +01:00
figcaption {
@apply mt-2 text-center text-sm italic text-blue-800;
}
table {
@apply m-2 overflow-auto text-sm;
}
}
.video-embed {
@apply m-4;
2024-03-02 13:12:55 +01:00
}