File size: 2,427 Bytes
76f1992 0c8ce47 76f1992 0c8ce47 76f1992 0c8ce47 76f1992 0c8ce47 76f1992 0c8ce47 76f1992 0c8ce47 76f1992 | 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 120 121 122 123 124 125 126 127 128 129 130 131 132 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
overflow-x: hidden;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #ef4444;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #dc2626;
}
/* Custom slider styling */
.slider-red::-webkit-slider-thumb {
appearance: none;
width: 22px;
height: 22px;
border-radius: 50%;
background: #ef4444;
cursor: pointer;
border: 3px solid #1f2937;
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}
.slider-red::-moz-range-thumb {
width: 22px;
height: 22px;
border-radius: 50%;
background: #ef4444;
cursor: pointer;
border: 3px solid #1f2937;
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}
/* Canvas container glow effect */
#canvas-container {
position: relative;
}
#canvas-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 0.75rem;
background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), transparent);
pointer-events: none;
z-index: 1;
}
/* Color preset hover effects */
.color-preset {
transition: all 0.2s ease;
position: relative;
overflow: hidden;
}
.color-preset::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.1);
opacity: 0;
transition: opacity 0.2s ease;
}
.color-preset:hover::after {
opacity: 1;
}
.color-preset.active {
transform: scale(0.95);
box-shadow: inset 0 0 0 2px white;
}
/* Pulse animation for active auto-rotate */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
}
}
.pulse {
animation: pulse 2s infinite;
}
/* Responsive adjustments */
@media (max-width: 768px) {
#canvas-container {
height: 400px !important;
}
}
@media (max-width: 640px) {
#canvas-container {
height: 350px !important;
}
.text-4xl {
font-size: 2rem;
}
} |