From 6a7e61ee1d077c8f269cb0f7b29527999f25e16f Mon Sep 17 00:00:00 2001 From: Arshad Khan Date: Fri, 11 Nov 2016 05:22:56 +0530 Subject: [PATCH] footer layout improved --- src/containers/App/index.js | 32 ++++++++++++++------------ src/containers/App/style.scss | 43 +++++++++++++++++++---------------- 2 files changed, 41 insertions(+), 34 deletions(-) diff --git a/src/containers/App/index.js b/src/containers/App/index.js index cc4b04560..1d0e752cb 100644 --- a/src/containers/App/index.js +++ b/src/containers/App/index.js @@ -37,9 +37,11 @@ class App extends Component { {children} diff --git a/src/containers/App/style.scss b/src/containers/App/style.scss index 41532991d..ea87437a2 100644 --- a/src/containers/App/style.scss +++ b/src/containers/App/style.scss @@ -4,44 +4,47 @@ font-size: 14px; margin-top: 50px; - .about, - .links{ + .about, .links{ padding-top: 30px; + text-transform: uppercase; .list{ padding-left: 0px; :global(li){ list-style: none; - padding: 3% 0%; + padding: 5px 0; } } - } - .about{ - a{ + p{ + line-height: 30px; color: #fff; } - } - .links{ - text-transform: uppercase; a{ + font-size: 13px; color: rgba(#fff, 0.5); } - } -} -.seo{ - padding-top: 15px; - :global(li){ - &:first-child{ - border: none; + a:hover{ + color: #fff; } - - border-left: 1px solid rgba(#fff, 0.5); } + :global(a){ - color: rgba(#fff, 0.5);; - white-space: pre; + -webkit-transition: color .15s ease-in-out; + -moz-transition: color .15s ease-in-out; + -o-transition: color .15s ease-in-out; + -ms-transition: color .15s ease-in-out; + transition: color .15s ease-in-out; } + + .links { + &:last-child{ + p{ + color: rgba(#fff, 0.5); + } + } + } + }