23 lines
292 B
SCSS
23 lines
292 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
padding: 2em 0;
|
||
|
color: white;
|
||
|
font-size: 0.8125em;
|
||
|
background-color:#7c6e60;
|
||
|
|
||
|
.container {
|
||
|
@extend .response-content;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: white;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: lighten(#fff, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|