-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (71 loc) · 1.25 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
. {
margin: 0;
padding: 0;
font-family: 'Patua One';
}
body{
background-color: #224532;
}
h1{
text-align: center;
color: #ffffff;
}
td{
border: 2px solid #ffffff;
height: 70px;
width: 70px;
text-align: center;
vertical-align: middle;
cursor: pointer;
font-family: "lobster";
}
table{
border-collapse: collapse;
border-spacing: 0;
margin: 10px auto;
background-color: #cccd55;
}
table tr td{
width: 100px;
height: 100px;
border: 2px solid black;
font-size: 30px;
text-align: center;
}
table tr td:hover{
background-color: salmon;
cursor: pointer;
}
table tr:first-child td{
border-top: 0px;
}
table tr:last-child td{
border-bottom: 0px;
}
table tr td:first-child{
border-left: 0px;
}
table tr td:last-child{
border-right: 0px;
}
.winner {
width:240px;
height: 140px;
margin: 20px auto;
font-size: 60px;
text-align: center;
background-color: #00aa00;
}
.winner span {
font-size: 40px;
display: block;
}
button{
width: 240px;
height: 100px;
margin: 10px auto;
display: block;
border: none;
background-color: #ef76;
font-size: 45px;
}