1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // Flavor Footer
- // --------------------------------------------------
- // Make footer full width
- .misago-footer {
- background: @page-footer-bg;
- margin-top: @line-height-computed * 2;
- .footer-content {
- border-top: 1px solid darken(@page-footer-bg, 10%);
- padding-top: @line-height-computed * 1;
- color: @page-footer-text-color;
- @media screen and (max-width: @screen-xs-max) {
- text-align: center;
- .site-footnote {
- clear: both;
- margin-bottom: @line-height-computed * .75;
- }
- }
- a, a:link, a:visited {
- color: @page-footer-link-color;
- }
- a:hover, a:focus {
- color: @page-footer-link-hover-color;
- }
- .misago-branding {
- &, &:link, &:visited {
- color: @page-footer-brand-color;
- }
- &:hover, &:focus {
- color: @page-footer-brand-hover-color;
- }
- }
- }
- }
|