-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
65 lines (55 loc) · 921 Bytes
/
styling.css
File metadata and controls
65 lines (55 loc) · 921 Bytes
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
#cnvs
{
float:left;
}
#toolbar
{
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);
}