-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoohot.html
More file actions
101 lines (90 loc) · 3.55 KB
/
Copy pathtoohot.html
File metadata and controls
101 lines (90 loc) · 3.55 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<style>
.box {
/* basic styling */
width: 250px;
font: 14px Arial;
/* flexbox setup */
display: -webkit-box;
-webkit-box-orient: horizontal;
display: -moz-box;
-moz-box-orient: horizontal;
display: box;
box-orient: horizontal;
}
.box > div {
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
-moz-transition: width 0.7s ease;
-o-transition: width 0.7s ease;
-webkit-transition: width 0.7s ease;
transition: width 0.7s ease;
}
</style>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="styles/main_hot.css">
<!-- link rel="stylesheet" href="styles/main.css"-->
<!-- link rel="stylesheet" href="styles/topologicalView.css"-->
<!-- link rel="stylesheet" href="styles/timeseriesView.css"-->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="scripts/jquery/jquery.ui.touch-punch.min.js"></script>
<script src="scripts/d3/d3.v3.min.js"></script>
<script src="scripts/d3/d3.layout.js"></script>
<script src="scripts/cubism/cubism.v1.min.js"></script>
<script src="scripts/heatmap/heatmap.js"></script>
<script src="scripts/topologicalView.js"></script>
<script src="scripts/timeseriesView.js"></script>
<script src="scripts/floorView.js"></script>
<script src="scripts/main_hot.js"></script>
</head>
<body>
<header id="menuBar"><img src="images/cmu_wordmark.gif">
</header>
<div class="box">
<div>
<div class="text-center">
<h2>Room: 109/110</h2>
</div>
<div id="geographicalView" class="text-center">
<div id="txt_temperature" style="font-size: 300%;"></div>
<small class="text-grey">Last reading: <span id="txt_last_reading_time"></span></small>
<br/>
<br/>
</div>
<div>
<div id="auction_info" >
<form class="form-inline" style="line-height:220%;">
You have <span id="current_credits" class="label label-info">100</span> credits left!
<br/>
Bid <input type="text" class="input-mini" id="credits_bet"> to gain control
<button class="btn btn-success" type="submit">Place!</button>
</form>
<dl class="dl-horizontal">
<dt>Your last bid:</dt>
<dd id="txt_your_bid">25</dd>
<dt>Current auction bid:</dt>
<dd id="txt_current_auction_bid">37</dd>
<dt>Time left:</dt>
<dd id="txt_time_left">27:04</dd>
</dl>
</div>
<br/>
<div id="set_temp" class="text-left">
<form class="form-inline" style="line-height:250%;">
Set temperature to <input type="text" class="input-mini" id="target_temp">
<button class="btn btn-success" type="submit">Set!</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>