#log {
    width: 280px;
}

#log > div {
    margin-top: 10px;
}

.fading {
    animation: fader 1s linear infinite;
}

@keyframes fader {
    50% {
        opacity: 0;
    }
}

.flashing-yellow {
    animation: flasher-yellow 400ms linear infinite;
}

@keyframes flasher-yellow {
    50% {
        color: #CEEE22FF;
    }
}

.flashing-red {
    animation: flasher-red 400ms linear infinite;
}

@keyframes flasher-red {
    50% {
        color: #fd0003;
    }
}

.flashing-green {
    animation: flasher-green 400ms linear infinite;
}

@keyframes flasher-green {
    50% {
        color: #3a8701;
    }
}