-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (58 loc) · 955 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
62
63
64
65
66
67
68
69
body {
text-align: center;
margin: 1px
}
header {
position: fixed;
background-color: rgb(210, 255, 229);
border: double yellowgreen;
top: 0;
left: 0;
right: 0;
}
#title {
margin-top: 0px;
margin-bottom: 0px;
}
#color-palette {
line-height: 40px;
}
.color {
display: inline-block;
vertical-align: middle;
border: 1px solid black;
width: 30px;
height: 30px;
margin: 2px;
transition: 0.2s;
}
#clear-board {
font-size: 14px;
margin: 5px auto 1px auto;
}
#custom-board {
line-height: 0px;
display: inline-flex;
}
#board-size {
width: 50px;
height: min-content;
font-size: 15px;
margin-top: 9px;
margin-left: 5px;
}
#generate-board {
font-size: 15px;
}
#pixel-board {
/* ref: https://www.w3schools.com/css/css_grid.asp */
display: inline-grid;
border: 1px solid black;
margin-top: 150px;
}
.pixel {
background-color: white;
border: 1px solid black;
width: 40px;
height: 40px;
}