Skip to content
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
10 changes: 4 additions & 6 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,7 @@ color: white;
}


.fa-instagram {
background: #1565c0;
color: white;
}


.fa-github {

Expand All @@ -519,7 +516,8 @@ color: white;
}

.fa-mail{
background: #1565c0;

background: #1565c0;
color: white;
}

Expand All @@ -533,4 +531,4 @@ color: white;

display: flex;
justify-content: space-between;
}
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ <h2 c>ABOUT</h2>

<div id = "Contact">
<div class="container">
<span data-aos="zoom-in" data-aos-delay="500"><a href = "https://www.instagram.com/paul_beltra_n/" class="fa fa-instagram fa-2x" ></a></span>

<span data-aos="zoom-in" data-aos-delay="800"><a href = "https://github.com/python8u" class="fa fa-github fa-2x" ></a></span>
<span data-aos="zoom-in" data-aos-delay="1100"><a href = "https://www.linkedin.com/in/paul-beltran-7b0b521a8/" class="fa fa-linkedin fa-2x"></a></span>

Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ this.y+=this.dy;
//interactivity

//when mouse close
if (trueX - this.x < 50 && trueX - this.x > -50
&& trueY - this.y < 50 && trueY - this.y > -50
) {
if (trueX - this.x <8 && trueX - this.x > -8
&& trueY - this.y <8 && trueY - this.y > -8)
{
if (this.radius < maxRadius) {
this.radius += 4;
}
Expand Down