forked from junior-devleague/pixel-painter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (79 loc) · 1.12 KB
/
styles.css
File metadata and controls
97 lines (79 loc) · 1.12 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
85
86
87
88
89
90
91
92
93
94
95
96
h1 {
font-size: 30px;
}
/*body {
background-color: blue;
}*/
#entireContainer {
height: 200px;
margin: auto;
padding: 10px;
width: 80%;
}
#colorsAndFunctionality {
float: left;
height: 200px;
width: 15%;
}
#backgroundName {
height: 10px;
width: 10px;
}
#paletContainer {
box-sizing: border-box;
justify-content: space-around;
list-style: none;
margin: 10px 10px 10px 10px;
padding: 0;
}
#functionalityBar {
margin: 10px 10px 10px 10px;
}
#backgroundName {
text-align: center;
}
.palet {
border-style: solid;
height: 10px;
margin-top: 2px;
padding: 2px;
width: 10px;
}
#canvasContainer {
height: 200px;
margin-left: 15%;
}
.rows {
margin: 0px 0px 0px 0px;
padding: 0em;
width: 100%;
}
.canvas {
border-style: solid;
display: inline-block;
height: 5px;
margin: 0px 0px 0px 0px;
padding: 1em;
width: 5px;
}
#red {
background-color: red;
}
#white {
background-color: white;
}
#purple {
background-color: purple;
}
#yellow {
background-color: yellow;
}
#black {
background-color: black;
}
#gray {
background-color: gray;
}
#hi {
background-color: white;
}