-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (50 loc) · 867 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
61
body {
line-height: 0px;
background-color: rgb(55, 48, 48);
}
h1 {
color: rgb(255, 255, 255);
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#color-palette {
display: flex;
justify-content: center;
align-items: center;
width: 700px;
}
.color {
display: inline-block;
width: 5ex;
height: 5ex;
border: solid black 1px;
margin: 5px;
text-align: center;
}
#pixel-board {
border: solid white 1px;
height: 528px;
display: inline-block;
width: 1100px;
margin-top: 10px;
}
.pixel {
width: 20px;
height: 20px;
background-color: white;
display: inline-block;
border: solid black 1px;
}
#clear-board {
background-color: black;
color: white;
border-radius: 15%;
border: solid 2px greenyellow;
width: 70px;
display: block;
margin-bottom: 10px;
}