guicattani_obsidian-countdo.../styles.css

37 lines
946 B
CSS
Raw Normal View History

.countdown-to-plugin.countdown-to-container {
2025-03-09 11:17:46 +00:00
margin: 20px 0;
padding: 10px;
border-radius: 5px;
background-color: var(--background-secondary);
transition: background-color 1.0s ease;
}
.countdown-to-plugin.countdown-to-container.countdown-to-upcoming {
background-color: var(--countdown-to-upcoming-bg, var(--background-secondary, #e3e3e3));
2025-03-09 11:17:46 +00:00
}
.countdown-to-plugin .countdown-to-title {
2025-03-09 11:17:46 +00:00
font-weight: bold;
margin-bottom: 10px;
text-align: center;
}
.countdown-to-plugin .countdown-to-info {
2025-03-09 11:17:46 +00:00
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 {
2025-03-09 11:17:46 +00:00
height: 100px;
}
/* Line can stay with the default height */
.countdown-to-plugin .countdown-to-line {
2025-03-09 11:17:46 +00:00
height: 20px;
}