Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added logo with link and hover effect #197

Merged
merged 2 commits into from
Jun 5, 2024
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
4 changes: 3 additions & 1 deletion Official_Website/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
<header class="header">

<div class="logo">
<img src="logo.png" alt="HelpOps-Hub Logo">
<a href="./index.html"
><img src="logo.png" alt="HelpOps-Hub Logo"
/></a>
</div>
<div>
<h1>About Us</h1>
Expand Down
2 changes: 1 addition & 1 deletion Official_Website/contributor-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<header class="header">

<div class="logo">
<a href="https://helpops-hub.vercel.app/"
<a href="./index.html"
><img src="logo.png" alt="HelpOps-Hub Logo"
/></a>
</div>
Expand Down
4 changes: 3 additions & 1 deletion Official_Website/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@
<header class="header">

<div class="logo">
<img src="logo.png" alt="HelpOps-Hub Logo">
<a href="./index.html"
><img src="logo.png" alt="HelpOps-Hub Logo"
/></a>
</div>
<div>

Expand Down
2 changes: 1 addition & 1 deletion Official_Website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<body>
<header class="header">
<div class="logo">
<a href="https://helpops-hub.vercel.app/"
<a href="/"
><img src="logo.png" alt="HelpOps-Hub Logo"
/></a>
</div>
Expand Down
13 changes: 13 additions & 0 deletions Official_Website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -533,3 +533,16 @@ width: 40px;
color: #00ccff;
margin-bottom: 2rem;
}
/* logo styling */
.logo-link {
display: inline-block;
}

.logo img {
transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
transform: scale(1.1);
filter: brightness(1.2);
}
Loading