Advertisement
Guest User

Untitled

a guest
Oct 15th, 2012
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. .wrapper {
  2. width: 100%;
  3. height: 60px;
  4. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#464646', endColorstr='#5a5a5a'); /* for IE */
  5. background: -moz-linear-gradient(center bottom, rgb(70, 70, 70), rgb(90, 90, 90)) repeat scroll 0% 0% transparent;
  6. background: -webkit-gradient(linear, center bottom, center top, from(rgb(70, 70, 70)), to(rgb(90, 90, 90)));
  7. border-top: 2px solid rgb(90, 90, 90);
  8. position: relative;
  9. margin-left: auto;
  10. margin-right: auto;
  11. }
  12.  
  13. .container {
  14. width: 600px;
  15. margin: 0px auto;
  16. }
  17.  
  18. .menu {
  19. height: 60px;
  20. float: left;
  21. }
  22. div.menu {
  23. height: 60px;
  24. }
  25.  
  26. div.menu a:first-child {
  27. border-right: 0;
  28. border-left: 0;
  29. }
  30.  
  31.  
  32.  
  33. div.menu div {
  34. list-style: none outside none;
  35. float: left;
  36. height: 60px;
  37. text-align: center;
  38. }
  39.  
  40. div.menu a {
  41. display: block;
  42. padding: 0 20px;
  43. border-left: 1px solid rgba(255,255,255,0.1);
  44. border-right: 1px solid rgba(0,0,0,0.1);
  45. text-align: center;
  46. line-height: 60px;
  47. -webkit-transition-property: background;
  48. -webkit-transition-duration: 700ms;
  49. -moz-transition-property: background;
  50. -moz-transition-duration: 700ms;
  51. }
  52.  
  53. div.menu a:hover {
  54. background: transparent none;
  55. }
  56.  
  57. div.active a{
  58.  
  59. }
  60.  
  61.  
  62. div.menu p:first
  63. {
  64.  
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement