13 lines
180 B
CSS
13 lines
180 B
CSS
|
|
/* Custom styles for the greeting card */
|
||
|
|
body {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
}
|
||
|
|
|
||
|
|
.card {
|
||
|
|
transition: transform 0.3s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.card:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
}
|