2021-07-12 20:14:39 +00:00
|
|
|
/* This file is compiled to /assets/styles/tailwind.css via script/tailwind */
|
|
|
|
|
2021-09-15 22:28:38 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Spectral:ital,wght@0,200;0,300;1,800&display=swap');
|
2021-07-12 20:14:39 +00:00
|
|
|
|
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2021-09-15 22:28:38 +00:00
|
|
|
@layer base {
|
|
|
|
html {
|
|
|
|
font-size: 125%;
|
|
|
|
text-rendering: geometricPrecision;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
@apply text-4xl;
|
|
|
|
@apply tracking-tighter;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
@apply text-3xl;
|
|
|
|
@apply tracking-tighter;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
@apply text-2xl;
|
|
|
|
@apply tracking-tighter;
|
2021-07-12 20:14:39 +00:00
|
|
|
}
|
|
|
|
}
|