-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
62 lines (59 loc) · 1.81 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
57
58
59
60
61
62
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Conway's Game of Life</title>
<!-- les css imports -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css"/>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootswatch/3.3.7/slate/bootstrap.min.css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.1.1/gh-fork-ribbon.min.css" />
<!-- les inline styles -->
<style>
.grid-controls {
text-align: center;
margin: 20px auto;
}
.grid-controls-buttons {
margin-bottom: 20px;
}
.grid {
margin: auto;
border: solid 2px #111;
width: 454px;
}
.grid-row {
height: 15px;
}
.grid-tile {
background-color: #2e3338;
display: inline-block;
width: 15px;
height: 15px;
cursor: pointer;
margin: 0;
padding: 0;
border: solid 1px #111;
-webkit-transition: background-color 0.15s ease-out;
-moz-transition: background-color 0.15s ease-out;
-o-transition: background-color 0.15s ease-out;
transition: background-color 0.15s ease-out;
}
.grid-tile:hover {
background-color: #484D52;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header text-center">
<h1>
<span class="text-muted">Conway's</span> Game of Life
</h1>
</div>
<div id='root'></div>
</div>
<script src="static/bundle.js"></script>
</body>
</html>