From d851f792117f97b7e13aec81e7d8f7e384930502 Mon Sep 17 00:00:00 2001
From: HouTeng Chan <ht-chen21@mails.tsinghua.edu.cn>
Date: Wed, 24 Jul 2024 05:21:17 +0000
Subject: [PATCH] Update menu.html

---
 wiki/menu.html | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/wiki/menu.html b/wiki/menu.html
index 676987db..3bb526f7 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;
-- 
GitLab