forked from gSchool/pixel-art-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixel.css
102 lines (82 loc) · 1.15 KB
/
pixel.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
body{
background-color: dimgrey;
}
.container{
background-color: grey;
width: 620px;
height: 560px;
margin: 100px auto;
border-radius: 25px;
padding: 60px;
}
.gridBox{
background-color: white;
width: 492px;
height: 384px;
margin: auto;
}
.paintBox{
width: 492px;
height:140px;
margin: auto;
}
.pixel{
border: 1px solid #ccc;
float:left;
height: 10px;
width:10px;
}
.swatch{
border: 3px solid #ccc;
float:left;
height: 40px;
width: 40px;
border-radius: 100%;
margin: 12px;
}
.currentLabel{
color: dimgrey;
float: left;
font-family: sans-serif;
font-size: large;
margin-top: 20px;
}
.currentSwatch{
border: 3px solid #ccc;
height: 40px;
width: 70px;
float: left;
margin-top: 10px;
margin:10px;
background-color: black;
}
#red{
background-color: red;
}
#orange{
background-color: orange;
}
#yellow{
background-color: yellow;
}
#green{
background-color: green;
}
#blue{
background-color: blue;
}
#purple{
background-color: purple;
}
#brown{
background-color: brown;
}
#black{
background-color: black;
}
#white{
background-color: white;
}
#grey{
background-color: grey;
}