Blame view

frontend/web/css/node_modules/animate.css/source/flippers/flipOutX.css 338 Bytes
8df80521   Alexander Karnovsky   not fixed commite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  @keyframes flipOutX {
    from {
      transform: perspective(400px);
    }
  
    30% {
      transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
      opacity: 1;
    }
  
    100% {
      transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      opacity: 0;
    }
  }
  
  .flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
  }