digital-gardeners/styles/tailwind.css

36 lines
743 B
CSS
Raw Normal View History

2021-09-05 16:37:21 +02:00
/* @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;
2021-09-06 17:36:23 +02:00
@apply text-lightBlack;
2021-09-05 16:37:21 +02:00
}
h3 {
@apply text-xl;
@apply leading-none;
}
p {
@apply text-base;
}
}
2021-09-06 16:41:00 +02:00
html {
2021-09-05 16:37:21 +02:00
background-repeat: no-repeat;
2021-09-06 16:41:00 +02:00
background-size: cover;
min-height: 100vh;
2021-09-06 17:36:23 +02:00
@apply bg-offWhite;
@apply text-black;
2021-09-05 16:37:21 +02:00
}
/* https://tailwindcss.com/docs/adding-base-styles */