www/styles/home.module.css

14 lines
277 B
CSS
Raw Normal View History

2022-04-27 09:10:49 +00:00
.button::after {
content: ' \2192';
margin-left: 0.5rem;
display: inline-block;
transition: 100ms ease-in-out all;
}
2022-04-27 09:10:49 +00:00
.button:hover::after {
transform: translateX(0.2rem) scale(1.1);
}
2022-04-27 09:10:49 +00:00
.blueButton:hover::after {
transform: rotateZ(-45deg) scale(1.5);
}