-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicTacToe.css
More file actions
73 lines (55 loc) · 937 Bytes
/
Copy pathTicTacToe.css
File metadata and controls
73 lines (55 loc) · 937 Bytes
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
h2 {
font-family: Helvetica; font-size: 28px; text-align: center; margin-top: 30px;
}
p
{
font-family: Helvetica; font-size: 20px;
}
div.playerClass
{
text-align: center; border-style: solid; margin-bottom: 30px; width:200px; margin-left: auto; margin-right: auto;
}
div.resetClass
{
text-align: center; width: 200px; margin-top: 30px; margin-left: auto; margin-right: auto;
}
.center {
margin-left: auto;
margin-right: auto;
}
#playerTurn
{
text-align: center;
}
#tic-tac-toe
{
border-collapse: separate;
text-align: center;
}
#tic-tac-toe td
{
width: 100px;
height: 100px;
padding: 0;
border: 1px solid black;
color: transparent;
}
#tic-tac-toe button
{
display: block;
border: none;
width: 100%;
height: 100%;
background: transparent;
color: black;
font-size: 40px;
cursor: pointer;
}
#tic-tac-toe button::-moz-focus-inner
{
border: none;
}
#tic-tac-toe button:focus
{
background: silver;
}