Files
website-v2/frontend/styles.css
Greg Newman 3e3c92d033 🐛 fixes text areas
2022-12-12 10:35:12 -05:00

38 lines
456 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;
}
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;
}
}