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
  • eb5847e3c   cambio formato trutas git Browse Code ยป
    Benjamin Rodriguez
    2019-10-01 12:01:26 -0300  
_animations.scss 228 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14
.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;
  }
}