33 lines
523 B
SCSS
Executable File
33 lines
523 B
SCSS
Executable File
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
|
|
.layout-footer {
|
|
padding: 1em;
|
|
color: $theme-white;
|
|
.container {
|
|
@extend .response-content;
|
|
}
|
|
|
|
.layout-footer-content, .footer-counter {
|
|
font-size: 0.8125em;
|
|
}
|
|
.footer-counter a { padding-right: 0.5em; }
|
|
a {
|
|
color: $theme-white;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: darken($theme-white, 10%);
|
|
}
|
|
}
|
|
@media(max-width: $screen-md) {
|
|
background: #a2a2a2;
|
|
color: $theme-color-mainer;
|
|
a {
|
|
color: $theme-color-mainer;
|
|
}
|
|
}
|
|
}
|
|
|