... and these?
This field must be corrected
Behind the scenes
.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; }
Behind the scenes
.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; }