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
| .THIS {
| margin: 8px;
| border-collapse: collapse;
| font-weight: light;
| font-size: 14px;
| }
| .THIS td {
| font-family: menlo;
| font-weight: 300;
| }
|
| .THIS .principal {
| color: #0288D1;
| }
|
| .THIS .interest {
| color: #EF6C00;
| }
|
| .THIS th {
| text-align: right;
| font-weight: 600;
| }
|
| .THIS th,
| .THIS td {
| text-align: right;
| border: solid 1px #EEEEEE !important;
| padding: 1px 4px;
| vertical-align: middle;
| }
|
| .THIS .bar {
| display: inline-block;
| border: none;
| height: 8px;
| }
|
| .THIS .bar.principal {
| background-color: #0288D1;
| margin-right:1px;
| }
|
| .THIS .bar.interest {
| background-color: #EF6C00;
| margin-left:1px;
| }
|
| .THIS .stretch {
| width: 100%;
| padding-left:0;
| padding-right:0;
| }
|
| .THIS .flex {
| display: -webkit-flex;
| display: flex;
| }
|
|