vpn-p2p/nodejs/public/css/styles.css
2020-05-05 23:07:00 -04:00

14 lines
251 B
CSS
Executable File

.hover-effect {
transition: all .5s ease;
}
.hover-effect:hover {
color: darkblue;
transition: all .5s ease;
background-color: inherit;
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1); /* Standard syntax */
}