Commit d42348f4 authored by Benoît's avatar Benoît

fix the navbar

parent 55bf8c24
...@@ -34,12 +34,12 @@ code {color: $spacegray !important;} ...@@ -34,12 +34,12 @@ code {color: $spacegray !important;}
#content { #content {
width: 100%; width: 100%;
position: relative; position: relative;
padding-left: 70px; padding: 63px 0 70px 70px;
} }
// sidebar // sidebar
#sidebar { #sidebar {
z-index: 1000; z-index: 1035;
position: fixed; position: fixed;
width: 70px; width: 70px;
height: 100%; height: 100%;
...@@ -65,6 +65,7 @@ code {color: $spacegray !important;} ...@@ -65,6 +65,7 @@ code {color: $spacegray !important;}
} }
&:hover { &:hover {
opacity: .8; opacity: .8;
cursor: pointer !important;
.bar {opacity: 0;} .bar {opacity: 0;}
} }
img {width: 42px;} img {width: 42px;}
...@@ -91,6 +92,9 @@ code {color: $spacegray !important;} ...@@ -91,6 +92,9 @@ code {color: $spacegray !important;}
} }
} }
// NAVBAR
#navbarBreeze {}
// jumbotron // jumbotron
.jumbotron { .jumbotron {
h5 { h5 {
...@@ -439,8 +443,9 @@ $curve: cubic-bezier(0.650, 0.000, 0.450, 1.000); ...@@ -439,8 +443,9 @@ $curve: cubic-bezier(0.650, 0.000, 0.450, 1.000);
text-transform: uppercase; text-transform: uppercase;
} }
.lead { .lead {
font-size: 1.25em; font-size: 1.15em;
color: $blue; color: $blue;
font-weight: 400;
line-height: 1.25em; line-height: 1.25em;
margin: 2em 0; margin: 2em 0;
} }
...@@ -453,7 +458,7 @@ $curve: cubic-bezier(0.650, 0.000, 0.450, 1.000); ...@@ -453,7 +458,7 @@ $curve: cubic-bezier(0.650, 0.000, 0.450, 1.000);
text-decoration: underline; text-decoration: underline;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: lighten($darkgray,20%); color: lighten($darkgray,10%);
} }
} }
form {margin-bottom: 4em;} form {margin-bottom: 4em;}
......
...@@ -19,8 +19,10 @@ ...@@ -19,8 +19,10 @@
position: relative; position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: $navbar-padding-y $navbar-padding-x 0 $navbar-padding-x; padding: $navbar-padding-y $navbar-padding-x 0 70px;
box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.08); box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.08);
background: $white;
border-bottom: 1px solid $gray-light;
} }
......
...@@ -619,7 +619,7 @@ $navbar-toggler-padding-y: .25rem !default; ...@@ -619,7 +619,7 @@ $navbar-toggler-padding-y: .25rem !default;
$navbar-toggler-font-size: $font-size-lg !default; $navbar-toggler-font-size: $font-size-lg !default;
$navbar-toggler-border-radius: $btn-border-radius !default; $navbar-toggler-border-radius: $btn-border-radius !default;
$navbar-inverse-color: $brand-primary !default; $navbar-inverse-color: $gray-dark !default;
$navbar-inverse-hover-color: darken($brand-primary, 20%) !default; $navbar-inverse-hover-color: darken($brand-primary, 20%) !default;
$navbar-inverse-active-color: $brand-primary !default; $navbar-inverse-active-color: $brand-primary !default;
$navbar-inverse-disabled-color: rgba($white,.25) !default; $navbar-inverse-disabled-color: rgba($white,.25) !default;
......
...@@ -30,22 +30,25 @@ $btn-secondary-border: $gray-light !default; ...@@ -30,22 +30,25 @@ $btn-secondary-border: $gray-light !default;
// //
///////////////////////////// /////////////////////////////
#content { // NAVBAR
&.bitcoin { #navbarBreeze {
.navbar-nav {
// NAVBAR .nav-item {
.navbar { .nav-link {
.nav-item { color: $gray-dark;
.nav-link { &:hover {color: lighten($brand-primary,20%);}
color: $gray-dark; &.is-active {
&:hover {color: lighten($brand-primary,20%);} border-bottom: 2px solid $brand-primary !important;
color: $brand-primary !important;
} }
&.active { }
border-bottom: 2px solid $brand-primary;
.nav-link {color: $brand-primary;}
}
}
} }
}
}
#content {
&.bitcoin {
// JUMBOTRON // JUMBOTRON
.jumbotron { .jumbotron {
...@@ -88,6 +91,9 @@ $btn-secondary-border: $gray-light !default; ...@@ -88,6 +91,9 @@ $btn-secondary-border: $gray-light !default;
i {color: $brand-primary;} i {color: $brand-primary;}
} }
} }
.modal-dialog {
.badge {margin: 1em 0;}
}
#modalDetail { #modalDetail {
a { a {
color: $link-color; color: $link-color;
......
Subproject commit 9cc4517fcbeaffc607fee4d03a83a377b6ee79b4 Subproject commit 01447e3336cd12736d2466fa5d932c550ef549e9
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment