-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
85 lines (70 loc) · 1.43 KB
/
main.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
table {
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
body {
background-image: url(./images/beach.jpg);
}
td {
width: 100px;
height: 100px;
text-align: center;
font-family: 'Schoolbell', cursive;
font-size: 40px;
}
tr:nth-child(1) td:nth-child(1) {
border-right: 4px solid #92714E;
border-bottom: 4px solid #92714E;
}
tr:nth-child(1) td:nth-child(2) {
border-bottom: 4px solid #92714E;
}
tr:nth-child(1) td:nth-child(3) {
border-left: 4px solid #92714E;
border-bottom: 4px solid #92714E;
}
tr:nth-child(2) td:nth-child(1) {
border-right: 4px solid #92714E;
border-bottom: 4px solid #92714E;
}
tr:nth-child(2) td:nth-child(2) {
border-right: 4px solid #92714E;
border-bottom: 4px solid #92714E;
}
tr:nth-child(2) td:nth-child(3) {
border-bottom: 4px solid #92714E;
}
tr:nth-child(3) td:nth-child(1) {
border-right: 4px solid #92714E;
}
tr:nth-child(3) td:nth-child(2) {
border-right: 4px solid #92714E
}
h1 {
text-align: center;
color: #FB5D5C;
font-family: 'Cabin Sketch', cursive;
font-size: 55px;
padding-bottom: .5em;
}
p {
color: #44D2C9;
}
.message {
font-family: 'Cabin Sketch', cursive;
font-size: 30px;
color: #03484F;
text-align: center;
padding-top: 1.75em;
}
.message img {
height: 44px;
width: 44px;
}
td.X {
background: url('images/crab.png') no-repeat center/contain;
}
td.O {
background: url('images/starfish.png') no-repeat center/contain;
}