80 lines
1.6 KiB
CSS
80 lines
1.6 KiB
CSS
/*
|
|
ledger-pyreport
|
|
Copyright © 2020 Lee Yingtong Li (RunasSudo)
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
body {
|
|
font-family: 'TeX Gyre Termes', 'Nimbus Roman', 'Times New Roman', 'Liberation Serif', Times, serif;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
font-size: medium;
|
|
font-weight: normal;
|
|
margin: 0.2em 0 1em 0;
|
|
}
|
|
|
|
table.ledger {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table.ledger td, table.ledger th {
|
|
padding: 2px 2px 2px 2px;
|
|
}
|
|
|
|
table.ledger th {
|
|
text-align: left;
|
|
}
|
|
table.ledger th.h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
table.ledger tr.total td {
|
|
font-weight: bold;
|
|
|
|
border-top: 1pt solid black;
|
|
border-bottom: 1pt solid black;
|
|
}
|
|
|
|
table.ledger.onedesc tr td:not(:first-child), table.ledger.onedesc tr th:not(:first-child) {
|
|
text-align: right;
|
|
width: 6em;
|
|
}
|
|
|
|
table.ledger a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
table.ledger a:hover {
|
|
color: blue;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media screen {
|
|
body {
|
|
padding: 2em;
|
|
}
|
|
}
|