File size: 2,462 Bytes
060dc2a e74ba5a |
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.glass-morphism {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.upload-zone {
border: 2px dashed #cbd5e1;
transition: all 0.3s ease;
}
.upload-zone:hover {
border-color: #0ea5e9;
background-color: #f0f9ff;
}
.upload-zone.drag-active {
border-color: #0ea5e9;
background-color: #e0f2fe;
transform: scale(1.02);
}
/* Scanning animation */
.scanning-line {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(to right, transparent, #0ea5e9, transparent);
box-shadow: 0 0 10px #0ea5e9;
animation: scan 2s linear infinite;
}
@keyframes scan {
0% {
top: 0;
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
top: 100%;
opacity: 0;
}
}
/* Custom slider styles */
input[type="range"].slider {
-webkit-appearance: none;
appearance: none;
background: transparent;
}
input[type="range"].slider::-webkit-slider-track {
background: #e5e7eb;
height: 8px;
border-radius: 4px;
}
input[type="range"].slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: linear-gradient(135deg, #0ea5e9, #0284c7);
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
margin-top: -6px;
}
input[type="range"].slider::-webkit-slider-thumb:hover {
transform: scale(1.1);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
input[type="range"].slider::-moz-range-track {
background: #e5e7eb;
height: 8px;
border-radius: 4px;
}
input[type="range"].slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: linear-gradient(135deg, #0ea5e9, #0284c7);
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
border: none;
}
input[type="range"].slider::-moz-range-thumb:hover {
transform: scale(1.1);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
|