Skip to content
Merged
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
Binary file added Website/assets/fluidicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Website/assets/images.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Website/assets/recode-hive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions Website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
</div>
<header>
<nav class="navbar">
<div class="logo-container">
<img src="logo-bg.png" alt="RecodeHive Logo" width="50" height="50"> <!-- Added logo to navbar -->
<span class="brand-name">RecodeHive</span>
<div class="logo-container" onclick="window.location.href=`index.html`">
<img src="assets/recode-hive.png" alt="Recode Hive Icon" class="logo-icon">
<span class="logo-text">Recode Hive</span>
</div>
<ul class="nav-links">
<li><a href="/">Home</a></li>
Expand All @@ -27,7 +27,7 @@
<li><a href="/contact">Contact</a></li>
<li>
<a href="https://github.com/recodehive/machine-learning-repos" target="_blank">
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub" width="25" height="25"> <!-- GitHub Icon -->
<img src="assets/images.png" alt="GitHub"> <!-- GitHub Icon -->
</a>
</li>
<li>
Expand Down
Binary file removed Website/logo.png
Binary file not shown.
31 changes: 27 additions & 4 deletions Website/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,27 @@ header {
align-items: center;
}

.logo-container {
.logo-container{
display: flex;
cursor: pointer;
align-items: center;
margin-right: 20px;
/* Adds space between logo and links */
}
}

.logo-container img{
filter: brightness(1) invert(1);
}

.logo-icon {
width: 30px;
height: 30px;
margin-right: 10px;
}

.logo-text {
font-size: 18px;
font-weight: bold;
color: #f1f1f1;
}

.brand-name {
font-size: 1.5em;
Expand Down Expand Up @@ -60,6 +75,14 @@ header {
/* Prevents wrapping of links */
}

.nav-links a img{
width: 30px;
height: 30px;
border-radius: 50%;
filter: brightness(0) invert(1);
margin-top: -5px;
}

.nav-links a:hover {
text-decoration: underline;
}
Expand Down