File size: 400 Bytes
083161b 1cac528 083161b 1cac528 083161b 1cac528 083161b 1cac528 083161b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
#searchInput {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease;
}
#searchInput:focus {
box-shadow: 0 3px 10px rgba(66, 153, 225, 0.3);
}
.search-result:hover {
background-color: rgba(243, 244, 246, 0.5);
} |