demarches-normaliennes/app/assets/stylesheets/new_design/new_footer.scss

68 lines
942 B
SCSS
Raw Normal View History

@import "colors";
2017-04-04 14:37:37 +02:00
@import "constants";
@import "mixins";
@import "placeholders";
2017-07-17 12:26:48 +02:00
footer {
2017-04-04 14:37:37 +02:00
@include vertical-padding(72px);
background-color: $light-grey;
border-top: 1px solid $border-grey;
2017-04-04 14:37:37 +02:00
}
.footer-columns {
@extend %horizontal-list;
justify-content: flex-start;
2017-04-04 14:37:37 +02:00
}
.footer-column {
@extend %horizontal-list-item;
font-size: 14px;
vertical-align: top;
flex-grow: 1;
min-width: 320px;
@media (max-width: 1000px) {
width: 100%;
margin-bottom: 14px;
}
2017-04-04 14:37:37 +02:00
}
.footer-logos,
.footer-links {
list-style-type: none;
padding: 0;
margin: 0;
}
.footer-link {
margin-bottom: 14px;
&:last-of-type {
margin-bottom: 0;
}
}
.footer-logo:hover {
opacity: 0.8;
}
.footer-logo-rf {
width: 75px;
margin-bottom: 14px;
}
.footer-logo-beta-gouv-fr {
width: 190px;
}
.footer-link a {
color: $black;
text-decoration: none;
&:hover,
&:focus {
color: $blue;
text-decoration: none;
}
}