Archived
1
0
Fork 0
This repository has been archived on 2026-04-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
httpcb/app/assets/sass/layout/_footer.scss

40 lines
730 B
SCSS

.footer {
@extend .container;
display: flex;
align-items: center;
min-height: $footer-height;
a {
color: $footer-link-color;
font-weight: 700;
&:hover,
&:active {
color: $footer-link-hover-color;
}
}
&-left,
&-right {
@include make-xs-column(5);
}
&-middle {
@include make-xs-column(2);
}
&-right {
text-align: right;
}
// Top button
&-button-top {
@extend .center-block;
@extend .button;
@extend .button-round;
@include button-variant($footer-link-color, white, white);
font-size: 1.5em;
box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
}
}