mirror of
https://github.com/zizmorcore/zizmor.git
synced 2025-12-23 08:47:33 +00:00
34 lines
509 B
CSS
34 lines
509 B
CSS
.chip {
|
|
display: inline-block;
|
|
color: white;
|
|
padding: 0px 6px;
|
|
border-radius: 10px;
|
|
font-size: small;
|
|
vertical-align: middle;
|
|
font-style: normal;
|
|
}
|
|
|
|
.chip-recommended {
|
|
background: green;
|
|
}
|
|
|
|
.chip-recommended::before {
|
|
content: "recommended";
|
|
}
|
|
|
|
.chip-expert {
|
|
background: blue;
|
|
}
|
|
|
|
.chip-expert::before {
|
|
content: "for experts";
|
|
}
|
|
|
|
.chip-experimental {
|
|
color: black;
|
|
background: orange;
|
|
}
|
|
|
|
.chip-experimental::before {
|
|
content: "⚠️ experimental";
|
|
}
|