Search Field
An input for search
Preview
HTML
<search>
<label>
Find a design
<input type="search" value="layout" maxlength="120">
</label>
</search>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
label {
display: grid;
gap: 0.4rem;
min-width: min(100%, 16rem);
font-size: 0.85rem;
font-weight: 700;
}
input {
min-height: 2.6rem;
padding: 0 0.9rem;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--paper);
font: inherit;
}