.projectsListing {
    background-color: #ddd;
    border-radius: 7px;
    padding: 10px;

    ul {
        list-style: none;
    }

    .name {
        width: 300px;
        display: inline-block;
        font-size: 14px;
        padding-right: 10px;
    }

    .branch {
        width: 100px;
        font-size: 11px;
        color: @oceanBlue;
        padding-right: 10px;
    }

    .ahead {
        display: inline-block;
        width: 16px;
        border-radius: 100%;
        background-color: @fireRed;
        color: #fff;
        text-align: center;
        line-height: 16px;
        font-size: 11px;
        margin-right: 2px;
    }

    .behind {
        display: inline-block;
        width: 16px;
        border-radius: 100%;
        background-color: @fireRed;
        color: #fff;
        text-align: center;
        line-height: 16px;
        font-size: 11px;
        margin-right: 2px;
    }
}