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

Contact Details added at Footer #117

Merged
merged 2 commits into from
Oct 23, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
added content details
  • Loading branch information
HimanshuSinghNegi committed Oct 22, 2022
commit b99bb6e4bd9212bed0e3e26b0f8611010213fc23
19 changes: 18 additions & 1 deletion assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ p {
}
/*logo*/
.logo img{
display: flex;
flex: left;
border-radius: 50%;
padding: 2%;
padding: 4%;
background-color: #0C0C0C;
}
/*tittle*/
Expand Down Expand Up @@ -197,6 +199,21 @@ footer {
margin: 16px;
}

/*social icon*/
.social_icon{
width: 25px;
height: 25px;
background-color: #FF00E8;
padding: 5px;
border-radius: 50%;
cursor: pointer;
}
.social_icon:hover{
transform: rotate(360deg) scale(1.2);
transition-duration: 1s;
background-color: whitesmoke;
}

/* Card
------ */
.contact i {
Expand Down
1 change: 1 addition & 0 deletions img/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode" >
<div class="logo" style="width: 20%;"><img src="img/logo.gif" width="25%" height="25%"></div>
<div class="logo" style="width: 20%;"><img src="img/logo.gif" width="30%" height="30%"></div>
<div style="width: 70%; float:left; margin-left:15%"><h1 class="tittle">Resⓞurce Finder</h1></div>
<div class="toggle-box" style=" float:right; padding-right: 10px;">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
Expand Down Expand Up @@ -1807,8 +1807,13 @@ <h3>&#128512; Happy Coding!!! &#128512; </h3></p>
</div>
<hr />
<footer>
Project by <a href="#">Bauddhik Geeks</a>
Project by <a href="#">@Bauddhik Geeks</a>
<span id="currentYear"></span>
<div class="icon">
<a href="/~https://github.com/Bauddhik-Geeks"><img class="social_icon" src="img/github.svg"/></a>
<a href="https://www.linkedin.com/company/bauddhik-geeks"><img class="social_icon" src="img/linkedin.svg"/></a>
<a href="https://www.instagram.com/bauddhik_geeks"><img class="social_icon" src="img/instagram.svg"/></a>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
Expand Down