42 lines
687 B
SCSS
42 lines
687 B
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
|
|
.layout-footer {
|
|
padding:0;
|
|
color: $theme-color-main;
|
|
font-size: 0.8125em;
|
|
background-color: $theme-color-second;
|
|
|
|
.container {
|
|
@extend .response-container;
|
|
}
|
|
.footer-counter a { padding-right: 0.5em; }
|
|
a {
|
|
color: $theme-color-main;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: lighten($theme-color-main, 10%);
|
|
}
|
|
}
|
|
}
|
|
.layout-footer-inner{
|
|
width: 100%!important;
|
|
background: #e7e8ea;
|
|
padding: 2em!important;
|
|
}
|
|
.footerfloat{
|
|
@media(min-width:768px ){
|
|
padding: 2em;
|
|
}
|
|
}
|
|
.footerfloat{
|
|
@media(min-width:768px ){
|
|
width: 75%;
|
|
float: right;
|
|
background: #fff;
|
|
padding: 1em 1em 0 1em;
|
|
}
|
|
}
|