Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
506 B
2
Indexable
Never
main > div > article:first-of-type > section:first-of-type img {
  display: block;
  width: 13em;
  height: 13em;

  align-self: center;

  border-radius: 50%;
  animation: shadow 2s infinite linear;
}

@keyframes shadow {
  0% {
    box-shadow: -0.5em 0.5em 0 var(--secondere-color);
  }
  25% {
    box-shadow: 0.5em -0.5em 0 var(--secondere-color);
  }
  50% {
    box-shadow: -0.5em -0.5em 0 var(--them-color);
  }
  100% {
    box-shadow: 0.5em 0.5em 0 var(--them-color);
  }
}