Erste funktionierende Version

This commit is contained in:
jafreli
2025-07-16 18:43:11 +02:00
parent 08ed4906cc
commit c78e825f2f
5 changed files with 126 additions and 23 deletions

View File

@@ -81,12 +81,29 @@ h1 {
color: #e0e0e0;
font-size: 1.5em;
cursor: pointer;
margin-left: 5px;
}
.habit-actions button:hover {
color: #666;
}
.habit-actions button.completed-today {
color: #4CAF50;
}
.habit-actions button.not-completed-today {
color: #888;
}
.habit-actions button.completed-today:hover {
color: #45a049;
}
.habit-actions button.not-completed-today:hover {
color: #4CAF50;
}
.date-grid {
display: grid;
grid-template-columns: repeat(30, 1fr); /* Adjust based on your date range */