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