/* The Mia! Accounting Flask Project * style.css: The style sheet for the accounting application. */ /* Copyright (c) 2023 imacat. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Author: imacat@mail.imacat.idv.tw (imacat) * First written: 2023/2/1 */ .accounting-clickable { cursor: pointer; } .btn-group .btn .accounting-search-input { min-height: calc(1em + .5rem + 2px); padding: 0 0.5rem; } .btn-group .btn .accounting-search-label button { border: none; background-color: transparent; color: inherit; padding-right: 0; } .form-floating > textarea.form-control { height: 6rem; } .accounting-dragged { color: #141619; background-color: #D3D3D4; } /** The card layout */ .accounting-card { padding: 2em 1.5em; margin: 1em; background-color: #E9ECEF; border-radius: 0.3em; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } .accounting-card-title { font-size: 1.8rem; font-weight: bolder; } .accounting-card-code { font-size: 1.4rem; color: #373b3e; } .accounting-sheet { padding: 2em 1.5em; margin: 1em; background-color: #F8F9FA; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } .accounting-sheet h2 { border-bottom: thick double slategray; } /** The option selector */ .accounting-selector-list { height: 20rem; overflow-y: scroll; } /** The transaction management */ .accounting-currency-control { background-color: transparent; } .accounting-currency-content { width: calc(100% - 3rem); } .accounting-entry-content { width: calc(100% - 3rem); background-color: transparent; } .accounting-entry-control { border-color: transparent; } .accounting-list-group-stripped .list-group-item:nth-child(2n+1) { background-color: #f2f2f2; } .accounting-list-group-stripped .list-group-item-success:nth-child(2n+1) { background-color: #c7dbd2; } .accounting-list-group-hover .list-group-item:hover { background-color: #ececec; } .accounting-transaction-entry { border: none; } .accounting-transaction-entry-header { font-weight: bolder; border-bottom: thick double slategray; } .list-group-item.accounting-transaction-entry-total { font-weight: bolder; border-top: thick double slategray; } /* The report table */ .accounting-report-table-header, .accounting-report-table-footer { font-size: 1.2rem; font-weight: bolder; } .accounting-report-table-header { border-bottom: thick double slategray; } .accounting-report-table-footer { font-style: italic; border-top: thick double slategray; } .accounting-report-table-row { display: grid; } a.accounting-report-table-row { color: inherit; text-decoration: none; } .accounting-report-table-row > div { padding: .5rem; } .accounting-report-table .accounting-amount { text-align: right; } .accounting-report-table-body .accounting-amount { font-style: italic; } .accounting-report-table-body .accounting-report-table-row:nth-child(2n+1) { background-color: #f2f2f2; } .accounting-report-table-body .accounting-report-table-row:hover { background-color: rgba(0, 0, 0, 0.075); } .accounting-journal-table .accounting-report-table-row { grid-template-columns: 1fr 1fr 2fr 4fr 1fr 1fr; } .accounting-ledger-table .accounting-report-table-row { grid-template-columns: 1fr 4fr 1fr 1fr 1fr; } .accounting-ledger-table .accounting-report-table-footer .accounting-report-table-row { grid-template-columns: 5fr 1fr 1fr 1fr; } .accounting-income-expenses-table .accounting-report-table-row { grid-template-columns: 1fr 2fr 4fr 1fr 1fr 1fr; } .accounting-income-expenses-table .accounting-report-table-footer .accounting-report-table-row { grid-template-columns: 7fr 1fr 1fr 1fr; } /* The accounting report */ .accounting-mobile-journal-credit { padding-left: 1rem; } .accounting-report-row { border: none; } a.accounting-report-row:hover { color: inherit; } .accounting-trial-balance-row.accounting-trial-balance-header { border-bottom: thick double slategray; font-weight: bolder; font-size: 1.2rem; } .accounting-trial-balance-row.accounting-trial-balance-header .accounting-amount { font-style: normal; } .accounting-trial-balance-row > div { width: 50%; } .accounting-trial-balance-row .accounting-amount { width: 50%; font-style: italic; } .accounting-trial-balance-row.accounting-trial-balance-total { border-top: thick double slategray; font-weight: bolder; font-size: 1.2rem; } /* The Material Design text field (floating form control in Bootstrap) */ .accounting-material-text-field { position: relative; min-height: calc(3.5rem + 2px); padding-top: 1.625rem; } .accounting-material-text-field > .form-label { position: absolute; top: 0; left: 0; height: calc(3.5rem + 2px); padding: 1rem 0.75rem; transform-origin: 0 0; transition: opacity .1s ease-in-out,transform .1s ease-in-out; } .accounting-material-text-field.accounting-not-empty > .form-label { opacity: 0.65; transform: scale(.85) translateY(-.5rem) translateX(.15rem); } /* The Material Design floating action buttons */ .accounting-material-fab { position: fixed; right: 2rem; bottom: 1rem; z-index: 10; flex-direction: column-reverse; } .accounting-material-fab .btn { border-radius: 50%; transform: scale(1.5); box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0,0,0,.12); display: block; margin-top: 2.5rem; } .accounting-material-fab .btn:hover, .accounting-material-fab .btn:focus { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0,0,0,.12); } .accounting-btn-material-fab { transition: transform .1s ease-in-out, right .1s ease-in-out, bottom .1s ease-in-out; } .show .accounting-btn-material-fab { transform: scale(1.5) rotate(-45deg); } .accounting-material-fab-speed-dial-group { position: absolute; right: -2rem; bottom: -7rem; text-align: right; opacity: 0; transform: scale(0.1); line-height: 5.5rem; transition: opacity .1s ease-in-out, transform .1s ease-in-out, right .1s ease-in-out, bottom .1s ease-in-out; } .show .accounting-material-fab-speed-dial-group { opacity: 1; transform: scale(0.6); right: -0.5rem; bottom: 0.7rem; } .accounting-material-fab-speed-dial-group .btn { background-color: white; white-space: nowrap; box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0,0,0,.12); } .accounting-material-fab-speed-dial-group .btn:hover, .accounting-material-fab-speed-dial-group .btn:focus { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0,0,0,.12); } /* The Material Design form switch */ @media(max-width:767px) { .form-switch { display: flex; flex-direction: row-reverse; justify-content: space-between; padding-left: 0; } }