Styled footer a touch

This commit is contained in:
2018-06-29 08:07:33 +10:00
parent dfc78cf102
commit 786982d432
4 changed files with 26 additions and 11 deletions

View File

@ -30,11 +30,9 @@ import { PageBoundary } from './../page/Page';
const FooterLink = function(props) {
let key = "footer.links." + props.title;
return (
<span className="c-footer__link">
<NavLink to={ props.to }>
{ Language.get(key) }
</NavLink>
</span>
<NavLink to={ props.to } className="c-footer__link">
{ Language.get(key) }
</NavLink>
);
}

View File

@ -3,22 +3,25 @@
* Site Footer!
*
* Dependencies:
* styles/settings/colors.scss
* styles/settings/typography.scss
* styles/tools/flex.scss
* styles/tools/_box-shadow.scss
*
* Version:
* 1.0.0 - 2018/05/16
*/
$c-footer--link-color: red;
$c-footer--shadow: 1.5em;
$c-footer--link-hover-color: blue;
.c-footer {
@extend %t-dp--shadow-3d;
padding-top: 8em;
padding-bottom: 10em;
position: relative;
overflow: hidden;
background-image: url('./../images/banners/palms.svg');
background-size: cover;
@include t-box-shadow(0px, $c-footer--shadow, $c-footer--shadow, 0px, rgba(0, 0, 0, 0.25), true);
&__inner {
text-align: center;
@ -36,11 +39,16 @@ $c-footer--shadow: 1.5em;
}
&__link {
color: $s-color--footer__link;
+ #{&} {
display: inline-block;
padding-left: 1em;
}
&:hover {
color: $s-color--footer__link-hover;
}
+ #{&} {
display: inline-block;
margin-left: 1em;
}
}
&__part {

View File

@ -47,6 +47,10 @@ $s-color--menu__background: rgba(0, 0, 0, 0.8);
//loader
$s-color--loader: $s-color--swatch-blue;
//Footer Colors
$s-color--footer__link: black;
$s-color--footer__link-hover: white;
/*** Buttons and Inputs ***/
//Defaults

View File

@ -15,3 +15,8 @@
$s-color--shadow
);
}
%t-dp--shadow-3d {
@include t-box-shadow(0px, 1.5em, 1.5em, 0px, rgba(0, 0, 0, 0.25), true);
}