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