-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (48 loc) · 845 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
body * {
font-family: "Russo One", "sans-serif";
}
h1 {
text-align: center;
font-size: 3em;
margin-top: 40px;
margin-bottom: 50px;
}
#game, #grid-box {
display: flex;
}
#grid-box, #status {
flex-direction: column;
align-items: center;
}
#game {
flex-direction: row;
justify-content: center;
}
table#grid {
background-color: black;
border-spacing: 3px;
}
td.cell {
height: 62px;
width: 62px;
background-color: #8B93C0;
}
.status {
background-color: black;
color: #CEE7FF;
letter-spacing: 2px;
font-size: 15px;
}
#remaining, #start-new, #completion {
width: 338px;
height: 40px;
text-align: center;
vertical-align: middle;
line-height: 40px;
}
#remaining, #completion {
margin-top: 15px;
}
#start-new {
margin-bottom: 15px;
}