-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
94 lines (84 loc) · 1.43 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
*{
box-sizing: border-box;
-mox-box-sizing: border-box;
-webkit-box-sizing: border-box;
font-family: sans-serif;
user-select: none; /* disables user selection in entire document*/
-mox-user-select:none;
-webkit-user-select: none;
}
#toolbar{
width: 100%;
height: 50px;
padding: 10px;
background-color: #202020;
position: fixed; /* fix it to top of canvas */
top:0;
color: #fff;
}
#title{
text-align: center;
font-size: 20px;
font-weight: bold;
vertical-align: middle;
position: relative;
float: left;
top: 50%;
left: 40%;
transform: translate(-50%, -50%);
}
.bsb{
width: 30px;
height: 30px;
padding: 5px;
background-color: #606060;
display: inline-block;
text-align: center;
}
#brush{
float:left;
}
#color{
float:right;
}
.shade{
width: 30px !important;
height: 30px !important;
border-radius: 15px !important;
display: inline-block !important;
margin-left: 10px !important;
}
.shade.active{
border:2px solid white;
}
#clear{
float: left;
width: 50px;
height: 30px;
padding: 5px;
background-color: #606060;
display: inline-block;
text-align: center;
}
#erase{
float: left;
width: 50px;
height: 30px;
padding: 5px;
margin-left: 15px;
background-color: #606060;
display: inline-block;
text-align: center;
}
#save{
float: left;
width: 50px;
height: 30px;
padding: 5px;
margin-left: 15px;
background-color: #606060;
display: inline-block;
text-align: center;
text-decoration: none;
color: #fff;
}