Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions git contribute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
git commit -m "Fix: Added top padding to hero section to avoid header overlap also changed member dasboard button styles which was not visible earlier and nav link colors changed also extra login button removed as sign in option already available"
git checkout -b feature-branch
git add .
git commit -m "Meaningful commit message"
git push origin feature-branch
27 changes: 21 additions & 6 deletions website/pages/contributor.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,27 @@
<nav id="navbar">
<img src="../web_images/3dlogo.svg" alt="Dataverse Logo" class="logo" id="normal">
<img src="../web_images/3d_glow.webp" alt="Dataverse Logo" class="logo" id="glow">
<a href="../pages/login.html">
<button class="navbarButton">
<span class="button-text">Login</span>
<img src="../web_images/user.png" alt="User Icon" class="user-icon">
</button>
</a>
<a href="../pages/login.html">
<button
style="
display:flex;
align-items:center;
gap:6px;
padding:8px 14px;
background:#4a90e2;
color:#fff;
font-size:14px;
font-weight:600;
border:none;
border-radius:20px;
cursor:pointer;
">
<span>Login</span>
<img src="../web_images/user.png" alt="User Icon" style="width:18px;height:18px;">
</button>
</a>


</nav>

<button class="burger" id="burger" onclick="show()"></button>
Expand Down