-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
58 lines (51 loc) · 931 Bytes
/
site.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
html, body {
width: 100%;
height: 100%;
}
body {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
margin: 0;
background: rgb(250, 250, 250);
}
#root {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#controls {
width: 300px;
text-align: center;
margin: auto;
margin-bottom: 22px;
}
#board-container {
display: flex;
flex-wrap: wrap;
width: 300px;
height: 300px;
background: white;
border: 0.5px solid rgb(200, 200, 200);
}
#board-container .cell {
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 32px;
font-weight: 500;
margin: 0;
border: 0.5px solid rgb(200, 200, 200);
box-sizing: border-box;
cursor: pointer;
transition: 0.2s;
}
#board-container .cell:hover {
background: rgb(250, 250, 250);
}
#copyright {
font-size: 14px;
color: rgb(100, 100, 100);
text-align: center;
}