-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
68 lines (63 loc) · 2.28 KB
/
home.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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Color Guessing Game</title>
<meta charset="utf-8" lang="en">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="jumbotron" id="jumboBG">
<h2>The Great</h2>
<h1><span id="colorName">RGB(60, 132, 203)</span></h1>
<h2>Guessing game</h2>
</div>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="nav-space"><button class="btn btn-default" id="newGame">New Colors</button></li>
<span class="message" id="tryAgain"></span></li>
<li><button class="btn btn-default" id="easy">Easy</button></li>
<li><button class="btn btn-default inactive-btn" id="hard">Hard</button></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
</div>
<div class="row hard-level" id="hard-row">
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
<div class="col-lg-4 col-md-4 col-xs-4">
<button class="color-box"></button>
</div>
</div>
</div>
</div>
</div>
<div class="nav navbar-fixed-bottom">
<div class="min-footer" id="footer">
made with <span class="love"><i class="glyphicon glyphicon-heart"></i></span> by Mike Penzin
</div>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>