From 15c39c4e1c011fd6d7f2947944cc9f1aa119de21 Mon Sep 17 00:00:00 2001 From: Akshar Agarwal Date: Tue, 2 May 2017 19:31:28 -0400 Subject: [PATCH] Added NavBar style --- src/styles/landing.scss | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/styles/landing.scss b/src/styles/landing.scss index 1482e52..e3a190d 100644 --- a/src/styles/landing.scss +++ b/src/styles/landing.scss @@ -1,3 +1,48 @@ +#nav { + +nav { + } + +ul { + margin: 0; + padding:0; + padding-top:18px; + overflow:hidden; + width: 100%; + list-style: none; +} + +li { + float: right; + margin: 0 10px; + font-size: 1.2em; +} + +li:last-child { + border-right: none; +} + +li a { + text-decoration: none; + color: white; + text-transform: uppercase; + + -webkit-transition: all 0.5s ease; + -moz-transition: all 0.5s ease; + -o-transition: all 0.5s ease; + -ms-transition: all 0.5s ease; + transition: all 0.5s ease; +} + +li a:hover { + color: #4FDEEF; +} + +li.active a { + font-weight: bold; + color: #4FDEEF; +} + #landing{ .invisible{ opacity:0;