28 lines
478 B
CSS
28 lines
478 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: UncialAntiqua;
|
|
src: local("Uncial Antiqua"),url("./fonts/UncialAntiqua-Regular.ttf");
|
|
}
|
|
|
|
.uncial-antiqua {
|
|
font-family: 'UncialAntiqua';
|
|
}
|
|
|
|
.text-leader {
|
|
@apply text-lg;
|
|
@apply font-light;
|
|
@apply leading-relaxed;
|
|
@apply mt-6;
|
|
@apply mb-4;
|
|
@apply text-orange-900;
|
|
}
|
|
|
|
p {
|
|
@apply text-base;
|
|
@apply leading-relaxed;
|
|
@apply mt-4;
|
|
@apply mb-4;
|
|
} |