No sleep windows yet for this day.
No wake windows yet for this day.
Darker = happens more often at that hour.
-No weigh-ins logged yet.
-No events logged for this day.
diff --git a/src/style.css b/src/style.css index 8958b83..58fe925 100644 --- a/src/style.css +++ b/src/style.css @@ -756,3 +756,24 @@ input.switch:checked::after { transform: translateX(18px); } .chart-svg .hm-poo { fill: var(--poo); } .chart-svg .hm-eat { fill: var(--eat); } +/* ---------- collapsible panels ---------- */ +section.collapsible > h2 { + cursor: pointer; + position: relative; + padding-right: 20px; + -webkit-user-select: none; + user-select: none; +} +section.collapsible > h2::after { + content: "▾"; + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%); + transition: transform 0.15s ease; + color: var(--muted); + font-size: 0.85em; +} +section.collapsed > h2::after { transform: translateY(-50%) rotate(-90deg); } +section.collapsed > h2 { margin-bottom: 0; } +section.collapsed > :not(h2) { display: none; }