Spaces:
Sleeping
Sleeping
File size: 753 Bytes
e49fcf4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--font-shadows: var(--font-shadows-into-light);
}
}
@layer utilities {
.shadows-into-light-regular {
font-family: var(--font-shadows);
}
.font-crimson {
font-family: var(--font-crimson);
}
}
body {
font-family: Arial, Helvetica, sans-serif;
}
.shadows-into-light-regular {
font-family: "Shadows Into Light", serif;
font-weight: 400;
font-style: normal;
}
.poppins {
font-family: var(--font-poppins);
font-weight: 400;
font-style: normal;
}
.roboto {
font-family: var(--font-roboto);
font-weight: 400;
font-style: normal;
}
.roboto-slab {
font-family: var(--font-roboto-slab);
font-weight: 400;
font-style: normal;
} |