app.component.scss 6.08 KB
@import url('https://fonts.googleapis.com/css?family=Abel&display=swap');
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
* {
    font-family: 'Abel', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.side_menu_wrapper {
    background: rgba(41, 40, 91, 1);
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 55px;
    .top_banner {
        .top_image {
            width: 60px;
            height: 60px;
            float: left;
            border-radius: 50%;
            background-color: #fff;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                border-radius: 50%;
            }
        }
        .top_detail {
            width: calc(100% - 60px);
            float: left;
            padding: 7px;
            padding-left: 15px;
            h4 {
                margin: 0px;
                padding: 0px;
                color: #fff;
            }
            p {
                margin: 0px;
                padding: 0px;
                color: #fff;
                color: rgba(176, 174, 199, 1);
            }
        }
    }
}

.sidemenu_list {
    padding-top: 30px;
    ul {
        margin: 0px;
        padding: 0px;
        li {
            list-style: none;
            color: #fff;
            font-weight: 200;
            font-size: 15px;
            padding: 10px;
            font-size: 16px;
            &:focus {
                background-color: rgba(40, 36, 88, 1);
            }
            &:hover {
                background-color: rgba(40, 36, 88, 1);
            }
            .version {
                color: rgba(176, 174, 199, 1);
                font-size: 14px;
            }
        }
        .sub_menu {
            padding-left: 25px;
            margin-bottom: 40px;
            padding-top: 10px;
            ul {
                margin: 0px;
                padding: 0px;
                li {
                    list-style: none;
                    color: rgba(176, 174, 199, 1);
                }
            }
        }
    }
}

.common_tab {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 50px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 7px rgba(215, 213, 228, 0.5);
    -moz-box-shadow: 0px 0px 5px 7px rgba(215, 213, 228, 0.5);
    box-shadow: 0px 0px 5px 7px rgba(215, 213, 228, 0.5);
    ul {
        margin: 0px;
        padding: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        li {
            list-style: none;
            display: inline-block;
            height: 100%;
            text-align: center;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 25px;
        }
        .icon_sec {
            width: 50px;
            height: 50px;
            background-image: url('../assets/icon_sprite.png');
            margin: 0 auto;
            background-repeat: no-repeat;
            background-size: 450px;
        }
        .m1_icon {
            background-position: top -6px left -249px;
        }
        .m1_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -6px left -249px;
        }
        .m2_icon {
            background-position: top -3px left -88px;
        }
        .m2_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -3px left -88px;
        }
        .m3_icon {
            background-position: top -6px left -167px;
        }
        .m3_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -6px left -167px;
        }
        .m4_icon {
            background-position: top -6px left -5px;
        }
        .m4_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -6px left -5px;
        }
        .m5_icon {
            background-position: top -6px left -325px;
        }
        .m5_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -6px left -325px;
        }
        .m6_icon {
            background-position: top -6px left -398px;
        }
        .m6_icon_act {
            background-image: url('../assets/icon_sprite_active.png') !important;
            background-position: top -6px left -398px;
        }
    }
}

.common-pop-wrapper {
    width: 100%;
    height: 90px !important;
    position: fixed;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 99;
    .pop_inner {
        margin: 0 auto;
        width: 95%;
        padding: 10px;
        background-color: #fff;
        box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        display: flex;
        position: relative;
        .img-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            background-color: #f9f9f9;
            display: block;
            img {
                width: 70px;
                min-width: 70px;
                height: 70px;
                border-radius: 8px;
                background-color: #f9f9f9;
            }
        }
        .content {
            display: flex;
            -webkit-box-align: center;
            flex-direction: column;
            text-align: left;
            justify-content: center;
            padding-left: 12px;
            overflow: hidden;
            h1 {
                color: rgba(59, 57, 77, 1);
                margin: 0px;
                font-weight: bold;
                font-size: 18px;
            }
            p {
                margin-bottom: 0;
                line-height: 1;
                margin-top: 8px;
            }
        }
    }
    span {
        width: 20px;
        position: absolute;
        right: 4px;
        top: 4px;
    }
}