Skip to content

Commit

Permalink
Updated hover effecct on clickable items
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarlizard committed Oct 17, 2024
1 parent e061ae1 commit 5e2b36d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ <h1>Charlie R. P. @xarlizard</h1>
<div class="headerLinks">
<div class="linklist" onclick='openLink("https://www.linkedin.com/in/charlie-rios/")'><img src="./src/images/icon-linkedin_red.png" ></div>
<div class="linklist" onclick='openLink("https://github.com/xarlizard")'><img src="./src/images/icon-github_red.png"></div>
<div class="linklist" onclick='openLink("https://github.com/xarlizard")'><img src="./src/images/icon-mail.png"></div>
</div>
</div>
</div>
Expand Down
7 changes: 6 additions & 1 deletion src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,14 @@ hr{
margin-bottom: 10px;
border:0.5px solid var(--text);
}

.avatar{
margin-right: 20px;
}
.avatar img{
max-width: 110px;
border-radius: 50%;
transition: .8s ease;
box-shadow: 0 0 50px 15px var(--text);
}
.avatar:hover{
opacity: 1;
Expand All @@ -141,6 +144,7 @@ hr{
transition: .8s ease;
background-position: center;
opacity: 0.4;
box-shadow: 0 0 50px 1px var(--text);
}
}
.headerLinks{
Expand Down Expand Up @@ -314,6 +318,7 @@ hr{
.card:hover{
cursor: pointer;
background-color: var(--card_bg_hover);
box-shadow: 0 0 50px 1px var(--text);
}
.subtitle{
letter-spacing: 5px;
Expand Down
Binary file added src/images/icon-mail.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/mail.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 5e2b36d

Please sign in to comment.