Flash

global.css
.flash {
  animation: flash 1s ease-in-out both;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman