foo.be/_sass/components/_footer.scss

35 lines
755 B
SCSS
Raw Normal View History

2015-12-03 01:59:10 +00:00
/* ==========================================================================
Footer
========================================================================== */
.c-footer {
2015-12-30 15:31:33 +00:00
padding-top: 14.1rem; // 75px
padding-left: 2.5rem;
padding-right: 2.5rem;
2015-12-03 01:59:10 +00:00
width: 100%;
height: 300px;
background: $c__light-grey;
2015-12-30 15:31:33 +00:00
p {
@include fs--meta;
}
a:not(:first-of-type) {
margin-left: 2rem;
}
}
.c-footer__container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
2015-12-03 01:59:10 +00:00
}