HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/crm/public_html/wwwroot/assets/scss/theme/_invoice.scss
/**========================
    88.  Invoice CSS Start
=============================**/
.invoice{
    p{
        color:$light-text;
    }
    .invo-header{
        padding-bottom:15px;
        margin-bottom:15px;
        border-bottom: 1px solid $light-gray;
    }   
    .table-striped{
        tbody{
            tr{
                &:nth-of-type(odd){
                    background-color:rgba($primary-color,0.05);
                    --bs-table-accent-bg:unset;
                }
                h6{
                    text-transform:capitalize;
                    color:$primary-color;
                }
            }
        }
    }
    .invo-profile{
        margin-bottom: 15px;        
    }
}

@media only screen and (max-width:1199px){
    
    .invoice{
        h4{
            margin-bottom: 0px;
        }
        h3{
           margin-bottom: 0px;
        }
        .invo-header{
            .media-left{
                img{
                    width: 55% !important;
                }
            }
        }
        .invo-profile{
            .media{
                margin-bottom: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid $light-gray;                
            }
        }
    }
}   

@media only screen and (max-width: 991px){
    .invoice{
        .card {
            .card-body{
                padding:20px;
            }
        }
        h4{
            font-size:20px;
        }
        h3{
            font-size:20px;
        }
        table{
            td{
                min-width:150px;
                &:first-child{
                    min-width:280px;
                }
            }
        }       
    }
}

@media only screen and (max-width:767px){
    .invoice{
        .invo-pal{
            margin-top:15px;
            text-align: left !important;
        }
    }
}

@media only screen and (max-width:575px){
    .invoice {
        h4{
            font-size:18px;
        }
        h3{
           font-size:14px;
        }
         p{
            font-size:13px;
         }
        .invo-header{
            .media-body{
                text-align:right;
            }
        }
        .text-xs-center{
            margin-top:20px;
            text-align:center !important;
        }
        .text-md-end{
            text-align:left;
        }
    }
}

@media only screen and (max-width:420px){
    .invoice {
        .invo-header {
            .media-left{
                img{
                    width: 50% !important;
                }
            }
        }       
        .invo-profile {
            .media {
                display: block;
                .media-body{
                    margin-left: 0 !important;
                    margin-top: 10px;
                }
            }
        }
    }
}


/**========================
    88.  Invoice CSS endp
==========================**/