This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/widgets/post-graph.css

31 lines
No EOL
487 B
CSS

.post-graph {
margin-top: 1.25rem;
margin-bottom: 1.25rem;
}
.post-graph__wrapper {
display: flex;
align-items: center;
height: 2rem;
margin-bottom: .375rem;
}
.post-graph__progress {
background-color: var(--blue-600);
height: 100%;
}
.post-graph__year {
font-family: var(--font-mono)
}
.post-graph__progress,
.post-graph__data {
margin-left: .625rem;
}
@media (prefers-color-scheme: dark) {
.post-graph__progress {
background-color: var(--blue-400);
}
}