Guest User

Untitled

a guest
May 20th, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. ul.nav {
  2. list-style: none;
  3. display: block;
  4. width: 200px;
  5. position: relative;
  6. top: 10px;
  7. left: 300px;
  8. padding: 10px 0 10px 10px;
  9. background: url(shad2.png) no-repeat;
  10. background-position:right;
  11.  
  12. }
  13.  
  14. ul.nav li a
  15. {
  16. -moz-transition: all 0.3s ease-out;
  17. -o-transition: all 0.3s ease-out;
  18. -webkit-transition: all 0.3s ease-out;
  19. background: #005A9C url(border.png) no-repeat;
  20. background-position: right;
  21. color: #FFFFFF;
  22. padding: 7px 15px 7px 20px;
  23. border-top-left-radius: 10px;
  24. border-bottom-left-radius: 10px;
  25. -webkit-border-top-right-radius: 10px;
  26. -webkit-border-bottom-right-radius: 10px;
  27. width: 100px;
  28. display: block;
  29. text-decoration: none;
  30. -webkit-box-shadow: 2px 2px 4px #888;
  31. box-shadow: 2px 2px 4px #888;
  32. }
  33.  
  34.  
  35. ul.nav li a:hover
  36. {
  37. background: #ebebeb url(border.png) no-repeat;
  38. color: #005A9C;
  39. padding: 7px 15px 7px 30px;
  40. }
  41.  
  42. ul.nav li a {
  43. ...
  44. padding: 7px 15px 7px 30px;
  45. }
  46.  
  47. ul.nav li a:hover {
  48. ...
  49. padding: 7px 35px 7px 20px;
  50. position:relative;
  51. left:-20px;
Advertisement
Add Comment
Please, Sign In to add comment