www/styles/quick-links.module.css

20 lines
363 B
CSS
Raw Normal View History

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