GITLAB

Marcelo Puebla / wrapper-demo

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • wrapper-demo
  • src
  • sass
  • _animations.scss
  • b08bd78fc   Add ... Browse Code ยป
    clase css de transicion
    Marcelo Puebla
    2020-03-27 15:56:51 -0300  
_animations.scss 314 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.modal-content,
.focus-in {
  animation: focus-in 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.simple-hover {
  transition: all 0.5s;
  &:hover {
    transform: scale(1.1);
  }
}