14 lines
No EOL
242 B
CSS
14 lines
No EOL
242 B
CSS
.iconWrapper {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
transition: all .2s; /* Animation */
|
|
}
|
|
|
|
.zoomWrapper {
|
|
opacity: 1;
|
|
transform: scale(1.8);
|
|
transition: all .8s;
|
|
} |