Skip to content
Snippets Groups Projects
Select Git revision
  • 4422ff7489d5ba95974e7556f76176869f4cee56
  • master default protected
2 results

app.css

Blame
  • app.css 976 B
    /* app css stylesheet */
    
    body { padding-top: 70px; }
    
    #wrapper {
        width: 100%;
        padding: 0;
    }
    
    #sidebar-wrapper {
        height: 100%;
        padding-right: 0px;
        padding-top: 20px;
    }
    
    #sidebar-wrapper #nav {
        width: 95%;
    }
    
    #page-content-wrapper {
        width: 75%;
        padding: 15px;
    }
    
    /* Mobile narrow view */
    @media screen and (max-width: 767px) {
        .row-offcanvas {
            position: relative;
            -webkit-transition: all 0.25s ease-out;
            -moz-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
        }
        .row-offcanvas-right
        .sidebar-offcanvas {
            right: -41.6%;
        }
    
        .row-offcanvas-left
        .sidebar-offcanvas {
            left: -41.6%;
        }
        .row-offcanvas-right.active {
            right: 41.6%;
        }
        .row-offcanvas-left.active {
            left: 41.6%;
        }
        .sidebar-offcanvas {
            position: absolute;
            top: 0;
            width: 41.6%;
        }
        #sidebar-wrapper {
            padding-top:0;
        }
    
    }