feat: typography attempt 1

This commit is contained in:
eggy
2023-02-25 12:33:30 -05:00
parent b1a24cef2f
commit 0b6b798db4
7 changed files with 103 additions and 70 deletions

23
assets/css/main.scss Normal file
View File

@@ -0,0 +1,23 @@
@import "base.scss";
.prose article {
@include headings {
@apply hover:text-blue-700 dark:hover:text-blue-400;
& > a:hover,
& > a:active {
text-decoration: underline;
text-decoration-skip-ink: all;
&::before {
content: "#";
position: absolute;
opacity: 0.5;
left: -2rem;
font-style: italic;
}
}
}
a:hover {
@apply hover:text-blue-700 dark:hover:text-blue-400;
}
}