23 lines
363 B
CSS
23 lines
363 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.input-group-lg .form-control, .input-group-lg .btn {
|
|
height: calc(2.5rem + 10px);
|
|
padding: 0.5rem 1rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.result-card {
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.result-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
#search-button i {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|