Spaces:
Running
Running
File size: 5,022 Bytes
b3b78f8 8552087 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 b3b78f8 fde8b8c 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 fde8b8c b3b78f8 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 b3b78f8 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 fde8b8c b3b78f8 4d0ad85 fde8b8c b3b78f8 4d0ad85 8552087 4d0ad85 8552087 4d0ad85 fde8b8c 4d0ad85 8552087 b3b78f8 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 fde8b8c b3b78f8 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 fde8b8c 4d0ad85 b3b78f8 fde8b8c b3b78f8 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c 4d0ad85 b3b78f8 4d0ad85 b3b78f8 4d0ad85 b3b78f8 fde8b8c 4d0ad85 fde8b8c 4d0ad85 fde8b8c b3b78f8 |
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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Manrope', sans-serif;
background: #0f0f1a;
color: #d9d9e6;
min-height: 100vh;
transition: background 0.5s, color 0.5s;
}
.container {
max-width: 1440px;
margin: 0 auto;
padding: 20px;
}
/* Header */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: rgba(20, 20, 30, 0.7);
backdrop-filter: blur(15px);
border-radius: 16px;
margin-bottom: 30px;
}
.logo h1 {
font-size: 2em;
font-weight: 800;
color: #00c4ff;
}
.tagline {
font-size: 0.9em;
color: #8a8ab3;
margin-left: 10px;
}
.nav {
display: flex;
align-items: center;
}
#theme-toggle {
background: none;
border: none;
cursor: pointer;
padding: 10px;
border-radius: 50%;
transition: background 0.3s, transform 0.3s;
}
#theme-toggle:hover {
background: rgba(255, 255, 255, 0.1);
transform: rotate(90deg);
}
.icon {
width: 24px;
height: 24px;
stroke: #d9d9e6;
}
/* Main Layout */
.main {
display: grid;
grid-template-columns: 3fr 1fr;
gap: 20px;
min-height: calc(100vh - 200px);
}
/* Panels */
.panel {
background: #14141e;
border-radius: 16px;
padding: 24px;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2), inset -2px -2px 4px rgba(255, 255, 255, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.panel:hover {
transform: translateY(-4px);
box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3), inset -4px -4px 8px rgba(255, 255, 255, 0.1);
}
.panel h2 {
font-size: 1.4em;
font-weight: 600;
color: #00c4ff;
margin-bottom: 16px;
}
/* Query Panel */
.query-panel .input-group {
display: flex;
flex-direction: column;
gap: 12px;
}
#query-input {
background: #1a1a26;
border: none;
border-radius: 12px;
padding: 16px;
font-size: 1em;
color: #d9d9e6;
resize: none;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s;
}
#query-input:focus {
outline: none;
box-shadow: inset 0 0 0 2px #00c4ff;
}
/* Buttons */
.btn {
padding: 12px 24px;
border: none;
border-radius: 12px;
font-size: 0.95em;
font-weight: 600;
cursor: pointer;
transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-action {
background: linear-gradient(135deg, #00c4ff, #ff007a);
color: #fff;
box-shadow: 0 4px 12px rgba(0, 196, 255, 0.3);
}
.btn-action:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 196, 255, 0.5);
}
/* Output Panels */
.output {
background: #1a1a26;
border-radius: 12px;
padding: 20px;
min-height: 120px;
font-size: 0.95em;
color: #b0b0cc;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* Settings Panel */
.settings-panel {
grid-row: span 2;
}
.settings {
display: flex;
flex-direction: column;
gap: 16px;
}
.control label {
font-size: 0.85em;
color: #8a8ab3;
margin-bottom: 8px;
display: block;
}
.control input,
.control select {
width: 100%;
background: #1a1a26;
border: none;
border-radius: 10px;
padding: 12px;
font-size: 0.9em;
color: #d9d9e6;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s;
}
.control input:focus,
.control select:focus {
outline: none;
box-shadow: inset 0 0 0 2px #00c4ff;
}
/* Footer */
.footer {
text-align: center;
padding: 20px 0;
font-size: 0.85em;
color: #606080;
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 20px;
}
/* Light Theme */
body.light {
background: #f5f5fa;
color: #1a1a2e;
}
body.light .header,
body.light .panel {
background: #ffffff;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1), inset -2px -2px 4px rgba(255, 255, 255, 0.3);
}
body.light .panel h2 {
color: #007bff;
}
body.light .output,
body.light #query-input,
body.light .control input,
body.light .control select {
background: #f0f0f5;
color: #1a1a2e;
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1);
}
body.light .control label {
color: #606080;
}
body.light .footer {
color: #8080a0;
}
body.light .icon {
stroke: #1a1a2e;
}
/* Animations */
@keyframes slideIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.panel, .footer {
animation: slideIn 0.5s ease-out forwards;
}
/* Responsive Design */
@media (max-width: 1024px) {
.main {
grid-template-columns: 1fr;
}
.settings-panel {
grid-row: auto;
}
}
@media (max-width: 600px) {
.container {
padding: 10px;
}
.header {
padding: 15px;
flex-direction: column;
gap: 10px;
}
.logo h1 {
font-size: 1.5em;
}
.panel {
padding: 16px;
}
.btn {
padding: 10px 20px;
}
} |