43 lines
692 B
SCSS
43 lines
692 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
padding: 20px 0;
|
||
|
color: #fff;
|
||
|
font-size: $font-13;
|
||
|
line-height: 1.6;
|
||
|
background-color: $theme-color-third;
|
||
|
|
||
|
.container {
|
||
|
@extend .response-content;
|
||
|
@media (min-width: $screen-md){
|
||
|
position:relative;
|
||
|
padding: 0 35px;
|
||
|
&:after {
|
||
|
width: 566px;
|
||
|
height: 79px;
|
||
|
position: absolute;
|
||
|
top: -99px;
|
||
|
content: "";
|
||
|
right: 0;
|
||
|
}
|
||
|
}
|
||
|
@media (max-width: $screen-xs){
|
||
|
table td{
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #fff;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: darken(#fff, 10%);
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
}
|