-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (49 loc) · 975 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
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
html,
body {
min-width: 100%;
min-height: 100%;
height: 100%;
}
h1 {
font-style: italic;
color: #373fff;
padding-left: 1em;
text-decoration: underline;
}
main {
height: 100%;
overflow: hidden;
}
#put-pi-here {
display: block;
white-space: pre-wrap;
max-width: 100%;
word-break: break-all;
margin: 1em;
}
#pie {
display: inline-block;
float: left;
font-size: 4em;
}
</style>
</head>
<body>
<span id="pie">🥧</span>
<button id="btnmain">
Generate PI!
</button><br />
<button id="btnworker">
Generate PI in a Worker!
</button>
<pre id="put-pi-here"></pre>
</body>
</html>