.banner {
min-height: 2em;
background-color: gold;
border-radius: 7px;
}
.banner.fall-down {
transform: translateY(-100%);
}
.banner.fall-down.active {
transform: translateY(0);
}
.slow {
transition: all 1.5s ease;
}
.card {
background-size: cover;
width: 161px;
height: 221px;
}
.card.ace {
background-image: url('../images/aceHearts.png');
}
.card.move {
transform: translateX(300px);
}
.slow {
transition: all 1.5s ease;
}
.banner {
min-height: 2em;
background-color: gold;
border-radius: 7px;
}
.banner.errorMessage { background-color: red; }
.banner.zoom-in {
transform: scale( 0.1 );
}
.banner.zoom-in.active {
transform: scale( 1 );
}
.slow { transition: all 1.5s ease; }
.card {
background-size: cover;
width: 161px;
height: 221px;
}
.card.ace { background-image: url('../images/aceHearts.png'); }
.card.queen { background-image: url('../images/queenHearts.png'); }
.card.king { background-image: url('../images/kingHearts.png'); }
.card.grow.active {
transform: scale( 1.5 );
}
.slow { transition: all 1.5s ease; }
.banner {
min-height: 2em;
background-color: gold;
border-radius: 7px;
}
.banner.fade-out {
opacity: 1;
}
.banner.fade-out.active {
opacity: 0;
}
.slow { transition: all 1.5s ease; }
.card {
background-size: cover;
width: 161px;
height: 221px;
}
.card.fade-out {
opacity: 1;
}
.card.fade-out.active {
opacity: 0;
}
.slow { transition: all 1.5s ease; }
.banner {
min-height: 2em;
background-color: gold;
border-radius: 7px;
}
.banner.feedback {
width: 300px;
transform: rotate(-90deg);
}
.card {
background-size: cover;
width: 161px;
height: 221px;
}
.card.playing {
transform: translateY(120%) rotate(180deg);
}
.card.playing.active {
transform: translate(50%, -25%) rotate(0deg);
}
.slow { transition: all 1.5s ease; }