.release-changed,
.release-fixed,
.release-feature,
.release-deprecated,
.release-issue {
    position: relative;
    margin-left: 100px;
}

.release-changed::before,
.release-fixed::before,
.release-feature::before,
.release-deprecated::before,
.release-issue::before {
    position: relative;
    top: -3px;
    border-radius: 14px;
    display: inline-block;
    width: 90px;
    height: 28px;
    line-height: 28px;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    left: -100px;
}

/* Colours for each type of changelog entry. */

.release-changed::before {
    content: "changed";
    background-color: #F4B400;
    color: #fff;
}

.release-fixed::before {
    content: "fixed";
    background-color: #4285F4;
    color: #fff;
}

.release-feature::before {
    content: "feature";
    background-color: #0F9D58;
    color: #fff;
}

.release-deprecated::before {
    content: "deprecated";
    background-color: #DB4437;
    color: #fff;
}

.release-issue::before {
    content: "issue";
    background-color: #DB4437;
    color: #fff;
}

