nonscollectif-org/src/style/base.css

27 lines
447 B
CSS
Raw Normal View History

2022-07-24 22:09:01 +02:00
@layer base {
body {
@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 {
@apply text-2xl underline decoration-amber-900 decoration-4 mt-6 block;
}
2022-07-26 00:10:45 +02:00
h3 {
@apply mt-6 text-amber-900 font-bold;
}
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
}
}