dumb/style/article.css

45 lines
604 B
CSS
Raw Permalink Normal View History

2024-07-12 20:09:43 +01:00
#article-metadata {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 0.5rem;
}
2024-06-23 16:38:53 -06:00
#article-body {
line-height: 1.75;
color: #eee;
}
#article-title {
color: #eee;
2024-07-12 20:09:43 +01:00
}
#article-subtitle {
font-size: 1.8rem;
text-align: center;
}
#article-image {
width: 100%;
height: 50rem;
border-radius: 5px;
object-fit: contain;
object-position: center;
background-color: #151515;
border: 1px solid #2f2f2f;
2024-06-23 16:38:53 -06:00
}
2024-07-12 20:09:43 +01:00
#metadata,
#article-subtitle,
#article-date,
#article-authors {
color: #ccc;
2024-06-23 16:38:53 -06:00
}
2024-07-12 20:09:43 +01:00
#article-authors {
display: flex;
flex-direction: column;
gap: 0.5rem;
}