Advertisement
mdixon

CSS

Dec 21st, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.20 KB | None | 0 0
  1. #top-bar {
  2.     background: none;
  3.     border-bottom:0;
  4.     /*height: 54px;*/
  5.     margin-top: 0px;
  6.     position: absolute;
  7.     z-index: 10;
  8. }
  9.  
  10. /*--REMOVED PROFILES--*/
  11.  
  12. #top_search {
  13.     float: left;
  14.     margin-top: 20px;
  15.     margin-left: 730px;
  16.     width: 200px;
  17. }
  18. #top_search input {
  19.     background: #ffffff;
  20.     border: solid 1px #cccccc;
  21.     color: #666666;
  22.     float: left;
  23.     padding: 3px 5px 3px 5px;
  24.     width: 200px;
  25.     height: 20px;
  26.     box-shadow: none;
  27. }
  28. #top_search button {
  29.     background: url(images/search.png) no-repeat;
  30.     border: 0;
  31.     cursor: pointer;
  32.     display: block;
  33.     float: right;
  34.     margin-left: 0px;
  35.     margin-top: -22px;
  36.     width: 20px;
  37.     height: 20px;
  38. }
  39. #top_search button span {
  40.     display: none;
  41. }
  42.  
  43. /*--REMOVED #nav #top_search--*/
  44.  
  45. #header {
  46.     background-position: center top;
  47.     background-repeat: no-repeat;
  48.     border-top:0;
  49.     height: 140px;
  50.     width: 100%;
  51.     position: relative;
  52.     overflow: visible;
  53. }
  54. .header-img {
  55.     position: absolute;
  56.     top: 0;
  57.     left: 50%;
  58.     margin-left: -480px;
  59. }
  60. #header .header_title {
  61.     font: bold 28px "Lucida Grande", sans-serif;
  62.     position: relative;
  63.     width: 852px;
  64.     top: 80px;
  65.     left:38px;
  66. }
  67. .header_title,
  68. .header_title a,
  69. .header_title a:hover {
  70.     text-decoration: none;
  71.     color: #000;
  72. }
  73. .header_desc {
  74.     font-size: 18px;
  75.     font-weight: normal;
  76.     border-bottom: none;
  77.     color: #000;
  78.     position: relative;
  79.     top: 68%;
  80.     width: 852px;
  81.     font: normal 22px "Pontano Sans", arial, sans-serif;
  82. }
  83. #header_img_link {
  84.     display: block;
  85.     position: absolute;
  86.     text-decoration: none;
  87.     width: 100%;
  88.     height: 140px;
  89. }
  90. #header .sidebar-wrap {
  91.     position: absolute;
  92.     z-index: 50;
  93. }
  94. .sidebar-wrap #searchsubmit {
  95.     float: right;
  96.     margin-top: 10px;
  97. }
  98. .sidebar-wrap #s {
  99.     width: 160px;
  100. }
  101.  
  102. /*ADDED CUSTOM HEADER ELEMENTS*/
  103.  
  104. #log_in {
  105.     position: absolute;
  106.     float: left;
  107.     margin-top: 20px;
  108.     margin-left: 590px;
  109. }
  110. #social_icons {
  111.     position: absolute;
  112.     float: left;
  113.     margin-top: 60px;
  114.     margin-left: 810px;
  115.     width: 200px;
  116.     padding: 0px;
  117. }
  118. #social_icons ul{
  119.     height:25ox;
  120.     width:200px;
  121. }
  122. #social_icons ul li{
  123.     display: inline;
  124.     float: left;
  125.     height: 25px;
  126.     margin:0px;
  127.     padding: 0px;
  128. }
  129. #social_icons img {
  130.     float: left;
  131.     height: 25px;
  132.     margin: 0px;
  133.     padding-left: 7px;
  134.     width: 25px;
  135. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement