File size: 3,304 Bytes
ecc1f3d 5fe5d48 ecc1f3d 5fe5d48 ecc1f3d 5fe5d48 ecc1f3d 5fe5d48 ecc1f3d 5fe5d48 ecc1f3d |
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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
/* Custom animations and global styles */
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
}
@keyframes gradient-shift {
0%, 100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
.gradient-animate {
background: linear-gradient(-45deg, #0ea5e9, #d946ef, #0ea5e9, #d946ef);
background-size: 400% 400%;
animation: gradient-shift 15s ease infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Glass morphism effect */
.glass {
background: rgba(31, 41, 55, 0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(75, 85, 99, 0.3);
}
/* Glow effects */
.glow-primary {
box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}
.glow-secondary {
box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}
/* Smooth transitions */
* {
transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
/* Text selection */
::selection {
background: rgba(14, 165, 233, 0.3);
}
/* Focus styles */
.focus-ring:focus {
outline: none;
ring: 2px;
ring-color: #0ea5e9;
ring-offset: 2px;
}
/* Hover lift effect */
.hover-lift {
transition: transform 0.2s ease;
}
.hover-lift:hover {
transform: translateY(-4px);
}
/* Loading animation */
.loading-dots::after {
content: '';
animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
0%, 20% {
content: '';
}
40% {
content: '.';
}
60% {
content: '..';
}
80%, 100% {
content: '...';
}
}
/* 3D Canvas styles */
#3d-canvas {
width: 100%;
height: 100%;
display: block;
border-radius: 8px;
}
/* Preview container enhancements */
#preview-container {
position: relative;
background: linear-gradient(135deg, #1e293b, #0f172a);
border-radius: 12px;
overflow: hidden;
}
#preview-container::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, #0ea5e9, #d946ef, #0ea5e9);
border-radius: 12px;
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}
#preview-container:hover::before {
opacity: 0.3;
}
/* Loading spinner for canvas */
.canvas-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
border: 3px solid rgba(14, 165, 233, 0.3);
border-top: 3px solid #0ea5e9;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Style button active state */
.style-btn.active {
background: linear-gradient(135deg, #0ea5e9, #d946ef);
color: white;
}
/* Responsive grid adjustments */
@media (max-width: 768px) {
.grid-responsive {
grid-template-columns: 1fr;
}
} |