-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Game of Life</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2018'%3E%3Ctext%20x='0'%20y='14'%3E👾%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
<style>
* {
margin: 0;
padding: 0;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
outline: none;
user-select: none;
}
html, body {
margin: 0;
padding: 0;
}
body {
background-color: #555;
text-align: center;
}
canvas {
display: block;
border: none;
margin: 50px auto 20px auto;
box-shadow: 5px 5px 20px rgba(0, 0, 0, .9);
cursor: pointer;
}
button {
padding: 10px 15px;
background-color: firebrick;
border: none;
color: #fff;
font-size: .8rem;
cursor: pointer;
display: inline-block;
margin: 0 10px 30px 20px;
box-shadow: 5px 5px 12px rgba(0, 0, 0, .6);
border-radius: 4px;
}
button:hover {
background-color: tomato;
}
button:active {
background-color: crimson;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
</head>
<body>
<script src="main.js?v1.3"></script>
</body>
</html>