-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (53 loc) · 947 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 {
font-family: 'Arial', sans-serif;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.page {
margin-top: 30px;
}
label {
font-size: 1.2rem;
margin-right: 10px;
}
input[type='number'] {
font-size: 1.2rem;
padding: 5px 10px;
margin-right: 10px;
width: 70px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #f9f9f9;
}
button {
font-size: 1.2rem;
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #f9f9f9;
cursor: pointer;
}
.square {
background-color: white;
border: 1px solid black;
}
.color {
background-color: gray;
border: 1px solid black;
}
.gridContainer {
margin-top: 25px;
margin-right: auto;
margin-left: auto;
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(16, 1fr);
border: 5px solid black;
border-radius: 5px;
height: 500px;
width: 500px;
padding: 8px;
}