File size: 508 Bytes
01fdb75 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | .d-flex {
display: flex;
}
.justify-content-center {
justify-content: center;
}
.card-container {
/* position: relative; */
margin: auto;
width: 1000px;
}
.card-front{
text-align: center;
width: 360px;
height: 360px;
}
.card-back{
width: 360px;
height: 360px;
display: none;
}
/* .slide {
position: absolute;
width: 100%;
height: 500px;
left: 100%;
transition: all 0.5s ease-in-out;
}
.slide:first-child {
left: 0;
} */ |