File size: 1,185 Bytes
fa6316c 8989dd6 fa6316c 8614a6b fa6316c 8614a6b fa6316c 8989dd6 fa6316c 8989dd6 fa6316c 8989dd6 fa6316c 8989dd6 fa6316c 8989dd6 fa6316c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
}
/* SEO-friendly hidden content */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
/* Improve readability and accessibility */
a:focus, button:focus {
outline: 2px solid #3B82F6;
outline-offset: 2px;
}
img {
max-width: 100%;
height: auto;
}
#drop-zone {
transition: all 0.3s ease;
}
#drop-zone.active {
border-color: #3B82F6;
background-color: #EFF6FF;
}
.result-card {
transition: transform 0.2s ease;
}
.result-card:hover {
transform: translateY(-4px);
}
.loader {
border-top-color: #3B82F6;
-webkit-animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} |