1
0
Fork 0
forked from github/pelican

feat: use Tailwind typography and implement rose pine, WIP

This commit is contained in:
Oliver Ladner 2024-10-26 00:28:57 +02:00
commit 08e2883d56
13 changed files with 4750 additions and 115 deletions

View file

@ -1,4 +1,4 @@
@tailwind base; /* Preflight will be injected here */
@tailwind base; /* Preflight is injected here */
@tailwind components;
@tailwind utilities;
@ -9,19 +9,19 @@
@apply font-sans;
}
a {
@apply text-green-600 hover:text-green-300 underline decoration-2 underline-offset-4;
@apply text-rp-moon-iris underline decoration-4 underline-offset-4;
}
h1 {
@apply font-sans text-7xl;
@apply font-sans text-7xl text-rp-moon-gold prose prose-h1:text-rp-moon-gold;
}
h2 {
@apply font-sans text-5xl mb-6 mt-4;
@apply font-sans text-5xl text-rp-moon-gold prose prose-h1:text-rp-moon-gold;
}
h3 {
@apply font-sans text-4xl mb-6 mt-4;
@apply font-sans text-4xl text-rp-moon-gold prose prose-h1:text-rp-moon-gold;
}
h4 {
@apply font-sans text-3xl mb-6 mt-4;
@apply font-sans text-3xl text-rp-moon-gold prose prose-h1:text-rp-moon-gold;
}
h5 {
@apply font-sans text-2xl mb-6 mt-4;
@ -29,14 +29,4 @@
h6 {
@apply font-sans text-xl mb-6 mt-4;
}
ul {
@apply list-disc list-inside;
}
dd {
@apply pl-8;
}
}
.highlight {
@apply bg-gray-300 font-mono m-5 p-5;
/*@apply bg-gray-300 font-mono m-5 p-5 block;*/
}