diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-05-17 13:15:41 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-05-17 13:15:41 -0400 |
commit | b48f0adccb11619680a47cac5fa9c68f638bd489 (patch) | |
tree | 9e75612c21ae9944b354afa13e2e94834e020e9c /webcards/client.html | |
parent | c9e2eee382df60bc7a058b56c804258848477d67 (diff) |
[WebCards] Update from my local repos
Diffstat (limited to 'webcards/client.html')
-rw-r--r-- | webcards/client.html | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/webcards/client.html b/webcards/client.html index 0b06712..069a041 100644 --- a/webcards/client.html +++ b/webcards/client.html @@ -16,12 +16,17 @@ <link rel="stylesheet" type="text/css" href="styles/client/mobile.css"> <link rel="stylesheet" type="text/css" href="styles/client/card.css"> + <link id="theme" rel="stylesheet" type="text/css" href="styles/themes/colors-base.css"> + <link rel="icon" sizes="32x32" href="images/wc-icon-32.png"> <link rel="icon" sizes="48x48" href="images/wc-icon-48.png"> <link rel="icon" sizes="96x96" href="images/wc-icon-96.png"> <link rel="icon" sizes="144x144" href="images/wc-icon-144.png"> <link rel="icon" sizes="288x288" href="images/wc-icon-288.png"> + <script src="scripts/cookie.js"></script> + <script src="scripts/theme.js"></script> + <script src="scripts/cards/card.js"></script> <script src="scripts/cards/deck.js"></script> <script src="scripts/cards/drag.js"></script> @@ -40,7 +45,7 @@ <body> - <div class="table" state="closed"> + <div class="table" state="closed" onmouseup="d.stopDraggingAll()"> </div> @@ -60,13 +65,13 @@ <button id="set">Accept Settings</button> </div> - <div class="status" style="background-color: #DA0;"></div> + <div class="status"></div> </div> <div class="lobby"> <div class="server"> - <span style="background-color: #DA0; font-weight: bold; color: white;" class="status">Connecting</span> + <span style="font-weight: 700;" class="status">Connecting</span> <span class="addr"></span> </div> @@ -129,6 +134,14 @@ { type: "image", image: "assets/standard/heart.svg" + }, + { + type: "image", + image: "assets/standard/heart.svg" + }, + { + type: "image", + image: "assets/standard/heart.svg" } ] }); |