-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
58 lines (47 loc) · 793 Bytes
/
app.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
56
57
58
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
user-select: none;
-moz-user-select: none;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 21px;
}
#wrapper {
margin: 50px auto;
text-align: center;
width: 1000px;
}
#tools {
float: left;
border-radius: 2px;
border: 1px solid black;
}
.tool {
padding: 15px;
}
.tool:not(:last-child) {
border-bottom: 1px solid black;
}
.tool input {
width: 50px;
text-align: center;
}
.tool button {
padding: 6px 7px;
}
.tool input[type="color"] {
border: none;
background: none;
}
.tool .title {
display: block;
}
.hidden {
display: none !important;
}
canvas {
border: 1px solid black;
}