dumb/style/article.css

61 lines
838 B
CSS
Raw 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;
2024-07-12 20:09:43 +01:00
color: #171717;
}
#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: #f7f7f7;
border: 1px solid #e4e4e4;
2024-06-23 16:38:53 -06:00
}
2024-07-12 20:09:43 +01:00
#metadata,
#article-subtitle,
#article-date {
2024-06-23 16:38:53 -06:00
color: #333;
}
2024-07-12 20:09:43 +01:00
#article-authors {
color: #1e1e1e;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.dark #article-image {
background-color: #151515;
border: 1px solid #2f2f2f;
}
.dark #metadata,
.dark #article-subtitle,
.dark #article-date,
.dark #article-authors {
2024-06-23 16:38:53 -06:00
color: #ccc;
}
.dark #article-title {
color: #eee;
}
.dark #article-body {
color: #eee;
}