28 lines
430 B
SCSS
28 lines
430 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
padding:0;
|
||
|
color: #fff;
|
||
|
font-size: 0.8125em;
|
||
|
position: relative;
|
||
|
.container {
|
||
|
@extend .response-container;
|
||
|
}
|
||
|
.footer-counter a { padding-right: 0.5em; }
|
||
|
a {
|
||
|
color: #fff;
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: lighten($theme-color-main, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.layout-footer-inner{
|
||
|
background:#f4f4f4;
|
||
|
}
|
||
|
.layout-footer-content{
|
||
|
padding: 2em;
|
||
|
}
|