Update custom.css

This commit is contained in:
disposable-mailbox 2021-12-13 15:00:38 +01:00 committed by GitHub
parent c72620126e
commit a8c4701e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 1 deletions

View File

@ -111,4 +111,30 @@ footer {
}
#address-box-edit {
margin: 1rem;
}
}
// The CSS for the colored dot that represents your current status
$red:#e74c3c;
$orange:#e67e22;
$yellow:#f1c40f;
$green:#2ecc71;
.color-dot {
@include border-radius(99px);
display:inline-block;
width:10px;
height:10px;
margin-right:5px;
&.critical {
background-color:$red;
}
&.major {
background-color:$orange;
}
&.minor {
background-color:$yellow;
}
&.none {
background-color:$green;
}