-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (81 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (81 loc) · 1.33 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
84
*{
margin: 0;
padding: 0;
}
header{
background-color: blanchedalmond;
text-align: center;
font-size: xx-larger;
height: 20%;
width: auto;
}
h1{
color:rgb(26, 93, 151);
font-family: 'Festive', cursive;
}
body{
margin: 0;
padding: 0;
box-sizing: border-box;
display: relative;
}
#canvas{
border: 2px solid black;
height: 100%;
width: 100%;
cursor: crosshair;
position: fixed;
}
.control{
position: absolute;
left: 10px;
top: 50px;
background-color:lightseagreen;
border-radius: 15px;
}
.color-field{
height: 20px;
width: 20px;
border-radius: 50px;
margin: 2px;
border: 2px solid black;
padding-left: 20px;
}
.size{
margin: 10px 0px;
padding-top: 10px 0px;
}
.actions{
margin: 10px 0px;
padding: 10px 0px;
}
#reset-canvas,save-canvas{
margin-right: 10px;
}
.color{
margin-top: 10px;
}
.col{
border: lightblue;
border-radius: 10px;
background-color: lightgreen;
margin-left: 10px;
margin-right: 10px;
padding:5px 0px 5px 20px;
}
.but{
font-size:10px;
background-color: lightslategrey;
border-radius: 7px;
}
#line{
background-color: lightslategrey;
border-radius: 5px;
width: auto;
}
#save-canvas{
color: blue;
background-color: white;
padding: 1px;
text-decoration: none;
}