mirror of
https://gitea.com/gitea/docs.git
synced 2026-06-15 14:41:26 +00:00
Leads to about half the build time. Reviewed-on: https://gitea.com/gitea/docs/pulls/149 Co-authored-by: TheFox0x7 <thefox0x7@noreply.gitea.com> Co-committed-by: TheFox0x7 <thefox0x7@noreply.gitea.com>
24 lines
518 B
CSS
24 lines
518 B
CSS
.input {
|
|
display: flex;
|
|
height: 55px;
|
|
padding: 0 2rem;
|
|
align-items: center;
|
|
border-radius: calc(var(--ifm-global-border-radius) / 2);
|
|
border: none;
|
|
background: var(--palette-rock);
|
|
font-size: var(--font-size-normal);
|
|
color: var(--ifm-color-white);
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.input:focus {
|
|
outline: none;
|
|
border-color: var(--ifm-color-white);
|
|
}
|
|
|
|
.input::placeholder {
|
|
color: var(--palette-pale-blue);
|
|
font-size: var(--font-size-normal);
|
|
font-weight: var(--ifm-font-weight-bold);
|
|
}
|