Files
documentation/static/css/accounting.css
T

223 lines
4.6 KiB
CSS
Raw Normal View History

2015-07-09 11:49:42 +02:00
/* FIXME: hack to reverse hack in theme CSS */
main.index .toctree-wrapper > .row:first-child > .col-md-3 {
margin: 0 !important;
}
2021-04-30 12:40:29 +02:00
.doc-aside {
border: 1px solid #d5d5d5;
background-color: #f8f8f8;
padding: 0 !important;
font-size: 14px;
}
.doc-aside p{
padding: .5rem;
}
.intro-list {
margin-top: 1em;
}
2015-03-16 10:21:29 +01:00
.intro-list p {
margin: 0;
cursor: pointer;
}
.related {
2021-04-30 12:40:29 +02:00
background-color: hsl(317deg 16% 90%) !important;
transition: .3s;
}
.secondary {
2021-04-30 12:40:29 +02:00
background-color: hsl(180deg 67% 94%) !important;
transition: .3s;
}
.highlight-op {
2021-04-30 12:40:29 +02:00
background-color: hsl(317deg 16% 90%) !important;
transition: .3s;
}
label:hover,
label:hover,
.highlighter-list li:hover {
background-color: hsl(0, 0%, 94%);
cursor: pointer;
}
2021-04-30 12:40:29 +02:00
/*.accounts-table {
font-size: 90%;
2021-04-30 12:40:29 +02:00
}*/
.accounts-table dl {
margin: 0;
2021-04-30 12:40:29 +02:00
padding: .5rem 0;
}
.accounts-table h4, .accounts-table h5 {
2021-04-30 12:40:29 +02:00
font-weight: 700;
text-transform: uppercase;
padding: .5rem;
}
.accounts-table h4 {
text-align: center;
}
/* table root */
.accounts-table > div {
display: flex;
}
/* P&L & Balance Sheet columns */
.accounts-table > div > div {
flex: 1;
2021-04-30 12:40:29 +02:00
padding: .5rem;
}
.accounts-table > div > div:first-child {
border-right: 1px solid #d5d5d5
}
/* sections */
.accounts-table > div > div div {
display: flex;
flex-direction: column;
}
.accounts-table > div > div div > h5 {
order: 99;
2021-04-30 12:40:29 +02:00
border-top: 1px solid #d5d5d5;
border-bottom: 1px solid #d5d5d5;
/*text-transform: uppercase;*/
/*padding: 0.3em 0;*/
/*border-image: linear-gradient(to bottom, transparent, rgb(221, 225, 231), transparent, rgb(221, 225, 231), transparent) 5 0 10 / 3px 0 3px;*/
}
.accounts-table > div > div div div > h5 {
/* slightly smaller than normal 14px h5 size */
font-size: 12.5px;
2021-04-30 12:40:29 +02:00
/*border-image: linear-gradient(to bottom, transparent, rgb(221, 225, 231), transparent, rgb(221, 225, 231), transparent) 5 0 5;*/
}
.accounts-table dt {
2021-04-30 12:40:29 +02:00
font-weight: 700;
padding: 0 .5rem;
}
.accounts-table dt span {
font-style: italic;
}
.accounts-table dt span:last-child {
font-style: normal;
}
2015-02-19 12:17:50 +01:00
2015-04-17 21:59:21 +02:00
.values-table tr > * {
text-align: right;
}
.values-table tr > :first-child {
text-align: left;
}
2015-02-25 16:02:40 +01:00
/* 3-column (thing, debit, credit) tables */
/* 2nd and 3rd th & td of each row right-aligned and 1/4th width */
.d-c-table tr > :nth-child(2),
.d-c-table tr > :nth-child(3) {
width: 25%;
text-align: right;
}
@media (min-width: 992px) {
2015-07-08 13:24:24 +02:00
.accounts-table, .doc-aside .highlighter-target {
2021-04-30 12:40:29 +02:00
/*font-size: 90%;*/
/*color: #8d8d8d !important;*/
}
2015-07-08 13:24:24 +02:00
.doc-aside .highlighter-target th {
2021-04-30 12:40:29 +02:00
font-weight: 400;
/*font-size: 110%;*/
}
2015-07-08 13:24:24 +02:00
.accounts-table .related, .doc-aside .highlighter-target .related {
2021-04-30 12:40:29 +02:00
/*background-color: #eee !important;*/
color: #7A436B !important;
}
2015-07-08 13:24:24 +02:00
.accounts-table .secondary, .doc-aside .highlighter-target .secondary {
2021-04-30 12:40:29 +02:00
background-color: #eee !important;
color: #7A436B !important;
}
2015-04-17 21:59:21 +02:00
.chart-of-accounts .highlight-op,
.valuation-chart .highlight-op {
background-color: #030035;
}
.chart-of-accounts .highlight-op,
.valuation-chart-continental .highlight-op {
background-color: #030035;
}
.chart-of-accounts .highlight-op,
.valuation-chart-anglo-saxon .highlight-op {
background-color: #030035;
}
}
2021-04-30 12:40:29 +02:00
.entries-listing {
padding: .5rem;
}
2015-03-16 10:27:15 +01:00
.journal-entries .entries-listing p {
font-style: italic;
}
2015-03-17 11:39:23 +01:00
#reconciliation .reconciliation-example div.buttons {
2015-03-13 12:26:23 +01:00
display: flex;
justify-content: center;
2021-04-30 12:40:29 +02:00
margin-bottom: 1rem;
2015-03-13 12:26:23 +01:00
}
2015-03-17 11:39:23 +01:00
#reconciliation .reconciliation-example div.buttons button {
2015-03-13 12:26:23 +01:00
margin: 0 0.5em;
}
@keyframes reconcile {
0% {
2021-04-30 12:40:29 +02:00
opacity: 1;
padding-top: 5px;
padding-bottom: 5px;
2021-04-30 12:40:29 +02:00
background-color: transparent;
}
2015-03-13 12:26:23 +01:00
60% {
2021-04-30 12:40:29 +02:00
background-color: hsl(317deg 16% 90%);
}
2015-03-13 12:26:23 +01:00
80% {
2021-04-30 12:40:29 +02:00
opacity: 1;
padding-top: 5px;
padding-bottom: 5px;
}
100% {
2021-04-30 12:40:29 +02:00
opacity: 0;
padding-top: 0;
padding-bottom: 0;
2015-03-13 12:26:23 +01:00
display: none;
}
}
2015-03-13 12:26:23 +01:00
.reconcile1 .invoice1, .reconcile1 .invoice1 td {
2021-04-30 12:40:29 +02:00
animation: reconcile 2s;
2015-03-13 12:26:23 +01:00
}
.reconcile2 .invoice2, .reconcile2 .invoice2 td {
2021-04-30 12:40:29 +02:00
animation: reconcile 2s;
}
2015-03-13 12:26:23 +01:00
.invoice1.reconciled, .invoice2.reconciled {
display: none;
}
2021-04-30 12:40:29 +02:00
blockquote.highlights, blockquote.highlights p{
2015-07-08 13:24:24 +02:00
border: none;
2021-04-30 12:40:29 +02:00
margin-top: 1rem;
margin-bottom: 1rem;
text-align: center;
}
/*
lists of alternatives
*/
.alternatives-controls label {
display: block;
}
dl.alternatives > dt,
dl.alternatives > dd {
display: none;
}
dl.alternatives > dd {
margin-left: 0;
}