Add sleep mode and documentation
- Sleep/wake endpoints for Home Assistant webhooks - Sleep state: dim ( -_-)zzZ with slow breathing animation - Updated CLAUDE.md with full technical reference - Added README.md with user guide and HA integration examples Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
16
index.html
16
index.html
@@ -172,6 +172,22 @@
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
/* Sleeping animation - very slow, subtle breathing */
|
||||
.sleeping {
|
||||
animation: sleep 6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes sleep {
|
||||
0%, 100% {
|
||||
opacity: 0.4;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.2;
|
||||
transform: scale(0.98);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user