scale social pictures by hovering
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user