29 lines
418 B
SCSS
29 lines
418 B
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
|
|
.layout-footer {
|
|
background-color: #b16a44;
|
|
padding: 2em 0;
|
|
color: #fff;
|
|
font-size: 0.9em;
|
|
line-height: 1.8em;
|
|
|
|
.container {
|
|
width: 940px;
|
|
@extend .response-content;
|
|
@media (max-width: 767px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: #f8d6b8;
|
|
text-decoration: none;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: lighten(#f8d6b8, 10%);
|
|
}
|
|
}
|
|
} |