-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (55 loc) · 902 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
62
63
html {
font-family: sans-serif;
}
h1 {
text-align: center;
margin-top: 20px;
margin-bottom: 100px;
}
#score-1, #score-2 {
color: #000;
font-size: 30px;
}
.scoreboard {
width: 800px;
height: 80px;
margin-left: auto;
margin-right: auto;
}
.player {
color: gray;
font-size: 20px;
}
.tic-tac-toe {
margin-right: auto;
margin-left: auto;
margin-top: 20px;
width: 600px;
cursor: pointer;
}
.tic-tac-toe td {
width: 150px;
height: 150px;
text-align: center;
vertical-align: center;
}
table {
border-collapse: collapse;
}
table td, table th {
border: 1px solid black;
}
table tr:first-child td {
border-top: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:first-child,
table tr th:first-child {
border-left: 0;
}
table tr td:last-child,
table tr th:last-child {
border-right: 0;
}