diff --git a/static/scss/navbar.scss b/static/scss/navbar.scss new file mode 100644 index 0000000..e35e993 --- /dev/null +++ b/static/scss/navbar.scss @@ -0,0 +1,33 @@ +#navbar { + + background-color: $primary-colour; + + .nav-link { + + color: rgba(255, 255, 255, 0.55); + + &.active { color: #fff; } + &:disabled { color: rgba(255, 255, 255, 0.25); } + &:focus, &:hover { color: rgba(255, 255, 255, 0.75); } + + } + + .btn-nav { + + color: #fff; + background-color: transparent; + border-color: transparent; + border-radius: 0.25rem; + font-weight: bold; + font-size: 14px; + + &:hover, &:active { + color: #fff; + background-color: #085c8d; + border-color: #085c8d; + + } + + } + +} \ No newline at end of file diff --git a/templates/includes/navbar.html b/templates/includes/navbar.html index ffcf454..0939253 100644 --- a/templates/includes/navbar.html +++ b/templates/includes/navbar.html @@ -1,52 +1,41 @@ {% load static %} -