29 lines
486 B
CSS
29 lines
486 B
CSS
#accounts {
|
|
margin: 20px;
|
|
border-collapse: collapse;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
#accounts caption {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
padding: 1em 0 0.5em 0;
|
|
}
|
|
|
|
#accounts td,#accounts th {
|
|
padding: 0.5em;
|
|
border-bottom: 1px solid #000000;
|
|
}
|
|
|
|
#accounts th {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#accounts th.account_title {
|
|
font-size: 1.5em;
|
|
padding: 1em 0 0.1em 0.1em;
|
|
}
|
|
|
|
#accounts td.col_odd, #accounts th.col_odd {
|
|
background-color: #c0c0c0;
|
|
} |