I'm trying to make transition stuff by -25 degrees but what i want is to only transit "box", not the font. The thing that i don't understand is how to make it with :before/:after. Whenever i try to do it via CSS it basically ignores all setting i've made for specific container.
.option:hover
{
font-style: normal !important;
background-color: green;
cursor: pointer;
box-sizing: border-box;
transition-property: background;
transition-duration: .4s;
left: 0;
top: 0;
-webkit-transform: skew(-25deg);
}