ovh-angular-tail-logs
Version:
Poll a log API for displaying messages
42 lines (41 loc) • 713 B
CSS
.ovh-angular-tail-logs {
background-color: #122844;
color: white;
font-family: monospace;
padding: 10px;
height: 500px;
overflow-y: auto;
overflow-x: hidden;
}
.ovh-angular-tail-logs__cursor {
content: "";
display: inline-block;
background-color: white;
vertical-align: top;
width: 8px;
height: 17px;
-webkit-animation: ovh-tail-logs-blink 1s step-end infinite;
animation: ovh-tail-logs-blink 1s step-end infinite;
}
@-webkit-keyframes ovh-tail-logs-blink {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}
@keyframes ovh-tail-logs-blink {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}