Skip to content

Commit

Permalink
Editing GitHub Page
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Dec 18, 2024
1 parent 38d6169 commit 8c50255
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .pages/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,25 @@ body {
margin-bottom: 2rem;
}

.sidebar-header a {
display: flex;
align-items: center;
text-decoration: none;
color: var(--text-primary);
padding: 1rem;
}

.sidebar-header h1 {
margin-left: 1rem;
font-size: 1.5rem;
color: var(--text-primary);
}

.sidebar-header a:hover {
text-decoration: none;
color: var(--text-primary);
}

.logo {
width: 80px;
height: 80px;
Expand Down
8 changes: 5 additions & 3 deletions .pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
<body class="dark-mode">
<nav class="sidebar">
<div class="sidebar-header">
<img src="assets/img/Logo.svg" alt="UUID Logo" class="logo">
<h1>UUID</h1>
<a href="#">
<img src="assets/img/Logo.svg" alt="UUID Logo" class="logo">
<h1>UUID</h1>
</a>
</div>
<ul class="nav-links">
<li><a href="#" class="active"><i class="fas fa-home"></i> Home</a></li>
<li><a href="index.html" class="active"><i class="fas fa-home"></i> Home</a></li>
<li><a href="docs/getting-started.html"><i class="fas fa-rocket"></i> Getting Started</a></li>
<li><a href="docs/api.html"><i class="fas fa-book"></i> API Reference</a></li>
<li><a href="docs/examples.html"><i class="fas fa-code"></i> Examples</a></li>
Expand Down

0 comments on commit 8c50255

Please sign in to comment.