2018-06-30 16:20:54 +02:00
|
|
|
nav .status {
|
|
|
|
float: right;
|
|
|
|
background-color: #009ee0;
|
|
|
|
color: white;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
&.connecting,
|
|
|
|
&.running {
|
|
|
|
background-color: #ffb400;
|
2018-07-19 22:22:25 +02:00
|
|
|
animation: blinkDot 1s infinite steps(1);
|
2018-06-30 16:20:54 +02:00
|
|
|
}
|
|
|
|
&.offline,
|
|
|
|
&.failed {
|
|
|
|
background-color: #dc0067;
|
2018-07-19 22:22:25 +02:00
|
|
|
animation: blinkDot 2s infinite steps(1);
|
2018-06-30 16:20:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes blinkDot {
|
|
|
|
50% {
|
|
|
|
background-color: rgba(255, 255, 255, 0.25);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|