Newer
Older
face / face.css
.face-contour{
  position : absolute;
  display: block;
  width: 50vh;
  height: 50vh;
  border-radius: 50%;
  border: solid 3px black;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.eye-contour{
  width: 17vh;
  height: 17vh;
  border-radius: 50%;
  position: absolute;
  border: solid 3px black;
  animation: rotate 3s infinite linear;
}

.left-eye-contour{
  top: 22%;
  left: 7%;
}

.right-eye-contour{
  top: 22%;
  right: 7%;
}

.mouce{
  display: inline-block;
  width: 60%;
  height: 20%;
  border-radius: 50% / 0 0 100% 100%;
  border: solid 3px black;
  position : absolute;
  top: 70%;
  left: 20%;
}

.eye{
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: black;
  top: 2%;
  left: 2%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}