-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (53 loc) · 963 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
#board {
width: 800px;
margin: 0 auto;
}
h1 {
font-family: 'Indie Flower';
font-size: 72px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
text-align: center;
margin: 5px;
}
h3 {
font-family: 'Indie Flower';
font-size: 24px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
text-align: center;
margin: 20px;
}
.cell {
height: 140px;
width: 140px;
padding-left: 75px;
cursor: pointer;
}
.ver {
border-left: solid 10px;
border-right: solid 10px;
}
.hor {
border-top: solid 10px;
border-bottom: solid 10px;
}
table {
margin: 0 auto;
}
[data-symbol="x"] {
background-image: url('img/X.gif');
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
[data-symbol="o"] {
background-image: url('img/O.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}