summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/app.component.less
blob: 42889ef2b065dec17701551bb57bd0df4764d3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@media screen and (min-width: 1200px){
    .siderContent{
        height:240px;
        img{
            margin-top: 40px;
        }
    }
    .main{
        margin-left: 330px
    }
}
@media screen and (max-width: 1200px){
    .siderContent{
        height:180px;
        img{
            transform: scale(0.8);
            margin-top: 26px;
        } 
    }
    .main{
        margin-left: 260px
    }  
}

nz-layout {
    nz-sider {
        position: fixed;
        left: 0;
        z-index: 100;
        // overflow: auto; 
        height: 100vh; 
        background: #313449 url('../assets/images/UUIMenuBar.png') no-repeat;
        background-size: 100%;
        .siderContent{
            width: 100%;
            text-align: center;
            img{
                transition: .5s;
            }
        }
        ul {
            background: transparent;
            width: 100%;
            li {
                margin: 0;
                font-size: 16px;
                color: #ffffff!important;
                background: transparent;
                a{
                    color: #ffffff;
                }
                span {
                    font-size: 16px;
                }
                i {
                    width: 16px;
                    height: 16px;
                    margin-right: 12px;
                    img{
                        width: 20px;
                    }
                }
                .icon-services {
                    background: url(../assets/images/icon.png) no-repeat 0px -16px;
                }
                ul {
                    background: transparent!important;
                    li{
                        font-size: 12px;
                        color: #ffffff!important;
                        background: transparent!important;
                    }
                    li:hover,li a:hover{
                        color: #ffffff!important;
                    }
                    li.activeMenuList,li.activeMenuList a{
                        color: #0DA9E2!important;
                    }
                }
            }
            li:hover,li a:hover{
                color: #ffffff!important;
            }
            li.activeMenuBar{
                color: #ffffff!important;
                background:linear-gradient(90deg,rgba(7,169,225,1) 0%,rgba(48,217,196,1) 100%);
            }
            hr {
                margin: 0 auto;
                background-color: #39434f;
                height: 1px;
                border: none;
                width: 80%;
            }
        }
    }
    .main{
        height:100vh;
        position:relative; 
    }
}