Merge branch 'develop' into develop

This commit is contained in:
Ben Busby 2021-04-12 10:38:43 -04:00 committed by GitHub
commit 50a93a8e0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 12 deletions

View File

@ -68,6 +68,6 @@ COPY whoogle.env .
EXPOSE $EXPOSE_PORT
HEALTHCHECK --interval=30s --timeout=5s \
CMD wget --no-verbose --tries=1 http://localhost:${EXPOSE_PORT}/ || exit 1
CMD wget -qO- --no-verbose --tries=1 http://localhost:${EXPOSE_PORT}/ || exit 1
CMD misc/tor/start-tor.sh & ./run

View File

@ -367,6 +367,8 @@ A lot of the app currently piggybacks on Google's existing support for fetching
- [https://whoogle.kavin.rocks](https://whoogle.kavin.rocks) or [http://whoogledq5f5wly5p4i2ohnvjwlihnlg4oajjum2oeddfwqdwupbuhqd.onion](http://whoogledq5f5wly5p4i2ohnvjwlihnlg4oajjum2oeddfwqdwupbuhqd.onion)
- [https://search.garudalinux.org](https://search.garudalinux.org)
- [https://whooglesearch.net/](https://whooglesearch.net/)
- [https://search.whoogle.tech/](https://search.whoogle.tech/)
- [https://search.flawcra.cc/](https://search.flawcra.cc/)
## Screenshots
#### Desktop

View File

@ -15,7 +15,7 @@ label {
}
li a {
color: #4b8eaa !important;
color: var(--whoogle-dark-result-url) !important;
}
li {
@ -112,17 +112,18 @@ select {
}
.autocomplete-items {
border: 1px solid #685e79;
border: 1px solid var(--whoogle-dark-element-bg);
}
.autocomplete-items div {
color: #fff;
background-color: #222;
border-bottom: 1px solid #242424;
color: var(--whoogle-dark-text);
background-color: var(--whoogle-dark-page-bg);
border-bottom: 1px solid var(--whoogle-dark-element-bg);
}
.autocomplete-items div:hover {
background-color: #404040;
background-color: var(--whoogle-dark-element-bg);
color: var(--whoogle-dark-contrast-text) !important;
}
.autocomplete-active {

View File

@ -15,7 +15,7 @@ label {
}
li a {
color: #4b8eaa !important;
color: var(--whoogle-result-url) !important;
}
li {
@ -112,16 +112,16 @@ input {
}
.autocomplete-items {
border: 1px solid #d4d4d4;
border: 1px solid var(--whoogle-element-bg);
}
.autocomplete-items div {
background-color: #fff;
border-bottom: 1px solid #d4d4d4;
background-color: var(--whoogle-page-bg);
border-bottom: 1px solid var(--whoogle-element-bg);
}
.autocomplete-items div:hover {
background-color: #e9e9e9;
background-color: var(--whoogle-element-bg);
}
.autocomplete-active {