diff --git a/www/index.html b/www/index.html index 9621402..6b88f81 100644 --- a/www/index.html +++ b/www/index.html @@ -163,7 +163,7 @@ } .status-bar { - background-color: black; + background-color: transparent; border: 1px solid black; width: calc(100% - 0.188rem); height: 100%; @@ -200,22 +200,31 @@ z-index: 10; } + .status-bar.Online { + background-color: black; + } + .status-bar.Unknown { - background-color: transparent; - background: radial-gradient(circle at center, rgb(235, 235, 235) 3px, transparent 3px); border: 0; } + .status-bar.Unknown::before { + content: ""; + width: 6px; + height: 6px; + border-radius: 100%; + background: rgb(235, 235, 235); + position: absolute; + inset: 0; + margin: auto; + } + .status-bar.Degraded { background-color: white; background-image: linear-gradient(45deg, black 25%, transparent 25%, transparent 50%, black 50%, black 75%, transparent 75%, transparent); background-size: 8px 8px; } - .status-bar.Offline { - background-color: white; - } - .status-bar.Offline::before { content: "✕"; position: absolute; @@ -449,8 +458,8 @@