Advertisement
Guest User

Untitled

a guest
Mar 10th, 2013
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.55 KB | None | 0 0
  1. * {margin: 0, padding: 0}
  2. body {
  3.  font-family: "Lucida Sans Unicode", "Bitstream Vera Sans",
  4.  "Trebuchet Unicode MS", "Lucida Grande", "Verdana", "Helvetica", sans-serif;
  5.  background: #262523;
  6. }
  7. #page {
  8.  background: #dedede;
  9.  padding: 1em 0;
  10. }
  11. .dark {
  12.  background: #262523;
  13.  color: #fff;
  14. }
  15. .menu li {
  16.  list-style: none;
  17.  position: relative;
  18. }
  19. .menu a {
  20.  display: block;
  21.  width: 100%;
  22.  text-decoration: none;
  23.  position: relative;
  24.  white-space: nowrap;
  25.  color: #b4b4b4;
  26. }
  27. #top {
  28.  margin: 0 auto 1em auto;
  29.  position: relative;
  30. }
  31. #search {
  32.  display: none;
  33. }
  34. #logo, #top.menu {
  35.  display: inline-block;
  36. }
  37. #logo {
  38.  position: relative;
  39.  z-index: 999;
  40.  white-space: nowrap;
  41.  background: url('images/5.png') no-repeat top right;
  42.  padding-right: 115px;
  43.  height: 93px;
  44. }
  45. #logo h1 a, #logo h1 a:hover, #logo h1 {
  46.  color: #000;
  47.  font-size: 1.2em;
  48.  font-weight: normal;
  49. }
  50. #logo h1 span {
  51.  font-size: 0.8em;
  52.  line-height: 0.5em;
  53.  margin-left: 2.6em;
  54. }
  55. #mainmenu {
  56.  z-index: 900;
  57.  position: absolute;
  58.  bottom: 0;
  59.  right: 0;
  60.  padding: 0 0 0 3em;
  61.  width: 75%;
  62.  background: #262523;
  63.  list-style: none;
  64.  font-family: 'Lucida Sans Unicode', 'Bitstream Vera Sans', 'Trebuchet Unicode MS', 'Lucida Grande', Verdana, Helvetica, sans-serif;
  65. }
  66. #mainmenu li {
  67.  display: inline-block;
  68.  position: relative;
  69. }
  70. #mainmenu li a {
  71.  font-size: 0.9em;
  72.  padding: 0.5em 1.4em;
  73. }
  74. #mainmenu li ul {
  75.  display: none;
  76.  z-index: 901;
  77.  background: #6a6864;
  78.  position: absolute;
  79.  top: 100%;
  80.  left: 0;
  81. }
  82. #mainmenu li:hover ul {
  83.  display: block;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement