CSS
This is all the CSS you will need to display changelog badges on your website
.badge {
display: inline-block;
font-size: 14px;
line-height: 16px;
color: #ffffff;
vertical-align: baseline;
white-space: nowrap;
background-color: #999999;
padding: 2px 9px;
border-radius: 9px;
text-align: center;
}
.badge-fix {
background-color: #dc3545;
}
.badge-change {
background-color: #fd7e14;
}
.badge-improvement {
background-color: #007bff;
}
.badge-new {
background-color: #28a745;
}
.badge-docs {
background-color: #6610f2;
}
.badge-efficiency {
background-color: #17a2b8;
}
.badge-remove {
background-color: #4F1319;
}
.badge-version {
min-width: 75px;
font-weight: 600;
font-size: 16px;
line-height: 18px;
background-color: #35087E;
}
.badge-square {
border-radius: 2px;
}