Changes to footer for consistancy and .collapsible for readability

This commit is contained in:
gripped 2021-04-07 11:38:53 +01:00
parent 0acfcf5cbe
commit 691cde6e29
3 changed files with 9 additions and 9 deletions

View File

@ -86,11 +86,11 @@ select {
} }
.collapsible { .collapsible {
color: var(--whoogle-dark-element-bg) !important; color: var(--whoogle-dark-contrast-text) !important;
} }
.collapsible:after { .collapsible:after {
color: var(--whoogle-dark-element-bg) !important; color: var(--whoogle-dark-contrast-text) !important;
} }
.active { .active {
@ -108,7 +108,7 @@ select {
} }
#gh-link { #gh-link {
color: var(--whoogle-dark-element-bg); color: var(--whoogle-dark-contrast-text);
} }
.autocomplete-items { .autocomplete-items {

View File

@ -17,9 +17,9 @@
{{ response|safe }} {{ response|safe }}
</body> </body>
<footer> <footer>
<p style="color: {{ '#fff' if config.dark else '#000' }};"> <p style="color: {{ 'var(--whoogle-dark-text)' if config.dark else 'var(--whoogle-text)' }};">
Whoogle Search v{{ version_number }} || Whoogle Search v{{ version_number }} ||
<a style="color: #685e79" href="https://github.com/benbusby/whoogle-search">View on GitHub</a> <a id="gh-link" href="https://github.com/benbusby/whoogle-search">View on GitHub</a>
</p> </p>
</footer> </footer>
<script src="static/js/autocomplete.js"></script> <script src="static/js/autocomplete.js"></script>

View File

@ -144,10 +144,10 @@
</div> </div>
</div> </div>
<footer> <footer>
<p style="color: {{ '#fff' if config.dark else '#000' }};"> <p style="color: {{ 'var(--whoogle-dark-text)' if config.dark else 'var(--whoogle-text)' }};">
Whoogle Search v{{ version_number }} || Whoogle Search v{{ version_number }} ||
<a id="gh-link" href="https://github.com/benbusby/whoogle-search">View on GitHub</a> <a id="gh-link" href="https://github.com/benbusby/whoogle-search">View on GitHub</a>
</p> </p>
</footer> </footer>
</body> </body>
</html> </html>