-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (45 loc) · 952 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
body {
font: normal 16px comic sans ms;
text-align: center;
}
#tic-tac-toe {
word-spacing: 0px;
border-spacing: 0px;
border-collapse: separate;
margin: 30px auto;
}
#tic-tac-toe td {
border: 3px solid #000;
height: 100px;
width: 100px;
text-align: center;
font: bold 90px comic sans ms;
}
#tic-tac-toe tr:first-child td {
border-top: none;
}
#tic-tac-toe tr:last-child td {
border-bottom: none;
}
#tic-tac-toe tr td:first-child {
border-left: none;
}
#tic-tac-toe tr td:last-child {
border-right: none;
}
#tic-tac-toe td.X {
color: #0c12b3;
}
#tic-tac-toe td.O {
color: #e80505;
}
#scoreboard .score {
text-align: center;
font-size: 30px;
}
#scoreboard .score#player1 {
color: #ec1017;
}
#scoreboard .score#player2 {
color: #060693;
}