.site-header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    border-bottom:  1px #ccc solid;
    padding: 0 10px;
    line-height: @site-header-height;
    background: #fff;
    z-index: 9999;
    height: @site-header-height;

    display: flex;
    justify-content: space-between;

    .site-logo{
        font-weight: bold;
        font-size:30px;
        display: flex;
        align-items: center;
        img{
            height: 85%;
            padding: 5px;
        }
    }

    .site-links{
        .site-link{
            margin-left: 10px;
            display: inline-block;
            a {
                border-bottom: none;
                color: @sidebar-link-color;
                &:hover{
                    color: @sidebar-link-hover-color;
                }
            }
        }
    }
}