-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh2h_display.css
64 lines (52 loc) · 882 Bytes
/
h2h_display.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
html {
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
color: whitesmoke;
background-color: rgba(45,45,45,0);
width: 640px;
height: 360px
}
#fetching {
width:100%;
text-align:center;
font-size: 60px;
}
table {
width: 100%;
border-collapse: collapse;
opacity:1;
transition: all 0.5s ease;
}
th{
border-bottom: 2px solid #CCCCCC;
text-align:center;
font-size:60px;
}
th:nth-child(1){
width:30px;
}
th:nth-child(3){
width:30px;
}
.hidden{
display:none;
}
.visuallyhidden {
opacity: 0;
}
td{
border-bottom: 1px solid rgba(30,30,30,0.5);
text-align: center;
padding: 5px;
opacity:1;
transition: all .3s linear .3s;
}
.p1.winner {
background-color: var(--p1-color);
}
.p2.winner {
background-color: var(--p2-color);
}
.center {
text-align: center;
}