diff options
| author | syeopite <syeopite@syeopite.dev> | 2021-04-06 03:45:54 -0700 |
|---|---|---|
| committer | syeopite <syeopite@syeopite.dev> | 2021-04-06 04:15:08 -0700 |
| commit | 909606826dca94100364b1c82a31c43d1ae8490f (patch) | |
| tree | 6d339ebd36cb5d1cb421a6b764c5de0c964f8234 | |
| parent | ea16c01fa27d4774bb78f2e0caf8938149aa7bf3 (diff) | |
| download | invidious-909606826dca94100364b1c82a31c43d1ae8490f.tar.gz invidious-909606826dca94100364b1c82a31c43d1ae8490f.tar.bz2 invidious-909606826dca94100364b1c82a31c43d1ae8490f.zip | |
Change footer div into footer element
| -rw-r--r-- | assets/css/default.css | 8 | ||||
| -rw-r--r-- | src/invidious/views/template.ecr | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index 7112e203..9b59fe56 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -282,8 +282,8 @@ input[type="search"]::-webkit-search-cancel-button { * Footer */ -.footer { - color: #666666; +footer { + color: #919191; margin: 1.5em 0; text-align: center; position: absolute; @@ -293,8 +293,8 @@ input[type="search"]::-webkit-search-cancel-button { max-height: 30vh; } -body .footer a { - color: inherit; +footer a { + color: #919191 !important; text-decoration: underline; } diff --git a/src/invidious/views/template.ecr b/src/invidious/views/template.ecr index 9e5b735c..b635f46b 100644 --- a/src/invidious/views/template.ecr +++ b/src/invidious/views/template.ecr @@ -107,7 +107,7 @@ <%= content %> <div id="placeholder" style="padding: 6em;"></div> - <div class="footer"> + <footer> <div class="pure-g"> <div class="pure-u-1 pure-u-md-1-3"> <a href="https://github.com/iv-org/invidious"> @@ -141,7 +141,7 @@ <%= translate(locale, "Current version: ") %> <%= CURRENT_VERSION %>-<%= CURRENT_COMMIT %> @ <%= CURRENT_BRANCH %> </div> </div> - </div> + </footer> </div> <div class="pure-u-1 pure-u-md-2-24"></div> </div> |
