2022-07-24 22:09:01 +02:00
|
|
|
@layer base {
|
|
|
|
|
body {
|
2022-07-26 01:03:24 +02:00
|
|
|
@apply text-slate-800 text-lg bg-gray-700 p-4;
|
2022-07-24 22:09:01 +02:00
|
|
|
}
|
|
|
|
|
h1 {
|
|
|
|
|
@apply text-4xl mb-2;
|
|
|
|
|
}
|
|
|
|
|
h2 {
|
2022-07-28 15:04:35 +02:00
|
|
|
@apply text-2xl underline decoration-slate-900 decoration-4 mt-6 block;
|
2022-07-24 22:09:01 +02:00
|
|
|
}
|
2022-07-26 00:10:45 +02:00
|
|
|
h3 {
|
2022-07-28 15:04:35 +02:00
|
|
|
@apply mt-6 text-slate-900 font-bold;
|
2022-07-26 00:10:45 +02:00
|
|
|
}
|
2022-07-24 22:09:01 +02:00
|
|
|
main {
|
|
|
|
|
@apply p-4;
|
|
|
|
|
}
|
|
|
|
|
p {
|
2022-07-25 02:18:15 +02:00
|
|
|
@apply mt-3;
|
|
|
|
|
}
|
|
|
|
|
a {
|
|
|
|
|
@apply underline;
|
|
|
|
|
}
|
|
|
|
|
ul {
|
|
|
|
|
@apply pl-6 list-disc;
|
2022-07-24 22:09:01 +02:00
|
|
|
}
|
2022-08-03 16:36:51 +02:00
|
|
|
blockquote {
|
|
|
|
|
@apply mx-4 py-2 pl-6 pr-4 bg-orange-200 rounded-lg shadow text-gray-800;
|
|
|
|
|
}
|
2022-07-26 01:50:25 +02:00
|
|
|
code {
|
|
|
|
|
@apply whitespace-pre-wrap mt-4 block;
|
|
|
|
|
}
|
2022-07-24 22:09:01 +02:00
|
|
|
}
|