remove bloat css change of them toggle

This commit is contained in:
samantha42
2026-05-31 10:19:23 +02:00
parent 8d4e523b3e
commit 2c1997ed6e
12 changed files with 59 additions and 191 deletions
+4 -2
View File
@@ -92,10 +92,12 @@ func main() {
w.Header().Set("Content-Type", "text/html")
//<span ">samantha42.xyz</span>
if config.Job == "" || config.Job == "none" {
fmt.Fprint(w, `<span><span class="dot dot--available"></span>available for work</span>`)
fmt.Fprint(w, `<span class="available" ><span class="dot dot--available"></span>available for work</span>`)
} else {
fmt.Fprintf(w, `<span><span class="dot dot--busy"></span>working at: <b>%s</b></span>`, config.Job)
fmt.Fprintf(w, `<span class="busy" ><span class="dot dot--busy"></span>working at: <b>%s</b></span>`, config.Job)
}
})