- Pulled out the existing palette in _mixins - Took a stab at naming greys after their usage count in contexts - Replaced #a40802 with #a80000, since they are very close and $red was already in the palette Missed importing 'colors' in a couple of places Removing a redefined in favor of in colors.css.scss Fixing missed imports #2 Renamed $background to $background-white Explicitly calling out the color of the background, since we have many background colors
46 lines
698 B
SCSS
46 lines
698 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;
|
|
}
|
|
|
|
.branding-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;
|
|
@include opacity(.6);
|
|
}
|
|
|
|
&:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $link-grey;
|
|
}
|
|
}
|
|
}
|