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

View File

@ -17,9 +17,9 @@
{{ response|safe }}
</body>
<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 }} ||
<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>
</footer>
<script src="static/js/autocomplete.js"></script>

View File

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