Changes to alarms.breckyunits.com

ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 16
- .currentTime {
- outline: 2px solid red;
- }
Changed around line 83
+
+ .currentTime {
+ outline: 2px solid red;
+ background-color: red !important;
+ }
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 17
- outline: 1px solid orange;
+ outline: 2px solid red;
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 17
- background: orange;
+ outline: 1px solid orange;
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 17
- box-shadow:
- 0 0 15px #00ff00,
- 0 0 25px #00ff00;
- background: #00ff00;
- z-index: 1;
+ background: orange;
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 16
+ .currentTime {
+ box-shadow:
+ 0 0 15px #00ff00,
+ 0 0 25px #00ff00;
+ background: #00ff00;
+ z-index: 1;
+ }
Changed around line 174
- console.log(clock.querySelectorAll(".time-slot"), current);
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 164
- (new Date().getHours() * 60 + new Date().getMinutes()) / 5,
+ (new Date().getHours() * 60 + new Date().getMinutes()) / 10,
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 167
-
- current.classList.add("currentTime");
+ current.classList.add("currentTime");
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 169
- console.log(current);
+ console.log(clock.querySelectorAll(".time-slot"), current);
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 162
- clock.querySelectorAll(".segment")[
+ clock.querySelectorAll(".time-slot")[
ffff:72.234.190.31
ffff:72.234.190.31
6 hours ago
updated claude.html
claude.html
Changed around line 160
+
+ const current =
+ clock.querySelectorAll(".segment")[
+ Math.floor(
+ (new Date().getHours() * 60 + new Date().getMinutes()) / 5,
+ )
+ ];
+
+ current.classList.add("currentTime");
+ console.log(current);
Changed around line 203
- const current =
- clock.querySelectorAll(".segment")[
- Math.floor((new Date().getHours() * 60 + new Date().getMinutes()) / 5)
- ];
-
- current.classList.add("currentTime");
- console.log(current);
-