- move mobile icons to mobile-folder, so they aren't included in the icons-sprite - move logos to branding/logos, and create a logos-sprite without the big other branding-images - delete duplicate images closes #6004
46 lines
687 B
SCSS
46 lines
687 B
SCSS
footer {
|
|
width: 100%;
|
|
left: 0;
|
|
bottom: 0;
|
|
color: $text-grey;
|
|
|
|
.container {
|
|
width: 95%;
|
|
margin: 4em auto 0 auto;
|
|
padding: 0.5em 0 1em 0;
|
|
border-top: 1px solid $border-grey;
|
|
}
|
|
|
|
.logos-powered_by_diaspora {
|
|
display: inline-block;
|
|
margin-top: 3px;
|
|
height: 11px;
|
|
width: 145px;
|
|
}
|
|
|
|
ul#footer_nav {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline-block;
|
|
float: right;
|
|
|
|
> li {
|
|
display: inline;
|
|
margin-right: 1em;
|
|
|
|
&.separator {
|
|
margin-left: -.35em;
|
|
margin-right: .65em;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $link-grey;
|
|
}
|
|
}
|
|
}
|