diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-11-11 23:27:59 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-11-11 23:27:59 -0500 |
commit | da0556feab1e34e2de5b515c4d075603ef832b24 (patch) | |
tree | 6bb4ff4b649953b57f78247f2719dddb1863dc85 /index.html | |
parent | eae67d80d41a6eaa0ac688c33ace802ecfa238c4 (diff) |
Google fonts + thermostat widget
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -4,8 +4,18 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>OpenSmarts</title> + + <!-- Widgets and Main styles --> <link rel="stylesheet" href="styles/main.css" /> <link rel="stylesheet" href="styles/widgets.css" /> + + <!-- Google Fonts --> + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet"> + + <!-- Theme --> + <link id="theme" rel="stylesheet" href="styles/themes/base.css" /> </head> <body> <user> @@ -30,6 +40,11 @@ <div class="widget color-wheel" style="--pos-x: 0.3; --pos-y: 0.3;"></div> <div class="widget color-temp" style="--pos: 0.3;"></div> <div class="widget color-light" style="--pos: 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> + </div> </content> <script type="module" src="scripts/main.js"></script> |