mirror of
https://github.com/MaggieAppleton/digital-gardeners.git
synced 2024-11-21 17:09:45 +01:00
36 lines
743 B
CSS
36 lines
743 B
CSS
/* @import url(/fonts/stylesheet.css); */
|
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,600;1,400&family=Source+Serif+Pro:wght@300;400&display=swap");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-3xl;
|
|
@apply leading-none;
|
|
}
|
|
h2 {
|
|
@apply text-2xl;
|
|
@apply leading-none;
|
|
@apply text-lightBlack;
|
|
}
|
|
h3 {
|
|
@apply text-xl;
|
|
@apply leading-none;
|
|
}
|
|
p {
|
|
@apply text-base;
|
|
}
|
|
}
|
|
|
|
html {
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
min-height: 100vh;
|
|
@apply bg-offWhite;
|
|
@apply text-black;
|
|
}
|
|
|
|
/* https://tailwindcss.com/docs/adding-base-styles */
|