Advertisement
OneTallor

Untitled

Oct 28th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.46 KB | None | 0 0
  1. a.button-facebook {
  2.     border-color: #3b5998;
  3.     background: #627aac;
  4.     color: #444;
  5.     opacity: 0.6;
  6.     transition: opacity .5s ease-in-out;
  7.     -moz-transition: opacity .5s ease-in-out;
  8.     -webkit-transition: opacity .5s ease-in-out;
  9. }
  10.  
  11. a.button-facebook:hover {
  12.     background: #3b5998;
  13.     color: #FFF;
  14.     opacity: 1.0;
  15.     transition: opacity .55s ease-in-out;
  16.     -moz-transition: opacity .2s ease-in-out;
  17.     -webkit-transition: opacity .2s ease-in-out;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement