Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.64 KB | None | 0 0
  1. #header #menu {
  2.     margin: 0;
  3.     padding: 10px 0;
  4.     position: absolute;
  5.     bottom: 0;
  6.     float: left;
  7.     background: #222;
  8.     -moz-box-shadow: 0px 0px 3px 0px #424242;
  9.         -webkit-box-shadow: 0px 0px 3px 0px #424242;
  10.             box-shadow: 0px 0px 3px 0px #424242;
  11.     border-radius: 10px;
  12.         -moz-border-radius: 10px;
  13.         -webkit-border-radius: 10px;
  14. }
  15.  
  16. #header #menu .content form {
  17.     display: none;
  18. }
  19.  
  20. #header #menu .content ul {
  21.     margin: 0;
  22. }
  23.  
  24. #header #menu .content ul li {
  25.     margin: 0 15px 0 15px;
  26.     display: inline;
  27.     list-style-type: none;
  28. }
  29.  
  30. #header #menu .content ul li a {
  31.     font-size: 20px;
  32.     color: #ddd;
  33. }
  34.  
  35. #header #menu .content ul li a:hover,
  36. #header #menu .content ul li a.active {
  37.     text-decoration: none;
  38.     color: #fff;
  39. }
  40.  
  41. #header #menu .content ul li ul {
  42.     display: none;
  43. }
  44.  
  45. #header #menu .content ul li:hover ul {
  46.     display: block;
  47.     position: absolute;
  48.     z-index: 1;
  49.     background: #222;
  50.     -moz-box-shadow: 0px 0px 3px 0px #424242;
  51.         -webkit-box-shadow: 0px 0px 3px 0px #424242;
  52.             box-shadow: 0px 0px 3px 0px #424242;
  53.     border-radius: 10px;
  54.         -moz-border-radius: 10px;
  55.         -webkit-border-radius: 10px;
  56. }
  57.  
  58. #header #menu .content ul li ul:before {
  59.     content: "";
  60.     position: absolute;
  61. }
  62.  
  63. #header #menu .content ul li ul li {
  64.     float: none;
  65.     white-space: nowrap;
  66.     display: block;
  67. }
  68.  
  69. #header #menu .content ul li:hover ul li a {
  70.     background: transparent;
  71.     border: none;
  72.     padding: 0 10px 0 10px;
  73.     font-size: 16px;
  74. }
  75.  
  76. #header #title {
  77.     margin: 0px auto 0 78%;
  78.     padding-right: 2%;
  79.     width: 18%;
  80. }
  81.  
  82. #header #title .logo {
  83.     width: 200px;
  84.     height: 113px;
  85.     background: url(logo.png) right no-repeat;
  86.     background-size: 200px 113px;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement