18 lines
291 B
CSS
18 lines
291 B
CSS
/* custom.css */
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
.card {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.card-img-top {
|
|
background-color: #e9ecef;
|
|
}
|
|
.card {
|
|
transition: transform 0.15s ease-in-out;
|
|
}
|
|
.card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
|
|
} |