62 lines
873 B
SCSS
62 lines
873 B
SCSS
/**
|
|
* Site footer
|
|
*/
|
|
.site-footer {
|
|
border-top: 1px solid $grey-color-light;
|
|
padding: $spacing-unit 0;
|
|
}
|
|
|
|
.footer-heading {
|
|
font-size: 18px;
|
|
margin-bottom: $spacing-unit / 2;
|
|
}
|
|
|
|
.contact-list,
|
|
.social-media-list {
|
|
list-style: none;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.footer-col-wrapper {
|
|
font-size: 15px;
|
|
color: $grey-color;
|
|
margin-left: -$spacing-unit / 2;
|
|
@extend %clearfix;
|
|
}
|
|
|
|
.footer-col {
|
|
float: left;
|
|
margin-bottom: $spacing-unit / 2;
|
|
padding-left: $spacing-unit / 2;
|
|
}
|
|
|
|
.footer-col-1 {
|
|
width: 35%;
|
|
}
|
|
|
|
.footer-col-2 {
|
|
width: 20%;
|
|
}
|
|
|
|
.footer-col-3 {
|
|
width: 45%;
|
|
}
|
|
|
|
@include media-query($on-laptop) {
|
|
.footer-col-1,
|
|
.footer-col-2 {
|
|
width: 50%;
|
|
}
|
|
|
|
.footer-col-3 {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@include media-query($on-palm) {
|
|
.footer-col {
|
|
float: none;
|
|
width: 100%;
|
|
}
|
|
}
|