aboutsummaryrefslogtreecommitdiffstats
path: root/app/core/header/layouts/horizontal-navigation/header.less
blob: f5a7e96620d9e702c12d508ef948a7c185f1512c (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
#header {

    background-color: #1370A3;
    height: 80px;

    display: flex;
    flex-direction: row;
    align-items: center;

    .header-logo {
        .p_24;
        .logo-white;
        width: 300px;
        margin: 0 30px;
        vertical-align: middle;
        line-height: 56px;
        text-indent: 55px;
    }

    ul.header-top-menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0;

        li {
            list-style: none;
            margin: 0 20px;

            a {
                .p_18_m;
                text-decoration: none;
            }
        }
    }

    .header-right {
        margin: 0 30px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;

        .header-chat {

        }

        .header-avatar {

        }
    }

}