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
12 changes: 6 additions & 6 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ import "./styles.css";
* If you don't have one of the social sites listed, leave it as an empty string.
*/
const siteProps = {
name: "Alexandrie Grenier",
title: "Web Designer & Content Creator",
email: "alex@example.com",
gitHub: "microsoft",
instagram: "microsoft",
linkedIn: "satyanadella",
name: "Sachin T K",
title: "Full Stack Web Developer",
email: "sachintk97@gmail.com",
gitHub: "SachinT-K",
instagram: "mr.sa_chinn",
linkedIn: "sachin-t-k",
medium: "",
twitter: "microsoft",
youTube: "Code",
Expand Down
16 changes: 16 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,20 @@ a:hover {
img.socialIcon {
height: 30px;
width: 30px;
transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
will-change: transform, box-shadow;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

img.socialIcon:hover {
transform: scale(1.25) rotate(-8deg);
box-shadow: 0 8px 24px rgba(80, 80, 255, 0.25), 0 1.5px 8px rgba(0,0,0,0.12);
filter: brightness(1.15) drop-shadow(0 0 6px #4e567e);
z-index: 2;
}

img.socialIcon:active {
transform: scale(0.95) rotate(2deg);
box-shadow: 0 2px 8px rgba(80, 80, 255, 0.18);
filter: brightness(0.95);
}