-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (64 loc) · 1.1 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: "Roboto", sans-serif;
/* display: flex;
flex-direction: column; */
background-color: rgb(255, 255, 255);
}
h1 {
color: rgb(35, 96, 149);
text-align: center;
padding: 0 0;
}
button {
font-size: medium;
color: black;
border: none;
border-radius: 4px;
width: 128px;
height: 32px;
}
button:hover {
background-color: rgb(0, 54, 146);
color: white;
}
#buttons {
text-align: center;
}
#border{
width: 640px;
height: 640px;
margin: 16px auto;
border: 16px solid rgb(255, 70, 70);
border-radius: 16px;
background-color: black;
}
.grid {
display: flex;
/* flex-direction: column; */
justify-content: center;
/* gap: 2px; */
}
.square{
display: flex;
justify-content: center;
align-items: center;
/* keep as square for now */
flex-shrink: 0;
background-color: rgb(216, 216, 216);
color: black;
/* margin-top: 2px; */
width: 10px;
height: 10px;
/* padding: 2px 2px; */
}
.buttons {
display: flex;
gap: 12px;
/* align-items: center; */
justify-content: center;
}