From 72208d00f99f7c4f0ed0fda2e7afba78536d42c4 Mon Sep 17 00:00:00 2001 From: liliana <liliana.sanfilippo@uni-bielefeld.de> Date: Wed, 29 May 2024 15:56:20 +0200 Subject: [PATCH] Added nav bar css --- static/style.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/static/style.css b/static/style.css index 4626db84..ffc12f77 100644 --- a/static/style.css +++ b/static/style.css @@ -3,6 +3,25 @@ body { padding-top: 56px; } .bg-dark { background-color: #343a40 !important; } .bg-hero { background-color: #45b06cff; } +/* header */ +/*navbar design*/ +.navbar-custom { + background-color: var(--darkpurple); + margin-bottom: 8px; + +} +/*colour of the navbar links*/ +.nav-link { +color: var(--offwhite); +} +/*When hovering over navbar link with mouse the text turns orange */ +.nav-link:hover { +color: var(--darkpurple); +background-color: var(--yellow); +border-radius: 3px; +} + + /* CALLOUT */ .bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem } .bd-callout h4 { margin-bottom:.25rem } -- GitLab