Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

static icons animation added and appropriate color on hovering added #1124

Merged
merged 1 commit into from
Nov 10, 2024
Merged
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
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
Loading