46 lines
646 B
SCSS
46 lines
646 B
SCSS
footer {
|
|
margin-top: 20px;
|
|
background-color: $brand-grey-dark;
|
|
padding-top: 20px;
|
|
width: 100%;
|
|
height: $footer-height;
|
|
text-align: center;
|
|
color: $white;
|
|
|
|
a {
|
|
color: $brand-orange-light;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.powered-by p {
|
|
font-size: $font-size-base;
|
|
|
|
a:hover {
|
|
color: $brand-orange;
|
|
}
|
|
}
|
|
|
|
.social {
|
|
margin: 0;
|
|
padding: 7px;
|
|
font-size: 23px;
|
|
|
|
a {
|
|
margin: 0 4px;
|
|
color: $white;
|
|
|
|
&:hover {
|
|
color: $brand-orange-light;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ci-badge {
|
|
margin-top: 10px;
|
|
height: $font-size-h3;
|
|
}
|
|
}
|