-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrawing-tool.css
129 lines (124 loc) · 2.4 KB
/
drawing-tool.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*drawing-tool-test.css*/
body{
margin:0px;
}
.main {
background:url(images/drawing-bg.png) no-repeat;
width:1020px;
height:675px;
margin: 0 auto;
}
.markers{
margin-left:61px;
position:relative;
top:-22px;
width:845px;
display:inline-block;
}
.marker{
width:63px;
height:92px;
position:relative;
display:inline-block;
}
.pink{
background:url(images/pink-marker.png) no-repeat;
}
.purple{
background:url(images/purple-marker.png) no-repeat;
}
.blue{
background:url(images/blue-marker.png) no-repeat;
}
.green{
background:url(images/green-marker.png) no-repeat;
}
.yellow{
background:url(images/yellow-marker.png) no-repeat;
}
.orange{
background:url(images/orange-marker.png) no-repeat;
}
.red{
background:url(images/red-marker.png) no-repeat;
}
.brown{
background:url(images/brown-marker.png) no-repeat;
}
.gray{
background:url(images/gray-marker.png) no-repeat;
}
.black{
background:url(images/black-marker.png) no-repeat;
}
.white{
background:url(images/white-marker.png) no-repeat;
}
.save{
background:url(images/save-buttom.png) no-repeat;
width:72px;
height:72px;
display:inline-block;
position:relative;
top:-20px;
left:-6px;
}
.save:hover {
background:url(images/save-buttom-selected.png) no-repeat;
}
#canvasDiv{
margin:-17px 60px 0px 50px;
width:925px;
height:505px;
display:inline-block;
}
.eraser{
background:url(images/eraser.png) no-repeat;
width:96px;
height:55px;
display:inline-block;
margin:8px 0px 0px 628px;
}
.eraser-selected, .eraser:hover {
background:url(images/eraser-selected.png) no-repeat;
}
.sizes{
display:inline-block;
margin:0px 0px 0px 67px;
position:relative;
top:-9px;
}
.size-huge{
background:url(images/size-huge.png) no-repeat;
width:47px;
height:47px;
display:inline-block;
}
.size-huge-selected, .size-huge:hover {
background:url(images/size-huge-selected.png) no-repeat;
}
/*
.size-huge-selected {
background:url(images/size-huge-selected.png) no-repeat;
}
*/
.size-normal{
background:url(images/size-normal.png) no-repeat;
width:36px;
height:36px;
display:inline-block;
margin:0px 0px 6px 7px;
}
.size-normal-selected, .size-normal:hover {
background:url(images/size-normal-selected.png) no-repeat;
}
.size-small{
background:url(images/size-small.png) no-repeat;
width:22px;
height:22px;
display:inline-block;
margin:0px 0px 13px 12px;
}
.size-small-selected, .size-small:hover {
background:url(images/size-small-selected.png) no-repeat;
}