From cbfe447d8bfed66f4f22192aa6993c750741eec9 Mon Sep 17 00:00:00 2001 From: Marc Ducobu Date: Tue, 16 Jun 2015 15:05:49 +0200 Subject: [PATCH] nav bar --- .../public/sass/custom/config/_variables.scss | 11 +++++++ .../sass/custom/modules/_navigation.scss | 32 ++++++++++++++++++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 Resources/public/sass/custom/config/_variables.scss diff --git a/Resources/public/sass/custom/config/_variables.scss b/Resources/public/sass/custom/config/_variables.scss new file mode 100644 index 000000000..c8384d3fe --- /dev/null +++ b/Resources/public/sass/custom/config/_variables.scss @@ -0,0 +1,11 @@ +// General +$base-border-radius: 0; +$form-border-radius: 0; +$$navigation-border-radius: 0; + +// Footer +$footer-vertical-padding: 20px; +$footer-background: $chill-dark-gray; + +// Navigation +$navigation-background: $dark-grey; \ No newline at end of file diff --git a/Resources/public/sass/custom/modules/_navigation.scss b/Resources/public/sass/custom/modules/_navigation.scss index 8c2c09de5..f4bfa9597 100644 --- a/Resources/public/sass/custom/modules/_navigation.scss +++ b/Resources/public/sass/custom/modules/_navigation.scss @@ -1,5 +1,35 @@ // For cutomizing the navigation .navigation { - background-color: $chill-blue; + background-color: $chill-blue; + + li.more.nav-link { + a:after { + color: $chill-dark-gray; + } + + &.lang-selection { + color: $chill-light-gray; + font-size: 0.7em; + + a:after { + color: $chill-light-gray; + } + } + } + + div.nav, div.navigation-search { + float: right; + + input[type=search] { + padding: 0.2em; + float: left; + } + + button { + color: $chill-light-gray; + background-color: $chill-blue; + position: relative; + } + } } \ No newline at end of file