Spaces:
Running
Running
File size: 973 Bytes
3980516 335139c 3980516 335139c 3980516 335139c 3980516 335139c 3980516 335139c 3980516 335139c 3980516 | 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 | /* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Box type button styles */
.box-type-btn {
@apply flex items-center justify-center p-3 border border-gray-300 rounded-lg text-gray-700 transition;
}
.box-type-btn:hover {
@apply bg-gray-100;
}
.box-type-btn.active {
@apply bg-blue-500 text-white border-blue-500;
}
.box-type-btn.active:hover {
@apply bg-blue-600;
}
/* Template card styles */
.template-card {
@apply p-2 rounded-lg cursor-pointer transition hover:bg-gray-50;
}
.template-card:hover {
@apply shadow-md;
}
/* Input range customization */
input[type="range"] {
@apply w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer;
}
input[type="range"]::-webkit-slider-thumb {
@apply appearance-none w-4 h-4 bg-blue-500 rounded-full cursor-pointer;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.box-type-btn {
@apply p-2 text-sm;
}
} |