blob: d68e1ab135ae2fa842fcbd0e50cba6b836925531 (
plain) (
blame)
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
|
.left {
float: left;
width: 50%;
}
.right {
float: right;
width: 50%;
}
.hidden {
display: none !important;
}
.fixedCenter {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
.fixedFirstThird {
position: absolute;
left: 35%;
}
.fixedThird {
position: absolute;
right: 35%;
}
table, tbody, tr {
border: 0;
!important;
}
td, th {
text-align: center !important;
border: 1px solid white !important;
border-collapse: collapse;
}
.description {
margin-top: 16px;
}
|