diff --git a/wiki/menu.html b/wiki/menu.html index 676987db5b4d96e9b9f7448ce513c32ea3f9786d..3bb526f7f13d04b1c51008908d2e3127b1029587 100644 --- a/wiki/menu.html +++ b/wiki/menu.html @@ -1,8 +1,9 @@ +<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Updated Navigation Bar with Smaller Height and Black Text</title> + <title>Updated Navigation Bar with Larger Logo and Left-aligned Menu</title> <style> body { margin: 0; @@ -16,17 +17,17 @@ top: 0; left: 0; z-index: 1000; - height: 50px; /* Reduced height */ + height: 50px; border-radius: 20px; } .logo-container { position: absolute; - top: 5px; + top: 10px; /* Adjusted to make logo overflow */ left: 10px; z-index: 1030; } .navbar-logo { - max-height: 40px; /* Adjusted logo size */ + height: 100px; /* Increased logo size */ border-radius: 20px; } .my-navbar { @@ -34,16 +35,17 @@ padding: 0; margin: 0; display: flex; - justify-content: flex-end; + justify-content: flex-start; /* Changed to flex-start */ align-items: center; height: 100%; + padding-left: 120px; /* Added padding to move items to the right of the logo */ } .my-navbar > li { position: relative; margin-right: 20px; } .my-navbar > li > a { - color: black; /* Changed to black */ + color: black; text-decoration: none; padding: 5px 10px; display: block;