Spaces:
Running
Running
File size: 591 Bytes
3f22414 | 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 | /* === AI Tools — Global Overrides === */
:root {
--pico-font-size: 100%;
scrollbar-width: thin;
scrollbar-color: var(--pico-secondary-border) var(--pico-background-color);
}
/* Nav brand */
nav .brand {
color: #6366f1;
}
nav .brand-icon {
height: 2.25em;
vertical-align: -0.35em;
margin: 0 -0.5em;
}
/* Compact form controls inside tool UIs */
.controls select,
.controls input {
margin-bottom: 0;
}
/* Feature sections */
[id^="feature-"] {
animation: fadeIn 0.15s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
|