-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathstyles.css
69 lines (60 loc) · 949 Bytes
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
html,
body {
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "VT323", monospace;
}
header {
background: #7e7f9a;
color: white;
}
header h1 {
margin: 0 0 50px;
padding: 25px;
}
#canvas {
border: 3px solid #393e41;
display: grid;
grid-template-columns: repeat(10, 50px);
height: 500px;
margin: 0 auto;
width: 500px;
}
.cell {
border: 1px solid #393e41;
box-sizing: border-box;
display: inline-block;
margin: 0;
height: 50px;
width: 50px;
}
#current-color {
border: 2px solid #393e41;
display: block;
height: 50px;
margin: 25px auto;
width: 50px;
}
#palette {
height: 50px;
margin: 25px auto;
text-align: center;
width: 80%;
}
#palette .color {
border: 2px solid #393e41;
border-radius: 50%;
box-sizing: border-box;
display: inline-block;
margin: 10px;
height: 50px;
width: 50px;
}