scale social pictures by hovering

This commit is contained in:
2019-03-19 09:38:20 +01:00
parent faed4308b5
commit 2d10299a60

View File

@@ -31,3 +31,15 @@ div.contact p {
div.container.links .label-success { div.container.links .label-success {
background-color: rgba(92, 184, 92, 0.6); background-color: rgba(92, 184, 92, 0.6);
} }
/* Scale social icons with hovering */
.social-links li a {
font-size: 26px;
}
.social-links li a i {
transform: scale(0.8);
transition: transform .3s;
}
.social-links li a:hover i {
transform: scale(1);
}