Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. .servNavItemWrap {
  2. display: inline-block;
  3. vertical-align: top;
  4. width: 25%;
  5. margin-bottom: 50px;
  6. text-align: center;
  7. cursor: pointer;
  8. }
  9. .servNavItemWrap img {
  10. width: 75px;
  11. height: 75px;
  12. -webkit-transition: all 0.25s;transition: all 0.25s;
  13. }
  14. .servNavItemWrap:hover img {
  15. -webkit-transition: all 0.25s;transition: all 0.25s;
  16. -webkit-transform: scale(1.1);transform: scale(1.1);
  17. }
  18. .servNavItemWrap a {
  19. text-decoration: none;
  20. outline: none;
  21. }
  22. .servNavItemTitle {
  23. margin-top: 5px;
  24. -webkit-transition: all 0.25s;transition: all 0.25s;
  25. }
  26. .servNavItemWrap:hover .servNavItemTitle {
  27. color: #FFF;
  28. -webkit-transition: all 0.25s;transition: all 0.25s;
  29. }
  30.  
  31. <div id="serviceNavBlock2" class="iblock">
  32. <div class="servNavItemWrap"><a href="http://localhost:8080/profile.php">
  33. <img src="" alt="Aluminum Profile">
  34. <span class="servNavItemTitle hGc block">Aluminum</span>
  35. </a></div><div class="servNavItemWrap"><a href="#">
  36. <img src="" alt="Aluminum Components">
  37. <span class="servNavItemTitle hGc block">Components</span>
  38. </a>
  39. </div>
Add Comment
Please, Sign In to add comment