Muntashir Al-Islam fad8f99592 Add front-end for ADL
Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
2025-03-14 15:25:53 -07:00

34 lines
476 B
CSS

.tags ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
gap: 10px;
}
.tags ul > li {
border: 1px solid;
padding: 4px 16px;
border-radius: 16px;
font-size: small;
}
.tags ul > li[data-tag=delete] {
color: green;
}
.tags ul > li[data-tag=replace] {
color: purple;
}
.tags ul > li[data-tag=caution] {
color: orange;
}
.tags ul > li[data-tag=unsafe] {
color: red;
}
.refs {
margin-block-start: unset;
}