blob: 1fa0266b05de88c6c0218bcdbaaaae46199f4681 (
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
|
#canvas_wrapper{
// position:absolute;
display: inline-block;
white-space: no-wrap;
word-wrap: break-word;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
// pointer-events: none;
}
.canvas_cell{
border: 1px solid black;
display: inline-block;
width: 1em;
height: 1em;
}
.canvas_row{
// position: absolute;
}
.brush_tools{
margin:5px;
padding:5px;
display: inline-block;
background: whitesmoke;
border: 1px solid gray;
cursor: pointer;
}
#drawing_finished{
padding:5px;
margin-top:10px;
text-transform:bold;
display:block;
width:100%;
}
#brush{
background:gray;
color: white;
border: 1px solid black;
}
|