CSS
With Filter
CSS
Without Filter
CUSTOM
TEAMWARE
CUSTOM
TEAMWARE
Original CSS with filter
block :hover {
transition: background-color 0.5s ease;
background-color: #00b1f0 !important;
}
block :hover .ti-img {
filter: brightness(0.40);
}
block :hover .ti-text span {
transition: color 0.5s ease;
color: #253841;
}
Updated CSS by Harry with no filter
block {
transition: all 0.5s ease;
}
block .ti-img {
transition: .3s ease-in-out;
}
block .ti-text span {
transition: all 0.5s ease;
}
block:hover .ti-img {
background-color: rgb(0, 177, 240) !important;
}
block:hover .ti-text span {
color: #253841;
}