mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
39 lines
597 B
CSS
39 lines
597 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
|
|
|
|
@layer base {
|
|
body {
|
|
color: white;
|
|
@apply font-cairo;
|
|
}
|
|
h1 {
|
|
@apply text-6xl;
|
|
@apply mb-3;
|
|
}
|
|
h2 {
|
|
@apply text-4xl;
|
|
@apply my-5;
|
|
}
|
|
h3 {
|
|
@apply text-2xl;
|
|
}
|
|
h4 {
|
|
@apply text-xl;
|
|
}
|
|
h5 {
|
|
@apply text-base
|
|
}
|
|
p {
|
|
@apply py-5;
|
|
}
|
|
pre {
|
|
@apply p-6;
|
|
}
|
|
/* Forum style overrides */
|
|
textarea {
|
|
@apply w-full rounded bg-charcoal border border-slate;
|
|
}
|
|
}
|