-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>Cereal Dispenser</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body {
background: url(http://www.rushtimes.com/wp-content/uploads/2014/06/corn-oats-rice-wheat-cereal-rings-composed-in-stripes.jpg);
background-repeat: none;
}
#buttonContainer{
width: 100%;
padding-top: 360px;
text-align: center;
}
#buttons{
opacity: .9;
}
button {
width: 40%;
height: 100px;
border:none;
}
button a {
font-weight: bold;
font-size: 24px;
color: #333;
}
button:hover {
background-color: white;
opacity: 1 !important;
}
</style>
<!-- <script src="/bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.js"></script> -->
</head>
<body>
<div id="buttonContainer">
<div id="buttons">
<button class="btn btn-default"><a href="http://192.168.1.30:1337/high">GIVE ME ALOT</a></button><!--
<button class="btn btn-default"><a href="http://192.168.1.30:1337/alittle">give me alittle</a></button> -->
</div>
<!-- <button><a href="http://192.168.1.30:1337/med">med</a></button>
<button><a href="http://192.168.1.30:1337/low">low</a></button> -->
</div>
</body>
</html>