File size: 1,229 Bytes
e8c53c6 760d117 e8c53c6 760d117 e8c53c6 760d117 e8c53c6 760d117 e8c53c6 760d117 | 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 | /* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* Range input styling */
input[type="range"] {
-webkit-appearance: none;
height: 6px;
background: #e5e7eb;
border-radius: 3px;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
background: #3b82f6;
border-radius: 50%;
cursor: pointer;
}
/* Custom transitions */
.transition-fast {
transition: all 0.15s ease-in-out;
}
.transition-medium {
transition: all 0.3s ease-in-out;
}
.transition-slow {
transition: all 0.5s ease-in-out;
}
/* Custom shadow for panels */
.panel-shadow {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Custom focus styles */
.focus-visible:focus-visible {
outline: 2px solid #3b82f6;
outline-offset: 2px;
}
/* RAW loader styles */
#raw-loader {
z-index: 100;
transition: opacity 0.3s ease;
}
|