diff --git a/website/static/css/navbar.css b/website/static/css/navbar.css new file mode 100644 index 0000000000..c3ed2b412c --- /dev/null +++ b/website/static/css/navbar.css @@ -0,0 +1,73 @@ +.user-menu, .login-menu { + height: 80px !important; + display: flex !important; + justify-content: center !important; + align-items: center !important; + margin-right: 30px; +} + +.user-menu img { + height: 30px; + width: 30px; + border-radius: 50px; + margin-right: 5px; +} + +.login-menu li{ + margin-right: 20px; +} + +.login-menu li a{ + padding: 9px 25px 9px 25px; + border-radius: 1px; + background-color: red; + text-decoration: none; + color: white; + font-size: 1.5rem; + font-weight: 700; +} + +.navbar-form{ + height: 60px !important; + width: 40%; +} + + +#nav-search{ + display: flex; + align-items: center; + width: 100%; + height: 100%; +} + +#nav-search input{ + margin-right: 10px; + height: 35px; + padding: 5px; + width: 250px; + font-size: 1.3rem; +} +#nav-search a{ + height: 100%; +} + +.nav-report-bug{ + border-radius: 1px; + background-color: red; + height: 38px !important; + padding: 8px 25px 8px 25px; + font-size: 1.4rem; + font-weight: 700; + color: white !important; + text-decoration: none !important; + cursor: pointer; +} + +.nav-report-bug:hover{ + background-color: rgb(196, 0, 0); +} + +.nav{ + align-items: center !important; + justify-content: center !important; +} \ No newline at end of file diff --git a/website/static/css/style.css b/website/static/css/style.css index 6688372f95..6c4745ed0f 100644 --- a/website/static/css/style.css +++ b/website/static/css/style.css @@ -215,14 +215,6 @@ a:hover { } -.user-menu { - float: right; -} - -.user-menu img { - height: 25px; - width: 25px; -} @media only screen and (max-width: 1200px) { .panel-footer li { diff --git a/website/templates/base.html b/website/templates/base.html index 13fe797c21..ed3d67f16d 100644 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -20,6 +20,7 @@ + @@ -29,14 +30,20 @@ + + + + + {% block head %} + {% endblock %} {% block style %} {% endblock %} @@ -46,158 +53,11 @@
-