Reduce footer selector specificity and clean up CSS

Reducing specificity, simplifying output and merging `padding`
in one place into one shorthand attribute.

Change-Id: Ida96f18e9d90d55492ea114a7b5e3e1b8020c71f
This commit is contained in:
Volker E 2019-09-18 22:37:22 -07:00
parent 9e37e6b177
commit 606365367f
1 changed files with 30 additions and 32 deletions

View File

@ -9,39 +9,37 @@
list-style: none none;
margin: 0;
padding: 0;
li {
color: #222;
margin: 0;
padding: 0;
padding-top: 0.5em;
padding-bottom: 0.5em;
font-size: 0.7em;
}
}
#footer-icons {
float: right;
li {
float: left;
margin-left: 0.5em;
line-height: 2em;
text-align: right;
}
}
#footer-info {
li {
line-height: 1.4em;
}
}
#footer-places {
li {
float: left;
margin-right: 1em;
line-height: 2em;
}
li {
color: #222;
margin: 0;
padding: 0.5em 0;
font-size: 0.7em;
}
}
#footer-icons {
float: right;
li {
float: left;
margin-left: 0.5em;
line-height: 2em;
text-align: right;
}
}
#footer-info {
li {
line-height: 1.4em;
}
}
#footer-places {
li {
float: left;
margin-right: 1em;
line-height: 2em;
}
}