-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (69 loc) · 1.2 KB
/
index.html
File metadata and controls
78 lines (69 loc) · 1.2 KB
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
69
70
71
72
73
74
75
76
77
78
<!--
SPDX-FileCopyrightText: 2024 Schell Scivally <efsubenovex@gmail.com>>
SPDX-License-Identifier: MIT OR Apache-2.0
-->
<!doctype html>
<html>
<head>
<style>
/* A sane CSS reset from
* https://www.digitalocean.com/community/tutorials/css-minimal-css-reset
*/
html {
box-sizing: border-box;
font-size: 16px;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
margin: 0;
padding: 0;
font-weight: normal;
}
ol,
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
main {
margin: 0;
width: 100%;
height: 100%;
background-color: #7f7f7f;
}
main canvas {
margin: 0;
padding: 0;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #ffffff;
}
section fieldset {
margin: 0 0.25em 0.5em 0.25em;
}
</style>
</head>
<body>
<main>
<canvas></canvas>
</main>
</body>
</html>