43 lines
739 B
SCSS
43 lines
739 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
|
||
|
color: #222;
|
||
|
font-size: $font-13;
|
||
|
line-height: 1.6;
|
||
|
background-color: darken( $theme-gray-lighter , 10%);
|
||
|
.container {
|
||
|
@extend .response-content;
|
||
|
position: relative;
|
||
|
padding: 1.5em 15px;
|
||
|
background-color: lighten( $theme-gray-lighter , 3%);
|
||
|
}
|
||
|
a {
|
||
|
color: #7d4d03;
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: darken(#7d4d03, 10%);
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
.layout-footer-link{
|
||
|
position: absolute;
|
||
|
left: 15px;
|
||
|
top: 20px;
|
||
|
}
|
||
|
.layout-footer-inner{
|
||
|
padding-left: 28px;
|
||
|
|
||
|
}
|
||
|
@media (min-width: $screen-lg){
|
||
|
.container {
|
||
|
padding: 1.5em 25px;
|
||
|
}
|
||
|
.layout-footer-link{
|
||
|
left: 25px;
|
||
|
}
|
||
|
}
|
||
|
}
|