feat(blog): able to recieve blogs, links scrubbed because mentally ill people exist

This commit is contained in:
2025-05-21 18:02:55 -06:00
parent e249c1acc2
commit ff6f6c8424
3 changed files with 151 additions and 56 deletions

View File

@ -1,5 +1,50 @@
#blog {
margin-top: 50px;
margin-top: 2svh;
min-height: 80svh;
}
#blog #blog_info {
display: flex;
flex-direction: column;
}
#blog #blog_info p {
padding: 2svh 0svw;
margin: 0px;
}
#blog #blog_info h1 {
padding: 1svh 1svw;
margin: 2svh 0svw;
margin-bottom: 0px;
}
#blog #blog_info div {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 1svh 2svw;
border-bottom: var(--underlineTitle);
border-radius: var(--underlineTitleBorderRadius);
}
#blog #blog_info div p {
padding: 0px;
margin: 0px;
}
#blog #blog_info div div {
margin: 0px;
padding: 0px;
border: none;
}
#blog #blog_info div p:last-child {
margin-right: 10svh;
}
#blog #blog_info div div p {
background-color: rgba(128, 0, 128, 0.2);
border-radius: 1rem;
padding: 0.25svh 1svw;
margin: 0svh 0.25svh;
}
#blog a {
@ -11,6 +56,24 @@
color: #91a4d2;
}
#blog_content {
padding: 2svh 0svw;
}
#blog_content h1,
h2,
h3 {
margin: 0px;
padding: 1svh 0svw;
border-bottom: none;
/* border-bottom: var(--underlineTitle);
border-radius: var(--underlineTitleBorderRadius); */
}
#blog_content p {
padding: 1svh 0svw;
margin: 0px;
}
#blogs {
display: flex;
flex-direction: column;