Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1.  
  2.  
  3. //html код//
  4.  
  5. <ul>
  6. <li><a clone="главная" href="#">главная</a></li>
  7. <li><a clone="приложения" href="#">приложения</a></li>
  8. <li><a clone="портфолио" href="#">портфолио</a></li>
  9. <li><a clone="отзывы" href="#">отзывы</a></li>
  10. </ul>
  11.  
  12. //style//
  13. ul
  14. margin: 0
  15. padding: 0
  16. list-style-type: none
  17. text-transform: uppercase
  18. overflow: hidden
  19. display: block
  20. height: auto
  21. background: #fff
  22. li
  23. display: block
  24. height: 50px
  25. float: left
  26. a
  27. position: relative
  28. text-decoration: none
  29. display: block
  30. text-align: center
  31. color: #000
  32. font-size: em(16px)
  33. padding: 0 10px
  34. line-height: 50px
  35.  
  36. transition: all .3s ease
  37. &:hover
  38. &:before
  39. margin-top: -50px
  40. &:before
  41. position: absolute
  42. content: attr(clone)
  43. font-size: em(16px)
  44. padding: 0 10px
  45. text-decoration: none
  46. text-align: center
  47. display: block
  48. line-height: 50px
  49. top: 100%
  50. left: 0
  51. color: brown
  52. background-color: #E0622A
  53. transition: all .3s ease
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement