Spaces:
Running
Running
File size: 4,055 Bytes
fe44f69 5bda8a3 fe44f69 5bda8a3 fe44f69 5bda8a3 fe44f69 5bda8a3 fe44f69 5bda8a3 fe44f69 9e61e06 fe44f69 |
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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
/* Global Styles */
:root {
--primary-color: #3b82f6;
--secondary-color: #6366f1;
--dark-bg: #111827;
--light-bg: #f9fafb;
--card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a1a1a1;
}
/* Smooth Transitions */
* {
transition: background-color 0.3s ease, border-color 0.3s ease;
}
/* Gradient Text */
.gradient-text {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Code Block Styling */
pre.code-block {
background: #1a202c;
color: #e2e8f0;
padding: 1.5rem;
border-radius: 0.5rem;
overflow-x: auto;
font-family: 'JetBrains Mono', monospace;
font-size: 0.875rem;
line-height: 1.5;
border-left: 4px solid var(--primary-color);
}
/* Card Hover Effects */
.hover-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
transform: translateY(-4px);
box-shadow: var(--card-shadow-hover);
}
/* Pulse Animation for AI Elements */
@keyframes pulse-slow {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
}
.pulse-slow {
animation: pulse-slow 2s infinite;
}
/* Custom Button Styles */
.btn-primary {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
/* Chat styles */
.chat-container {
display: flex;
flex-direction: column;
height: 100%;
}
.chat-messages {
flex: 1;
overflow-y: auto;
padding: 1rem;
}
.chat-input {
border-top: 1px solid #e5e7eb;
padding: 1rem;
}
.message {
max-width: 80%;
margin-bottom: 1rem;
padding: 0.75rem 1rem;
}
.message-user {
margin-left: auto;
background: linear-gradient(135deg, #3b82f6, #6366f1);
color: white;
border-radius: 1rem 1rem 0.25rem 1rem;
}
.message-ai {
background: #f3f4f6;
color: #1f2937;
border-radius: 1rem 1rem 1rem 0.25rem;
}
/* Modal styles */
.modal-overlay {
position: fixed;
inset: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 50;
}
.modal-content {
background: white;
border-radius: 0.5rem;
max-width: 32rem;
width: 100%;
max-height: 90vh;
overflow-y: auto;
}
.btn-outline {
background: transparent;
color: var(--primary-color);
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--primary-color);
cursor: pointer;
}
.btn-outline:hover {
background: var(--primary-color);
color: white;
}
/* Loading Spinner */
.spinner {
border: 3px solid rgba(59, 130, 246, 0.1);
border-radius: 50%;
border-top: 3px solid var(--primary-color);
width: 24px;
height: 24px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.mobile-hidden {
display: none;
}
.mobile-full-width {
width: 100%;
}
}
/* Dark Mode Support (for future use) */
.dark-mode {
background-color: var(--dark-bg);
color: #f3f4f6;
}
.dark-mode .card {
background-color: #1f2937;
border-color: #374151;
} |