Skip to content

Commit

Permalink
added social links
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarlizard committed Oct 15, 2024
1 parent 6372588 commit df862c4
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
<header>
<div class="topHeader">
<div class="avatar"><img src="./src/images/avatar_img.jpeg"></div>
<a class="linklist" href="https://www.linkedin.com/in/charlie-rios/" target="_blank"><img src="./src/images/icon-linkedin_red.png" ></a>
<a class="linklist" href="https://github.com/xarlizard" target="_blank"><img src="./src/images/icon-github_red.png"></a>
<div class="headerInfo">
<h1>Charlie - @xarlizard</h1>
<text class="headerText">Fullstack Web 3.0 Developer & UI/UX Designer</text>
</div>
</div>
<hr>
<div class="bottomHeader">
<text class="headerText">Dark Mode</text>
<label class="switch">
Expand Down
33 changes: 32 additions & 1 deletion src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,38 @@ header{

.avatar img{
max-width: 90px;
border-radius: 50%;}
border-radius: 50%;
transition: .5s ease;
}
.avatar:hover img{
opacity: 0.3;
cursor: pointer;
background-image: url('../images/icon-cv.png');
}
.avatar:hover .middle{
opacity: 0.3;
cursor: pointer;
background-image: url('../images/icon-cv.png');
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
}
.linklist img{
max-width: 90px;
border-radius: 50%;
transition: .5s ease;
}
.linklist:hover img{
opacity: 0.3;
cursor: pointer;
}
.topHeader{
display: flex;
gap: 10px;
Expand Down
Binary file added src/images/icon-cv.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 src/images/icon-github_red.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 src/images/icon-linkedin_red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit df862c4

Please sign in to comment.