guicattani_obsidian-countdo.../styles.css
Guilherme Cattani 20d566aa54 Change ProgressBar to CountdownTo for consistency
Legacy from back when I didn't know what to call this
2025-03-24 23:37:34 +01:00

31 lines
738 B
CSS

.countdown-to-plugin.countdown-to-container {
margin: 20px 0;
padding: 10px;
border-radius: 5px;
background-color: var(--background-secondary);
}
.countdown-to-plugin .countdown-to-title {
font-weight: bold;
margin-bottom: 10px;
text-align: center;
}
.countdown-to-plugin .countdown-to-info {
text-align: center;
font-size: 0.9em;
color: var(--text-muted);
margin-top: 5px;
}
/* Circle, SemiCircle and Square need more height */
.countdown-to-plugin .countdown-to-circle,
.countdown-to-plugin .countdown-to-semicircle,
.countdown-to-plugin .countdown-to-square {
height: 100px;
}
/* Line can stay with the default height */
.countdown-to-plugin .countdown-to-line {
height: 20px;
}