-
Notifications
You must be signed in to change notification settings - Fork 10
/
brush-preview.css
67 lines (57 loc) · 1.02 KB
/
brush-preview.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
59
60
61
62
63
64
65
66
67
body {
background-color: #535353;
user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
}
hr {
border: 0;
border-top: solid 1px #383838;
border-bottom: solid 1px #707070;
}
input[type=range] {
width: 200px;
margin-left: 5px;
}
label {
margin-left: 5px;
}
.indent {
margin: 10px;
}
#canvas-area > div, #pointer-container > canvas {
display: inline-block;
border: solid 1px #383838;
border-bottom: solid 1px #707070;
}
#circle-brush {
width: 30px;
height: 30px;
display: inline-block;
border-radius: 15px;
background-color: #000;
}
.brush-image {
height: 30px;
width: auto;
opacity: 0.5;
-webkit-filter: invert(100%);
-moz-filter: invert(100%);
-ms-filter: invert(100%);
}
.brush-image:hover {
cursor: pointer;
opacity: 1;
}
.brush-image.on {
opacity: 1;
}
p, span {
margin: 0;
margin-bottom: 6px;
color: #fff;
font-size: 10pt;
font-family: "Source Sans", helvetica, arial, sans-serif;
-webkit-font-smoothing: antialiased;
}