Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. ----------------* CSS *-----------------
  2.  
  3. img.characters{
  4. position: relative;
  5. height: 60px;
  6. width: 60px;
  7. display: inline-block;
  8. padding: 2px;
  9. box-shadow: 1px 2px 2px #888888;
  10. border: 2px solid #f0f0f0;
  11. margin-left: 2px;
  12. margin-right: 2px;
  13. margin-bottom: 7px;
  14. opacity: 1;
  15. top: 3px;
  16. box-shadow: 0 10px 4px -6px rgba(0, 0, 0, 0);
  17. -webkit-transition: all 0.5s linear;
  18. -moz-transition: all 0.5s linear;
  19. -o-transition: all 0.5s linear;}
  20.  
  21. img.characters:hover{
  22. opacity: 1;
  23. top: -4px;
  24. border: 1px solid #f0f0f0;
  25. box-shadow: 0 10px 9px -6px rgba(0, 0, 0, 0.8);
  26. -webkit-transition: all 0.5s linear;
  27. -moz-transition: all 0.5s linear;
  28. -o-transition: all 0.5s linear;}
  29.  
  30.  
  31.  
  32.  
  33.  
  34. ----------------* HTML *-----------------
  35.  
  36. <div class="photos"><br /> <a class="charactericon" href="http://profiles.rphaven.com/Silent Princess" target="_blank"><img class="characters" src="https://i.imgur.com/AOZAwlu.png" alt="" width="60" height="60" /></a></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement