23 lines
305 B
SCSS
23 lines
305 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
color: $theme-white;
|
||
|
font-size: 12px;
|
||
|
font-weight: 100;
|
||
|
background-color:$theme-green;
|
||
|
|
||
|
.layout-footer-inner{
|
||
|
padding: 3em;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #d8cca5;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: lighten(#ffffff, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|