Spaces:
Running
Running
File size: 2,372 Bytes
cf89615 e3fa7eb cf89615 e3fa7eb cf89615 e3fa7eb cf89615 e3fa7eb cf89615 e3fa7eb cf89615 e3fa7eb cf89615 |
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 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary-color: #10b981; /* green-500 */
--secondary-color: #f97316; /* orange-500 */
--dark-bg: #111827; /* gray-900 */
--dark-card: #1f2937; /* gray-800 */
--dark-text: #f9fafb; /* gray-50 */
--dark-text-secondary: #d1d5db; /* gray-300 */
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--dark-bg);
color: var(--dark-text);
line-height: 1.6;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: var(--primary-color);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #059669;
}
/* Slider customization */
input[type="range"] {
height: 6px;
border-radius: 3px;
background: #374151;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--primary-color);
cursor: pointer;
box-shadow: 0 0 2px 0 #555;
transition: background .15s ease-in-out;
}
input[type="range"]::-webkit-slider-thumb:hover {
background: #059669;
}
input[type="range"]::-moz-range-thumb {
width: 20px;
height: 20px;
border: 0;
border-radius: 50%;
background: var(--primary-color);
cursor: pointer;
box-shadow: 0 0 2px 0 #555;
transition: background .15s ease-in-out;
}
/* Custom select arrow */
select {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.5rem center;
background-size: 1em;
padding-right: 2.5rem;
}
/* Animation for cards */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fadeIn 0.5s ease-out;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container {
padding-left: 1rem;
padding-right: 1rem;
}
h1 {
font-size: 2.5rem;
}
.grid-cols-3 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
} |