Guest User

Untitled

a guest
Jan 18th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. /**
  2. * Fontawesome Icons y hover
  3. */
  4.  
  5. body {
  6. padding: 50px;
  7. }
  8.  
  9. a:link {text-decoration: none}
  10. a:visited {text-decoration: none}
  11.  
  12. .fa-rafa {
  13. padding:15px;
  14. color: orange;
  15. background-color: #efefef;
  16. border-radius: 50%;
  17. transition-duration:1s;
  18. }
  19.  
  20. .fa-rafa:hover {
  21. color: white;
  22. background: orange;
  23. transition-duration:1s;
  24. }
Add Comment
Please, Sign In to add comment