-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (59 loc) · 1.33 KB
/
style.css
File metadata and controls
69 lines (59 loc) · 1.33 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
body {
background-color: black;
}
#pixel-pattern-div {
background-color: white;
width: 75%;
margin: auto;
padding: 10px;
}
/* Vertical y-cell-height control */
/* #draw-range-height {
display: inline-block;
transform: rotate(-90deg);
} */
/* Center things */
#pixel-pattern-div, #pixel-pattern-div div {
text-align: center;
}
/* Color-picker needs white BG for transparency effects to show selected color accurately. */
#chosen-color-wrapper {
background-color: white;
display: inline-block;
border-radius: 6px;
}
canvas {
width: 29em;
height: 29em;
display: inline-block;
border-style: solid;
border-color: black;
border-width: 1px;
/* image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: -o-crisp-edges;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor; */
}
#drawing-panel {
background-color: white;
}
#display-panel {
background-color: white;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* XXX: Temp styling SCRATCH */
#pixel-pattern-div {
padding-top: 3vh;
padding-bottom: 5vh;
background-color: #686868;
color: white;
}