summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-11-11 23:27:59 -0500
committerKyle Gunger <kgunger12@gmail.com>2024-11-11 23:27:59 -0500
commitda0556feab1e34e2de5b515c4d075603ef832b24 (patch)
tree6bb4ff4b649953b57f78247f2719dddb1863dc85 /index.html
parenteae67d80d41a6eaa0ac688c33ace802ecfa238c4 (diff)
Google fonts + thermostat widget
Diffstat (limited to 'index.html')
-rw-r--r--index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/index.html b/index.html
index 9a2fd05..2ab8278 100644
--- a/index.html
+++ b/index.html
@@ -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>