-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (81 loc) · 1.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body{
text-align: center;
margin-top: 200px;
background-color: cornsilk;
font-family: 'Pangolin', cursive;
}
header{
transform: translateY(-170px);
}
.page{
width: 330px;
height:305px;
background-color:greenyellow;
border: 30px solid blanchedalmond;
border-radius: 10px;
margin:auto auto;
display: block;
transform: translateY(-30px);
}
.btns{
font-size: 18px;
margin-top: 40px;
padding: 10px;
background-color: transparent;
border:none;
}
.btns:hover{
border:2px dashed white;
border-radius: 12px;
background-color:darkorange;
}
#one-player-option,
#table{
display: none;
}
td{
border:2px solid #333;
width: 100px;
height: 100px;
text-align: center;
cursor: pointer;
vertical-align: middle;
padding: 6px;
font-size: 60px;
}
table{
border-collapse: collapse;
}
#table{
padding: 20px;
}
table tr:first-child td {
border-top: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:first-child {
border-left: 0;
}
table tr td:last-child {
border-right: 0;
}
.back-icon{
position: relative;
top: 5px;
}
#result-icon{
display: none;
transform: translateY(-80px);
}
#score-board{
display: none;
justify-content: center;
gap: 35px;
margin-bottom: 20px;
transform: translateY(-110px);
}
#result{
transform: translateY(-90px);
}