From 9e1f3687428b465d3a4c146aa176cce3cb20733c Mon Sep 17 00:00:00 2001 From: gnat Date: Sun, 1 Sep 2024 14:49:50 -0700 Subject: [PATCH] prepare for migration to using htmlgen for html --- .gitignore | 3 +++ style.css | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/.gitignore b/.gitignore index 4b4b158..e60b5fa 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ graph* __pycache__/ files/stats/song files/home_visit_counter + +html/ +!html/thoughts/ diff --git a/style.css b/style.css index 4e6c001..f87c946 100644 --- a/style.css +++ b/style.css @@ -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%;