blob: ad0728a1c2a49030768a5446c1dea33bc33c83d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.social {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
margin: 0 1rem;
width: 45px;
height: 45px;
}
.social img {
width: 40px;
height: 40px;
transition: transform 0.1s;
}
.social:hover img,
.social:active img,
.social:focus img {
transform: scale(1.1);
}
|