Markdown: improve heading styles
This commit is contained in:
parent
eff91d3614
commit
31cd1bd61b
|
@ -83,19 +83,34 @@ const { title, description, pubDate, updatedDate, heroImage } = Astro.props;
|
||||||
}
|
}
|
||||||
.prose h1 {
|
.prose h1 {
|
||||||
font-size: 40px;
|
font-size: 40px;
|
||||||
border-bottom: 2px solid #000;
|
|
||||||
margin-bottom: calc(var(--font-size) / 3);
|
margin-bottom: calc(var(--font-size) / 3);
|
||||||
}
|
}
|
||||||
|
.prose h1:after { /* Psuedo-element prevents extending to padding */
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
border-bottom: 2px solid #000;
|
||||||
|
}
|
||||||
.prose h2 {
|
.prose h2 {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
.prose h2:after { /* Psuedo-element prevents extending to padding */
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
border-bottom: 1px solid #aaa;
|
border-bottom: 1px solid #aaa;
|
||||||
}
|
}
|
||||||
.prose h3 {
|
.prose h3 {
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
}
|
}
|
||||||
.prose h4, .prose h5, .prose h6 {
|
.prose h4 {
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
}
|
}
|
||||||
|
.prose h5 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.prose h6 {
|
||||||
|
color: #888;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
/**** Paragraphs ****/
|
/**** Paragraphs ****/
|
||||||
.prose p {
|
.prose p {
|
||||||
|
|
|
@ -59,15 +59,16 @@ const posts = (await getCollection('blog')).sort(
|
||||||
<main>
|
<main>
|
||||||
<section>
|
<section>
|
||||||
<h1
|
<h1
|
||||||
class="text-center text-4xl"
|
class="text-center mt-8 mb-4 text-6xl"
|
||||||
style="font-family: var(--font-title);">
|
style="font-family: var(--font-title);">
|
||||||
Blogs!
|
Blogs!
|
||||||
</h1>
|
</h1>
|
||||||
<p
|
<p
|
||||||
class="text-center m-6">
|
class="text-center mb-4 text-xl">
|
||||||
A collection of tutorials and opinionated pieces. Have a
|
A collection of tutorials and opinionated pieces. Have a
|
||||||
read!
|
read!
|
||||||
</p>
|
</p>
|
||||||
|
<hr class="m-4" style="border: 1px solid black;" />
|
||||||
<ul>
|
<ul>
|
||||||
{
|
{
|
||||||
posts.map((post) => (
|
posts.map((post) => (
|
||||||
|
|
Loading…
Reference in a new issue