Rachid O
Rachid O

Reputation: 14032

change the default blue color of animations in Hover.css

How can I change the default blue color of animations in Hover.css

for instance in Border Transitions, the Underline From Center effect with orange

Upvotes: 0

Views: 295

Answers (2)

Danyial Shahid Ali
Danyial Shahid Ali

Reputation: 511

This Code Color All Hover.css into Orange

[class^="hvr-"]::before {
    background: orange;
}

Upvotes: 0

JonSnow
JonSnow

Reputation: 335

This should work, overwrite (add to existing) class:

.hvr-underline-from-center::before {
    background: orange;
}

Upvotes: 1

Related Questions