mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
31 lines
318 B
CSS
31 lines
318 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
color: white;
|
|
}
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-6xl;
|
|
@apply mb-3;
|
|
}
|
|
h2 {
|
|
@apply text-4xl;
|
|
@apply my-5;
|
|
}
|
|
h3 {
|
|
@apply text-2xl;
|
|
}
|
|
h4 {
|
|
@apply text-xl;
|
|
}
|
|
p {
|
|
@apply py-5;
|
|
}
|
|
pre {
|
|
@apply p-6;
|
|
}
|
|
}
|