prepare for migration to using htmlgen for html

This commit is contained in:
gnat 2024-09-01 14:49:50 -07:00
parent 3eec270fe0
commit 9e1f368742
2 changed files with 27 additions and 0 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ graph*
__pycache__/
files/stats/song
files/home_visit_counter
html/
!html/thoughts/

View File

@ -58,6 +58,30 @@
}
}
.rainbow-text {
animation:rainbow-text 5s ease-in-out infinite
}
@keyframes rainbow-text {
0% {
color:red
}
20% {
color:orange
}
40% {
color:green
}
60% {
color:blue
}
80% {
color:purple
}
to {
color:red
}
}
body {
text-wrap: wrap;
max-width: 100%;