/* * demo.css * File include item demo only specific css only ******************************************************************************/ .menu .app-brand.demo { height: 64px; margin-top: 12px; } .app-brand-logo.demo svg { width: 22px; height: 38px; } .app-brand-text.demo { font-size: 1.75rem; letter-spacing: -0.5px; text-transform: lowercase; } /* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */ /* Detached navbar */ .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page { padding-top: 76px !important; } /* Default navbar */ .layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page { padding-top: 64px !important; } /* Navbar page z-index issue solution */ .content-wrapper .navbar { z-index: auto; } /* * Content ******************************************************************************/ .demo-blocks > * { display: block !important; } .demo-inline-spacing > * { margin: 1rem 0.375rem 0 0 !important; } /* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */ .demo-vertical-spacing > * { margin-top: 1rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing.demo-only-element > :first-child { margin-top: 0 !important; } .demo-vertical-spacing-lg > * { margin-top: 1.875rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing-lg.demo-only-element > :first-child { margin-top: 0 !important; } .demo-vertical-spacing-xl > * { margin-top: 5rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing-xl.demo-only-element > :first-child { margin-top: 0 !important; } .rtl-only { display: none !important; text-align: left !important; direction: ltr !important; } [dir='rtl'] .rtl-only { display: block !important; } /* * Layout demo ******************************************************************************/ .layout-demo-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 1rem; } .layout-demo-placeholder img { width: 900px; } .layout-demo-info { text-align: center; margin-top: 1rem; } /* * loader ******************************************************************************/ .loading { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: white; z-index: 999999999; justify-content: center; align-items: center; } /* * Alert ******************************************************************************/ @keyframes slideInUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } } @keyframes slideOutDown { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(100%); } } .alert-animate { animation: slideInUp 0.5s ease forwards; } .alert-dismiss { animation: slideOutDown 0.3s ease forwards; } #alert { bottom: 0 !important; margin-bottom: 0 !important; padding-bottom: 1rem; } @media screen and (max-width: 768px) { #alert { bottom: 0 !important; margin-bottom: 0 !important; padding-bottom: 0rem; } } /* * Dropdown ******************************************************************************/ .dropdown { position: static; } /* * Balance Sheet ******************************************************************************/ .balance-sheet { padding: 30px; font-family: Arial, sans-serif; background-color: #fff; } .balance-head1 { font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 5px; } .balance-head2 { font-size: 18px; text-align: center; color: #666; margin-bottom: 30px; } .balance-section { margin-bottom: 40px; } .balance-head3 { font-size: 20px; background-color: #28a745; color: white; padding: 10px; margin-bottom: 20px; } .balance-head4 { font-size: 16px; color: #333; font-weight: bold; margin-bottom: 10px; } .item-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed #ddd; } .total-line { font-weight: bold; background-color: #f8f9fa; padding: 8px 12px; display: flex; justify-content: space-between; border-top: 2px solid #dee2e6; margin-top: 10px; } .final-total { font-weight: bold; background-color: #e9ecef; font-size: 18px; padding: 10px 12px; display: flex; justify-content: space-between; border-top: 3px double #333; margin-top: 30px; } /* * Profit-Loss ******************************************************************************/ .header-section { text-align: center; } .header-section h1 { font-size: 1.5rem; margin-bottom: 5px; } .header-section h2 { font-size: 1.2rem; margin-bottom: 5px; } .header-section h3 { font-size: 1rem; margin-bottom: 15px; color: #666; } .btn-new-construction { background-color: #4c9ed9; color: #fff; padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; position: absolute; top: 20px; right: 20px; } .btn-new-construction:hover { background-color: #3b8aba; } .pl-table { width: 100%; border-collapse: collapse; /* margin: 10px; */ } .pl-table thead th { background-color: #e3e3e3; font-weight: 600; padding: 10px; text-align: left; border-bottom: 2px solid #ccc; } .pl-table tbody tr { border-bottom: 1px solid #ddd; } .first-col { width: 60%; padding: 8px; } .amount-col { width: 13%; padding: 8px; text-align: right; white-space: nowrap; } .child-indent { padding-left: 40px; } .arrow { display: inline-block; margin-right: 5px; transition: transform 0.2s ease; cursor: pointer; font-size: 0.9rem; } .arrow.rotated { transform: rotate(90deg); } .hidden { display: none; } .total-row, .final-row { font-weight: bold; background-color: #fafafa; border-bottom: 2px solid #000; } .final-row-label { background-color: #d9ebd7; } .final-row-amount { background-color: #d9ebd7; font-weight: bold; } @media (max-width: 768px) { .pl-table { width: 100%; display: block; } } .inline-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid #ccc; border-top-color: #333; border-radius: 50%; animation: spin .6s linear infinite; margin-left: 6px; vertical-align: middle; } @keyframes spin { to { transform: rotate(360deg); } } .wrapper { padding: 1rem; } .addr-box { border:1px solid #ddd; border-radius:6px; padding:1rem; } .item-status { width:auto; min-width: 180px; } .badge { display:inline-block; padding:.35em .6em; border-radius:999px; font-size:.75rem; line-height:1; } .bg-success{ background:#198754; color:#fff; } .bg-warning{ background:#fbbc05; color:#111; } .bg-danger{ background:#dc3545; color:#fff; } .bg-info{ background:#0dcaf0; color:#111; } .bg-secondary{ background:#6c757d; color:#fff; } .summary-card { border:1px solid #e9ecef; border-radius:6px; } .summary-card .row-line { display:flex; justify-content:space-between; padding:.4rem 0; } .summary-card .row-line strong { font-weight:600; } select:disabled, input[type="checkbox"][disabled]{ opacity:.6; cursor:not-allowed; } @media (min-width:992px){ .two-col { display:flex; gap:1.25rem; } .two-col .left { flex: 1 1 70%; } .two-col .right{ flex: 1 1 30%; } .order-summary-sticky { position: sticky; top: 90px; } }