mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-18 21:15:50 +00:00
83fbe68b5f
Unifying variable naming to property-identifier-modifier scheme. Settling on non-em-based `line-height` values with one exception of Vector tabs, where removing `em` would lead to different calculation. Also removing unneeded `inherit` assignment on content paragraphs that has been part since Ic5ba836364. Bug: T4013 Change-Id: I514467e4065d27de8d0ea82cdd3d23ccef6cffe3
46 lines
578 B
Plaintext
46 lines
578 B
Plaintext
/* Footer */
|
|
#footer {
|
|
margin-left: 10em;
|
|
margin-top: 0;
|
|
padding: 0.75em;
|
|
direction: ltr;
|
|
|
|
ul {
|
|
list-style: none none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
color: @color-base;
|
|
margin: 0;
|
|
padding: 0.5em 0;
|
|
font-size: @font-size-footer;
|
|
}
|
|
}
|
|
|
|
#footer-icons {
|
|
float: right;
|
|
|
|
li {
|
|
float: left;
|
|
margin-left: 0.5em;
|
|
line-height: @line-height-footer-buttons;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
#footer-info {
|
|
li {
|
|
line-height: @line-height-footer-info;
|
|
}
|
|
}
|
|
|
|
#footer-places {
|
|
li {
|
|
float: left;
|
|
margin-right: 1em;
|
|
line-height: @line-height-footer-buttons;
|
|
}
|
|
}
|