-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (54 loc) · 949 Bytes
/
styles.css
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
div.toolbar {
padding: 8px;
border: 1px solid #999;
border-radius: 3px;
background-color: white;
display: inline-block;
box-shadow: 0 0 5px black;
}
input.color {
display: none;
}
label.color {
display: inline-block;
text-indent: 100px;
overflow: hidden;
white-space: nowrap;
width: 16px;
height: 16px;
margin: 1px;
border: 1px solid #999;
border-radius: 3px;
}
input.color:checked + label {
box-shadow: 0px 0px 1px 1px black;
}
canvas {
border: 1px solid black;
box-shadow: 0 0 5px black;
image-rendering: crisp-edges;
}
div.panel {
display:none;
}
div.panel.open {
display: block;
position: fixed;
top: 20px;
left: 50%;
right: 20px;
bottom: 20px;
border: 1px solid black;
background-color: white;
border-radius: 3px;
box-shadow: 0 0 5px black;
padding: 2em;
}
div.panel button.close {
position: absolute;
top: 3px;
right: 3px;
}
textarea.error {
background-color: #FFAAAA;
}