mirror of
https://github.com/alinanorakari/Pebble-Time-Watchface-Super-Simple.git
synced 2025-12-16 00:15:21 +01:00
added HTML/JS/CSS for config page (but not the integration into the watchface yet)
This commit is contained in:
40
config/index.html
Normal file
40
config/index.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Super Simple Settings</title>
|
||||
<link rel="stylesheet" href="css/slate.min.css">
|
||||
<body>
|
||||
|
||||
<div class="item-container">
|
||||
<div class="item-container-header">Color settings</div>
|
||||
<div class="item-container-content">
|
||||
<div class="item">
|
||||
Background
|
||||
<input id="color-bg" type="text" class="item-color item-color-normal" name="color-bg" value="#000000">
|
||||
</div>
|
||||
<div class="item">
|
||||
Minute Hand
|
||||
<input id="color-m" type="text" class="item-color item-color-normal" name="color-m" value="#ffffff">
|
||||
</div>
|
||||
<div class="item">
|
||||
Hour Hand
|
||||
<input id="color-h" type="text" class="item-color item-color-normal" name="color-h" value="#ff0000">
|
||||
</div>
|
||||
<div class="item">
|
||||
Center Peg
|
||||
<input id="color-p" type="text" class="item-color item-color-normal" name="color-p" value="#cccccc">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="item-container">
|
||||
<div class="button-container">
|
||||
<input id="send" type="button" class="item-button" value="SEND">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="js/slate.min.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user