Lower CSS specificity of #footer rules

Change-Id: Id34ed322bde783a1aaaa843b78191dab2191b4d4
This commit is contained in:
Volker E 2018-03-17 13:11:37 -07:00
parent b473ce1ff6
commit 4de3ad227f
3 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
/* Footer */ /* Footer */
div#footer { #footer {
margin-left: 10em; margin-left: 10em;
margin-top: 0; margin-top: 0;
padding: 0.75em; padding: 0.75em;

View file

@ -37,13 +37,13 @@
} }
/* Rearrange various page elements to fill the now-available space */ /* Rearrange various page elements to fill the now-available space */
body div#footer { body #footer {
margin-left: 0; margin-left: 0;
padding-top: 0; padding-top: 0;
/* don't need these in the footer either... */ /* don't need these in the footer either... */
li#footer-info-lastmod, #footer-info-lastmod,
li#footer-info-viewcount { #footer-info-viewcount {
display: none; display: none;
} }
} }

View file

@ -6,7 +6,7 @@
margin-left: 11em; margin-left: 11em;
padding: 1.25em 1.5em 1.5em 1.5em; padding: 1.25em 1.5em 1.5em 1.5em;
} }
div#footer { #footer {
margin-left: 11em; margin-left: 11em;
padding: 1.25em; padding: 1.25em;
} }