blob: dcae6dd739e6f19ff7c79553f4766680d1921830 (
plain)
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
|
html, body {
height: 100%;
margin: 0;
font-family: sans-serif;
font-weight: 300;
font-size: 12px;
line-height: 16px;
}
body {
text-align: center;
}
h1, h2 {
margin: 0;
}
textarea {
margin: 10px;
}
select {
margin: 5px;
}
#file_upload {
width: 80px;
margin: 5px;
}
canvas {
margin: 5px;
box-shadow: 0 0 5px black;
user-select: none;
}
#imagePixel,
#imageThreshold {
display: none;
}
#output {
background-color: white;
}
.box {
display: inline-block;
}
|