14 lines
162 B
CSS
14 lines
162 B
CSS
/* Add your custom styles here */
|
|
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.card {
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.02);
|
|
}
|