2017-05-03 16:50:36 +02:00
|
|
|
@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;
|
2017-05-05 12:29:19 +02:00
|
|
|
border-top: 1px solid $border-grey;
|
2017-07-17 14:52:09 +02:00
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2017-04-04 14:37:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-columns {
|
|
|
|
@extend %horizontal-list;
|
2017-05-17 18:06:25 +02:00
|
|
|
justify-content: flex-start;
|
2017-04-04 14:37:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-column {
|
|
|
|
@extend %horizontal-list-item;
|
|
|
|
font-size: 14px;
|
|
|
|
vertical-align: top;
|
2017-05-17 18:06:25 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
.footer-text {
|
|
|
|
font-style: italic;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
}
|
|
|
|
|
2017-04-04 14:37:37 +02:00
|
|
|
.footer-logo:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
.footer-logo-dinsic {
|
|
|
|
@include ie-compatible-background-image("footer/logo-dinsic.svg");
|
2017-12-04 11:29:22 +01:00
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
height: 104px;
|
|
|
|
width: 90px;
|
2018-02-26 17:36:08 +01:00
|
|
|
margin-bottom: 14px;
|
|
|
|
}
|
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
.footer-logo-beta-gouv-fr {
|
|
|
|
@include ie-compatible-background-image("footer/logo-beta-gouv-fr.svg");
|
2018-02-26 17:36:08 +01:00
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
width: 150px;
|
|
|
|
height: 25px;
|
2017-04-04 14:37:37 +02:00
|
|
|
}
|
|
|
|
|
2018-02-28 15:31:01 +01:00
|
|
|
.footer-link a,
|
|
|
|
.footer-text a {
|
2017-04-04 14:37:37 +02:00
|
|
|
color: $black;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: $blue;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|