38 lines
627 B
SCSS
38 lines
627 B
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
|
|
.layout-footer {
|
|
padding: 1.5em 0;
|
|
color: #575757;
|
|
font-size: $font-15;
|
|
line-height: 1.6;
|
|
border-top: 1px solid #575757;
|
|
.container {
|
|
@extend .response-content;
|
|
}
|
|
a {
|
|
color: #575757;
|
|
&:hover,
|
|
&:focus {
|
|
color: darken(#575757, 10%);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
@media (min-width: $screen-sm){
|
|
.container{
|
|
position: relative;
|
|
padding: 0;
|
|
}
|
|
.layout-footer-content{
|
|
padding-left: 280px;
|
|
}
|
|
.footer-counter{
|
|
position: absolute;
|
|
left: 17px;
|
|
top: 0;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|