html {
height: 100%;
}
body {
font-family: monospace;
background-color: #0b0e14;
color: #bfbdb6;
margin: 0;
line-height: 1.2;
height: 100%;
}
.results-container {
/* enough space for the infobox */
max-width: 73.5rem;
margin: 0 auto;
}
main {
max-width: 40rem;
/* margin: 0 0 0 10rem; */
padding: 1rem 0.5rem;
background-color: #0d1017;
min-height: 100%;
}
@media screen and (max-width: 74rem) {
/* small screens */
.results-container {
margin: 0 auto;
max-width: 40rem;
}
}
input {
font-family: monospace;
background-color: #0d1017;
color: #bfbdb6;
border: 1px solid #234;
font-size: inherit;
padding: 0.25rem;
}
input:focus-visible {
outline: none;
border-color: #e6b450;
}
:focus-visible {
outline: 1px solid #e6b450;
}
input[type="submit"] {
cursor: pointer;
}
a {
color: #29e;
text-decoration: none;
}
a:visited {
color: #92e;
}
pre {
white-space: pre-wrap;
}
/* index page */
.main-container {
display: flex;
flex-direction: column;
min-height: 100%;
height: 100%;
justify-content: center;
margin: 0 auto;
padding: 0 0.5em;
text-align: center;
max-width: 30em;
}
h1 {
margin-top: 0;
}
/* header */
.search-form {
margin-bottom: 1rem;
display: flex;
gap: 0.5rem;
}
#search-input {
max-width: 30em;
flex: 1;
}
#search-input-suggestions {
position: absolute;
text-align: left;
margin-top: calc(1.9em + 1px);
background: #0f131a;
padding: 0.1em 0 0.3em 0;
border: 1px solid #234;
border-top: transparent;
}
.search-input-suggestion {
cursor: pointer;
padding: 0 0.3em;
}
.search-input-suggestion.focused {
background: #234;
}
/* search result */
.search-result {
padding-top: 1rem;
border-top: 1px solid #234;
font-size: 1rem;
}
.search-result-anchor {
display: block;
}
.search-result-url {
margin: 0;
font-size: 0.8rem;
color: #998;
}
.search-result-title {
margin: 0;
font-size: 1rem;
}
.search-result-description {
margin: 0;
font-size: 0.8em;
color: #bba;
}
/* engine list */
.engine-list {
opacity: 0.5;
justify-content: end;
display: flex;
gap: 0.5em;
font-size: 0.8rem;
}
/* featured snippet */
.featured-snippet {
margin-bottom: 1rem;
border: 1px solid #234;
padding: 0.5rem;
font-size: 1.2rem;
}
.featured-snippet .search-result-description {
margin-bottom: 1rem;
}
/* progress update */
.progress-updates {
margin-bottom: 1rem;
border: 1px solid #234;
padding: 0.5rem;
min-height: 5em;
}
.progress-update {
margin: 0;
white-space: pre-wrap;
}
.progress-update-time {
opacity: 0.5;
}
.progress-update-done {
color: #7fd962;
font-weight: bold;
}
/* answer */
.answer {
margin-bottom: 1rem;
border: 1px solid #234;
padding: 0.5rem;
}
.answer h3 {
margin: 0;
font-weight: normal;
font-size: 1.2rem;
}
/* styles for specific answers */
.answer-calc-query {
margin: 0;
opacity: 0.5;
}
.answer-calc-constant {
color: #d2a6ff;
white-space: pre-wrap;
}
.answer-calc-string {
color: #aad94c;
}
.answer-calc-special {
color: #e6b673;
}
/* infobox */
.infobox {
margin-bottom: 1rem;
border: 1px solid #234;
padding: 0.5rem;
position: absolute;
top: 3.5rem;
max-width: 30rem;
margin-left: 42rem;
}
@media screen and (max-width: 74rem) {
/* small screens */
.infobox {
position: static;
margin: 0;
max-width: unset;
margin-bottom: 1rem;
}
.postsearch-infobox {
/* displaying these properly is too hard so don't */
display: none;
}
}
.infobox h2 {
margin-top: 0;
margin-bottom: 0.5em;
}
.infobox p {
margin: 0;
}
.infobox-stackexchange-answer pre > code,
.infobox-github-readme pre {
border: 1px solid #234;
padding: 0.5rem;
display: block;
font-weight: normal;
}
.infobox-stackexchange-answer code,
.infobox-github-readme code {
font-weight: bold;
}
.postsearch-infobox p {
margin-bottom: 1em;
white-space: pre-wrap;
}