added more styling to sysmon

This commit is contained in:
2025-03-08 19:20:25 +01:00
parent e04868b5d0
commit 49987610cf
3 changed files with 52 additions and 29 deletions

View File

@@ -1,19 +1,42 @@
.sysmon{
* {
border-radius: 0;
}
$border-middle: 1px solid black;
background: transparent;
color: black;
}
.danger{
color: red
}
.ram{
background: tan;
}
.disk{
background: mediumturquoise;
}
.cpu{
background: lightgreen;
}
.net{
background: plum;
.first {
border-radius: 1.5rem 0 0 1rem;
border-right: $border-middle;
}
.middle {
border-right: $border-middle;
}
.last {
border-radius: 0 1rem 1.5rem 0;
}
.danger{
color: red
}
.ram{
background: tan;
}
.disk{
background: mediumturquoise;
}
.cpu{
background: lightgreen;
}
.net{
background: plum;
}
}