summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-11-12 23:49:21 -0500
committerKyle Gunger <kgunger12@gmail.com>2024-11-12 23:49:21 -0500
commit53c95ab94cab5163424646d4a798a7ea7fb13ec7 (patch)
treebaa4551d161e1f074bc5579f4c9c6b061eddd084 /index.html
parent4d93bd73f0a56974bd55db8f9e8ff3f318be195d (diff)
Toggle, Checkbox, and Slider widgets
Diffstat (limited to 'index.html')
-rw-r--r--index.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/index.html b/index.html
index d34b98d..23578ff 100644
--- a/index.html
+++ b/index.html
@@ -40,17 +40,19 @@
<div class="widget color-temp" style="--percent: 0.3;"></div>
<div class="widget color-light" style="--percent: 0.3;"></div>
<div class="widget thermostat" style="--percent: 0.3; --arch-color: #0084ff;">
- <div class="arch"></div>
- <div class="gague">68</div>
- <div class="temp">72°</div>
+ <arch></arch>
+ <gague>68</gague>
+ <temp>72°</temp>
</div>
- <div class="widget select h">
+ <div class="widget sel-button h">
<div class="widget button">Heat</div>
<div class="widget button">Cool</div>
<div class="widget button" selected>Eco</div>
</div>
</content>
- <script type="module" src="scripts/main.js"></script>
+ <script src="scripts/gui-common/color.js"></script>
+ <script src="scripts/gui-common/widgets.js"></script>
+ <script src="scripts/main.js"></script>
</body>
</html>