prtest/style.css

13 lines
180 B
CSS
Raw Permalink Normal View History

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