-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (66 loc) · 1.06 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
font-family: Helvetica;
color: #34495e;
}
.container {
background-image:url('background.png');
width: 100%;
height: 100%;
}
h1 {
font-size: 2.3em;
text-align: center;
margin: 0px 0px 10px 0px;
}
table {
margin: 0 auto;
border-spacing: 5px;
}
td {
width: 100px;
height: 100px;
background-color: #95A5A6;
border-radius: 5px;
color: #FFF;
text-align: center;
font-size: 5em;
transition: 0.25s;
}
td:hover {
background-color: #BDC3C7;
transition: 0.25s;
}
.reset-button {
position: relative;
font-size: 1.2em;
color: #FFF;
padding: 10px;
background-color: #2980B9;
transition: 0.25s;
border-radius: 5px;
margin: 0 auto;
margin-top: 10px;
left: 78px;
width: 140px;
text-align: center;
}
.reset-button:hover {
background-color: #3498DB;
}
td.X {
background-color: #C0392B;
}
td.O {
background-color: #34495E;
}
.winner {
width: 316px;
color: #FFF;
background-color: #D35400;
margin: 0 auto;
margin-top: 10px;
border-radius: 5px;
font-size: 2em;
text-align: center;
padding: 10px 0px;
}