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

adding social media icons with animation effects #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Binary file added DevDocsHub/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file added DevDocsHub/__pycache__/settings.cpython-312.pyc
Binary file not shown.
Binary file added Docs/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file added Docs/__pycache__/admin.cpython-312.pyc
Binary file not shown.
Binary file added Docs/__pycache__/apps.cpython-312.pyc
Binary file not shown.
Binary file added Docs/__pycache__/models.cpython-312.pyc
Binary file not shown.
29 changes: 29 additions & 0 deletions Docs/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DevDocsHub - Home</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<style>
* {
margin: 0;
Expand Down Expand Up @@ -97,6 +98,28 @@
text-align: center;
margin-top: 50px;
}
.social-icons a {
display: inline-flex;
justify-content: center;
align-items: center;
width: 2.5rem;
height: 2.5rem;
background-color: transparent;
border: 0.2rem solid #95e81a;
font-size: 1rem;
border-radius: 50%;
margin: 3rem 1.5rem 3rem 0;
transition: 0.3s ease;
color: #f8f8f5;
text-decoration: none;
}

.social-icons a:hover {
color: rgb(255, 255, 255);
transform: scale(1.3) translateY(-5px);
background-color: #99a563;
box-shadow: 0 0 25px #cafa0a;
}
footer p {
font-size: 0.9rem;
}
Expand Down Expand Up @@ -225,6 +248,12 @@ <h2>Tutorials & Guides</h2>
</div>

<footer>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
</div>
<p>&copy; 2024 DevDocsHub. All rights reserved.</p>
<p><a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
</footer>
Expand Down