30 lines
663 B
CSS
30 lines
663 B
CSS
/*
|
|
@theme_gradient: linear-gradient(to right, #009fff, #ec2f4b);
|
|
@theme_gradient: linear-gradient(to right, #f5af19, #f12711);
|
|
@theme_gradient: linear-gradient(to right, #fdc830, #f37335);
|
|
@theme_gradient: linear-gradient(to right, #8a2387, #e94057, #f27121);
|
|
@theme_gradient: linear-gradient(to right, #659999, #f4791f);
|
|
*/
|
|
#search {
|
|
padding: 16px;
|
|
color: #333;
|
|
}
|
|
#search h2 {
|
|
margin-bottom: 8px;
|
|
}
|
|
#search input[type=text] {
|
|
font-size: 1em;
|
|
}
|
|
#search button {
|
|
display: block;
|
|
margin-top: 8px;
|
|
}
|
|
#search .matches .matched-node {
|
|
cursor: pointer;
|
|
margin-top: 6px;
|
|
}
|
|
#search .matches .matched-node:before {
|
|
content: "•";
|
|
margin-right: 6px;
|
|
}
|