dash-website/_sass/_footer.scss
0xfff db93e035b5 (Update) Footer: Layout / Responsive / mediaQueries / matchHeight.js (#9)
* (Update) Home: Adjust section spacing

* (Feature) Mediaqueries: Add mq mixin

* (Update) Layout/JS: move javascript to bottom of page (performance!)

* (Update) Footer: general styling + responsive styles
2016-09-09 12:56:27 -04:00

75 lines
922 B
SCSS

/*
footer
nav.content
section x5
<text>
ul
li
.footer--menu.content
.footer--languagePicker
a x3
.footer--legal
.content
.footer--copyright
a
*/
.footer {
background-color: #333333;
color: #717171;
padding-top: 4em;
padding-bottom: 3em;
a {
color: $white;
line-height: 1.7;
}
&__nav {
@extend %clearfix;
}
&__section {
vertical-align: top;
display: inline-block;
padding: 20px;
// display: table-cell;
> ul {
margin: 1em 0 0;
padding: 0;
> li {
list-style: none;
}
}
}
&__menu {
padding: 20px 20px 10px;
a {
color: #717171;
padding: 0 7px;
}
}
&__legal,
&__copyright,
&__menu {
text-align: center;
}
@include mq($to: extrasmall) {
&__section {
display: inline-block;
padding: 20px;
}
&__nav {
display: block;
}
&__legal {
padding: 0 20px 20px 0;
}
&__copyright {
display: block;
}
}
}