Files
docs/content/static/style.css
Michael Housh 1b29e8d833
Some checks failed
CI / release (push) Failing after 2m32s
feat: Updates for search integration.
2025-04-06 15:28:10 -04:00

38 lines
588 B
CSS

:root {
--pagefind-ui-background: #0e172b;
--pagefind-ui-text: white;
/* --pagefind-ui-tag: #fd9a00; */
/* --pagefind-ui-primary: #fd9a00; */
--pagefind-ui-border: #fd9a00;
}
body {
font-family: Avenir;
}
#search {
position: relative;
top: 0;
right: 0;
}
#search input:focus {
outline: none;
}
#search .pagefind-ui__drawer {
background: #3c3c3c;
border: 2px solid #fd9a00;
}
#search .pagefind-ui__message {
padding-left: 20px;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}