-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystylesheet.css
More file actions
84 lines (71 loc) · 1.16 KB
/
mystylesheet.css
File metadata and controls
84 lines (71 loc) · 1.16 KB
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
*
{
margin:0px;
padding:0px;
}
#cnvs
{
float:left;
}
#board
{
border:1px solid black;
cursor:crosshair;
}
#tempImg
{ top:0;
position:absolute;
left:0;
border:1px solid black;
}
#toolbar
{ cursor:default;
float:left;
margin-left:10px;
}
.tools
{
height:38px;
width:38px;
outline:gray solid thin;
background-repeat:no-repeat;
background-position:center;
}
.selected
{
height:38px;
width:38px;
outline:red solid thin;
}
#pencil
{
background-image:url(pencil.png);
}
#circle
{
background-image:url(circle.png);
}
#rect
{
background-image:url(rectangle.png);
}
#cursor
{
background-image:url(cursor.png);
}
#eraser
{
background-image:url(eraser.png);
}
#line
{
background-image:url(line.png);
}
#brush
{
background-image:url(brush.png);
}
#clearall
{
background-image:url(clear.png);
}