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
96
97
98
99
100
101
102
#lecture {
position: absolute;
background: url("images/sens-lecture.png") left top no-repeat;
width: 50px;
height: 40px;
left: -25px;
top: -25px;
}
#table {
display: table;
table-layout: fixed;
text-align: center;
border-collapse: collapse;
font-family: "SFToontimeRegular";
font-size: 24px;
color: #FFF;
margin-top: 25px;
}
#table > div {
display: table-row;
border-top: 1px solid #999;
border-bottom: 1px solid #999;
}
#table > div:first-child, #table > div:first-child > div {
border-top: none;
border-bottom: 1px solid #FFF;
}
#table > div:last-child, #table > div:last-child > div {
border-bottom: none;
height: 18px;
}
#table > div > div {
display: table-cell;
width: 52px;
height: 35px;
border-left: 1px solid #999;
border-right: 1px solid #999;
position: relative;
}
#table > div > div:first-child {
border-left: none;
border-right: 1px solid #FFF;
width: 25px;
}
#table > div > div:last-child {
border-right: none;
width: 25px;
}
#table .head {
width: 100%;
height: 100%;
}
#table .head, .card > div {
line-height: 35px;
}
.card {
cursor: pointer;
}
.card-container {
width:100%;
height: 100%;
}
.card {
position: relative;
width:100%;
height: 100%;
}
.card > div {
position: absolute;
width:100%;
height: 100%;
}
.card > div:first-child {
background: url("images/rature.png") center no-repeat;
text-indent: -99999px;
}
.card > div:last-child {
visibility: hidden;
}
.card > div:last-child > div {
display: inline;
font-size: 13px;
}
.card.flip > div:first-child {
visibility: hidden;
}
.card.flip > div:last-child {
visibility: visible;
}