-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 2.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundation for Sites</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>VisualBits Pool</h1>
</div>
</div>
<div class="row">
<div class="mobile-view large-3 columns">
<Label>Chemical Balance:</Label>
<input class="mobile-display chemical-balance" type="textbox" value="Healthy" disabled="disabled" />
<Label>Current Temperature:</Label>
<input class="mobile-display current-temperature" type="textbox" value="82F" disabled="disabled" />
<Label>Pump Status:</Label>
<input class="mobile-display pump-control" class="button" type="button" value="Running" />
<br /> <br />
<p>Fountains:</p>
<div class="switch">
<input class="switch-input" id="fountains" type="checkbox" name="fountains" checked="checked">
<label class="switch-paddle" for="fountains">
<span class="show-for-sr">Fountains</span>
</label>
</div>
<p>Lighting:</p>
<div class="switch">
<input class="switch-input" id="lighting" type="checkbox" name="lighting">
<label class="switch-paddle" for="lighting">
<span class="show-for-sr">Lighting</span>
</label>
</div>
</div>
<div class="show-for-large large-9 columns">
Main area for desktopp
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>