Skip to content

Commit

Permalink
Merge pull request #1124 from ritikm31/staticicons
Browse files Browse the repository at this point in the history
static icons animation added and appropriate color on hovering added
  • Loading branch information
ankit071105 authored Nov 10, 2024
2 parents 479e743 + 95f9f94 commit e3b44de
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,19 @@ body {
}

.social-sidebar a:hover i {
transform: scale(1);
animation-name: spin;
animation-duration: 2500ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

.social-sidebar li a:hover {
Expand All @@ -69,15 +81,27 @@ body {
transform: scale(1.1);
}

.social-sidebar li a:hover i.fa-meta {
color: #316ff6 !important;
}

.social-sidebar li a:hover i.fa-x-twitter {
color: #1da1f2 !important;
}

.social-sidebar li a:hover i.fa-instagram {
color: #e1306c !important;
}

.social-sidebar li a:hover i.fa-linkedin {
color: #0072b1 !important;
}

.social-sidebar i {
display: inline-block;
transition: transform 0.3s ease-in-out;
}

.social-sidebar a:hover i {
transform: scale(1.1);
}

.ticket-list {
size: 2px;
}
Expand Down Expand Up @@ -1051,7 +1075,7 @@ button[type="submit"]:active {
font-size: 0.9rem;
}
/* < main */

/* Form Group */
.form-group {
margin-bottom: 20px;
Expand Down

0 comments on commit e3b44de

Please sign in to comment.