forked from gSchool/pixel-art-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (48 loc) · 726 Bytes
/
style.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
.grid-unit {
background-color: white;
height: 30px;
width: 30px;
border-style: solid;
border-width: 2px;
margin: 0px !important;
padding: 0;
display: inline-block;
}
#color-indicator {
width: 60px;
}
.grid-container {
width: 100%;
height: 75%;
}
.grid-row {
display: flex;
justify-content: center;
}
#white {
background-color: white;
}
#black {
background-color: black;
}
#green {
background-color: green;
}
#red {
background-color: red;
}
#blue {
background-color: blue;
}
#yellow {
background-color: yellow;
}
#purple {
background-color: purple;
}
#magenta {
background-color: magenta;
}
#pink {
background-color: pink;
}