@import '../../colors';

.top-bar {
    .logo {
        max-height: 100px;
        width: auto;
    }
}

.background {
    background-color: $darkgrey;
}

.main {
    width: calc(100% - 200px);
    padding-left: 30px;
    padding-top: 25px;
    padding-right: 45px;
    color: rgb(38, 38, 38);
}

.menu {

    .fixed-wrapper {
        position: fixed;
        height: 100%;
        background-color: $asphalt;
        width: 200px;
    }

    padding: 0;
    color: #f4f4f4;
    max-width: 200px;
    min-height: 100%;
    background-color: $asphalt;

    i.fa {
        float: left;
        font-size: 20px;
        text-align: center;
        transition-duration: 0.3s;

        max-width: 30px;
        max-height: 30px;
        line-height: 30px;
    }

    li {

        a {
            padding: 5px 15px;
            float: left;
            width: 100%;
            &.router-link-active, &:hover {
                background-color: $yellow;
                color: $asphalt;
            }
        }

        width: 100%;
        position: relative;
        cursor: pointer;
        float: left;

        .badge {
            background-color: #e74c3c;
            width: auto;
            line-height: 60%;
            margin-top: 5px;
            padding: 5px;
            font-size: 15px;
            border-radius: 0;
        }
    }

    span {
        text-align: center;
        float: left;
        padding: 5px 20px;
    }
}

.user-wrapper {
    position: relative;
    z-index: 10;
    padding: 15px;
    padding-top: 0;
    background-color: $cyan;
    color: white;
    float: left;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;

    h5.name {
        text-align: center;
        padding-bottom: 20px;
    }

    img.thumb {
        border-radius: 50%;
        display: block;
        margin: 0 auto;
        width: 85px;
        padding-top: 15px;
    }

    .dropdown {
        position: absolute;
    }
}

