updraft / assets /shared.css
Nicholas Celestin
Build update — 2026-05-22T18:34:00.912Z
3f22414
raw
history blame contribute delete
591 Bytes
/* === 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; }
}