Advertisement
Guest User

Untitled

a guest
Nov 26th, 2011
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. #nav{
  2. height:35px;
  3. border-bottom:1px solid #ddd;
  4. position:fixed;
  5. top:0px;
  6. left:0px;
  7. right:0px;
  8. background:#fff url(images/nav.png) repeat-x center left;
  9. }
  10. #nav ul{
  11. height:25px;
  12. list-style:none;
  13. margin:6px auto 0px auto;
  14. width:600px;
  15. }
  16. #nav ul li{
  17. display:inline;
  18. float:left;
  19. margin:0px 2px;
  20. }
  21. #nav a{
  22. font-size:11px;
  23. font-weight:bold;
  24. float:left;
  25. padding: 2px 4px;
  26. color:#999;
  27. text-decoration: none;
  28. border:1px solid #ccc;
  29. cursor: pointer;
  30. background:transparent url(images/overlay.png) repeat-x center left;
  31. height:16px;
  32. line-height:16px;
  33. }
  34. #nav a:hover{
  35. background:#D9D9DA none;
  36. color: #fff;
  37. }
  38. #nav a.top span, #nav a.bottom span{
  39. float:left;
  40. width:16px;
  41. height:16px;
  42. }
  43. #nav a.top span{
  44. background:transparent url(images/top.png) no-repeat center center;
  45. }
  46. #nav a.bottom span{
  47. background:transparent url(images/bottom.png) no-repeat center center;
  48. }
  49.  
  50. #nav ul li.search{
  51. float:right;
  52. }
  53. #nav input[type="text"]{
  54. float:left;
  55. border:1px solid #ccc;
  56. margin:0px 1px 0px 50px;
  57. padding:2px 2px 2px 2px;
  58. }
  59. input.searchbutton{
  60. border:1px solid #ccc;
  61. padding:1px;
  62. cursor:pointer;
  63. width:30px;
  64. height:22px;
  65. background:#E8E9EA url(images/search.png) no-repeat center center;
  66. }
  67. input.searchbutton:hover{
  68. background-color:#D9D9DA;
  69. }
  70.  
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement