Files
website-v2/frontend/styles.css
Greg Newman 66e613a725 🎨 login styles
2022-12-16 11:40:01 -05:00

49 lines
1019 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;
}
input[type=checkbox] {
@apply mr-3 rounded bg-charcoal border border-slate text-orange;
}
input[type=file] {
@apply block w-full px-3 py-1 text-base font-normal text-orange bg-clip-padding border border-solid border-slate rounded transition ease-in-out my-2;
}
#signup_form input[type=email],
#signup_form input[type=password]{
@apply rounded bg-charcoal text-white border border-slate w-full;
}
}