url-notes-extractor / style.css
laredoj's picture
Location and name should be extracted from the URL, Notes should be optional
52375dd verified
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}
/* Animation for extracted data */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
#location, #name, #notes {
animation: fadeIn 0.3s ease-out forwards;
}
/* Button hover effects */
button {
transition: all 0.2s ease;
}
button:hover {
transform: translateY(-1px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Focus styles for better accessibility */
input:focus, textarea:focus, button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}