| .d-flex { |
| display: flex; |
| } |
| |
| .justify-content-center { |
| justify-content: center; |
| } |
| |
| .flip-card-container { |
| margin: 0 5px; |
| } |
| |
| .flip-card { |
| perspective: 1000px; |
| } |
| |
| .flip-card-inner { |
| position: relative; |
| width: 1000px; |
| height: 215px; |
| text-align: center; |
| transition: transform 1.5s; |
| transform-style: preserve-3d; |
| } |
| |
|
|
| .out{ |
| opacity: 0; |
| transition: opacity 1s; |
| } |
|
|
| .in{ |
| opacity: 1; |
| transition: opacity 1s; |
| } |
|
|
| |
| |
| |
| |
| .flip-card-front, .flip-card-back { |
| position: absolute; |
| width: 100%; |
| height: 100%; |
| backface-visibility: hidden; |
| } |
| |
| .flip-card-front { |
| color: black; |
| z-index: 2; |
| } |
| |
| .flip-card-back { |
| |
| z-index: 1; |
| } |