nunta/scss/_footer.scss
2017-05-08 14:57:42 -04:00

44 lines
977 B
SCSS

// Styling for the footer
footer {
padding: 25px 0;
text-align: center;
span.copyright {
font-size: 90%;
line-height: 40px;
text-transform: none;
@include heading-font;
}
ul.quicklinks {
font-size: 90%;
line-height: 40px;
margin-bottom: 0;
text-transform: none;
@include heading-font;
}
}
ul.social-buttons {
margin-bottom: 0;
li {
a {
font-size: 20px;
line-height: 40px;
display: block;
width: 40px;
height: 40px;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
color: white;
border-radius: 100%;
outline: none;
background-color: $gray-darker;
&:hover,
&:focus,
&:active {
background-color: $theme-primary;
}
}
}
}