mirror of
https://github.com/MuntashirAkon/android-debloat-list.git
synced 2025-04-23 05:26:51 +08:00
34 lines
476 B
CSS
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;
|
|
} |