Hyperlink mouse hover effect
a {
color: #ff5200;
text-decoration: none;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
a:hover,
a:focus {
color: #000;
text-decoration: none;
opacity: .75;
-webkit-opacity: .75;
-moz-opacity: .75;
filter: alpha(opacity=75);
}
Button transform/enlarge
.xxxx {
transition-duration: 0.4s;
}
.xxxx:hover {
transform: scale3d(1.02,1.02,1.04);
transition-duration: 0.4s;
}
Mouse/Cursor Pointer
.pointer {
cursor: pointer;
}