1
0
Fork 0
forked from github/pelican

feat: this is going live now

This commit is contained in:
Oliver Ladner 2024-12-19 09:56:25 +01:00
commit 06cac4589c
410 changed files with 4684 additions and 44715 deletions

59
static/css/in.css Normal file
View file

@ -0,0 +1,59 @@
@tailwind base; /* Preflight is injected here */
@tailwind components;
@tailwind utilities;
@layer base {
html {
/* text-lg == prose-lg */
/* text-xl == prose-xl */
@apply md:text-lg lg:text-xl font-texts text-rp-dawn-text dark:text-rp-moon-iris;
}
text {
@apply text-rp-dawn-text dark:text-rp-moon-iris;
}
a {
@apply underline decoration-2 underline-offset-4 decoration-rp-dawn-gold dark:decoration-rp-moon-pine;
}
a:hover {
@apply underline decoration-2 underline-offset-4 decoration-rp-dawn-foam dark:decoration-rp-moon-rose;
}
h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-headings text-rp-dawn-text dark:text-rp-moon-love;
}
h1 {
@apply text-7xl mb-9;
}
h2 {
@apply text-5xl mb-9;
}
h3 {
@apply text-4xl;
}
h4 {
@apply text-3xl;
}
h5 {
@apply text-2xl;
}
h6 {
@apply text-xl;
}
img {
@apply drop-shadow-lg;
}
dd {
@apply ml-24;
}
}
@layer components {
/*This does not seem to affect prismjs which is good*/
code {
@apply bg-rp-dawn-highlight-low dark:bg-rp-moon-highlight-low;
}
}