-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·54 lines (46 loc) · 914 Bytes
/
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 lang="de">
<head>
<meta charset="utf-8">
<title>GoL</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #fff;
color: #333;
}
#info {
width: 100%;
margin-bottom: 20px;
text-align: center;
}
#info > span {
display: inline-block;
min-width: 120px;
background-color: #eee;
border-bottom: 1px solid #aaa;
margin-left: 5px;
padding: 2px;
text-align: center;
}
#controls {
display: block;
float: left;
}
#controls > select {
height: 700px;
overflow-y: auto;
}
#world {
display: block;
float: left;
margin-left: 40px;
border: 1px solid #666;
box-shadow: 0px 0px 30px 0px #000;
}
</style>
</head>
<body>
<script src="gol.js"></script>
</body>
</html>