Compare commits

..

2 Commits

Author SHA1 Message Date
6362dcaef5
add forgotten Card icon to darktheme 2024-01-20 00:43:31 +01:00
55862e05f9
update to current state 2024-01-20 00:42:02 +01:00
2 changed files with 8 additions and 2 deletions

View File

@ -11,10 +11,11 @@ My own homepage, bocken.org, built with svelte-kit.
- [ ] preferences page
- [x] change password
- [ ] fail2ban integration
- [ ] dark mode `@media (prefers-color-scheme: dark) {}`
- [x] css dark mode `@media (prefers-color-scheme: dark) {}`
- [ ] dark mode toggle
### Rezepte
- [ ] Do not list recipes that are all-year as "seasonal"
- [x] Do not list recipes that are all-year as "seasonal"
- [ ] nutrition facts
- [x] verify randomize arrays based on day
- [x] notes for next time

View File

@ -17,6 +17,11 @@ a.icon{
border-radius:1000px;
box-shadow: 0em 0em 2em 0.1em rgba(0, 0, 0, 0.6);
}
@media (prefers-color-scheme: dark) {
a.icon{
background-color: var(--accent-dark);
}
}
input.icon{
z-index: 3;
box-sizing: border-box;