38 lines
588 B
CSS
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;
|
|
}
|