mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
25 lines
435 B
CSS
25 lines
435 B
CSS
#status-string {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.olympus-status-disconnected::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: red;
|
|
}
|
|
|
|
.olympus-status-connected::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: 00FF00;
|
|
} |