Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1. @import "reset";
  2.  
  3. @_width: 950px;
  4.  
  5. html {
  6. height:100%;
  7. }
  8. body {
  9. font:12px Helvetica,Arial,sans-serif;
  10. height:100%;
  11. background-color:#fff;
  12. }
  13. span.icon-16 {
  14. background:url(../images/icons-16.gif) no-repeat;
  15. width:16px;
  16. height:16px;
  17. }
  18. .submit {
  19. cursor:pointer;
  20. }
  21.  
  22. // Header
  23. #header-wrapper {
  24. width:100%;
  25. height:160px;
  26. overflow:hidden;
  27. background-image:url(../images/body_bg.png);
  28.  
  29. div#header {
  30. margin:0 auto;
  31. width:@_width;
  32. height:100%;
  33. position:relative;
  34.  
  35. h1 {
  36. position:absolute;
  37. left:-102px;
  38. top:-10px;
  39. width:362px;
  40. height:220px;
  41. background-image:url(../images/h1.jpg);
  42.  
  43. a {
  44. text-indent:-999999px;
  45. display:block;
  46. width:100%;
  47. height:100%;
  48. }
  49. }
  50.  
  51. ul#account_actions {
  52. position:absolute;
  53. right:0;
  54. top:24px;
  55. overflow:hidden;
  56.  
  57. li {
  58. float:left;
  59. margin-left:15px;
  60.  
  61. a {
  62. font-size:13px;
  63. padding-left:16px;
  64. position:relative;
  65.  
  66. span {
  67. position:absolute;
  68. display:block;
  69. top:-2px;
  70. left:0;
  71. }
  72. }
  73. a.login {
  74. color:#fff;
  75.  
  76. span {
  77. background-position:0 0;
  78. }
  79. }
  80. a.signup {
  81. color:#e9a119;
  82.  
  83. span {
  84. background-position:0 16px;
  85. }
  86. }
  87. }
  88.  
  89.  
  90. }
  91. div#browse_search {
  92. width:422px;
  93. height:39px;
  94. position:absolute;
  95. right:0;
  96. top:62px;
  97. background-image:url(../images/browse_search_bg.jpg);
  98.  
  99. a {
  100. display:block;
  101. text-indent:-999999px;
  102. position:absolute;
  103. left:0;
  104. top:0;
  105. height:100%;
  106. width:150px;
  107. }
  108.  
  109. input.text {
  110. font-style:italic;
  111. color:#666;
  112. position:absolute;
  113. left:184px;
  114. top:8px;
  115. padding:5px;
  116. width:140px;
  117. background:#fff;
  118. }
  119. input.submit {
  120. position:absolute;
  121. left:350px;
  122. width:70px;
  123. height:100%;
  124. background:transparent;
  125. }
  126. }
  127. }
  128. }
  129.  
  130. // Navigation
  131. div#nav-wrapper {
  132. width:100%;
  133. height:37px;
  134. background:url(../images/nav_bg.gif);
  135.  
  136. ul#breadcrumbs {
  137. margin:0 auto;
  138. width:@_width;
  139. overflow:hidden;
  140. position:relative;
  141.  
  142. li {
  143. a {
  144. line-height:37px;
  145. font-weight:bold;
  146. font-size:14px;
  147. color:#000;
  148. float:left;
  149. height:100%;
  150. padding:0 15px 0 25px;
  151. background:url(../images/breadcrumb_bg.gif) 0 0 no-repeat;
  152. }
  153. a.first {
  154. padding-left:0;
  155. background:none;
  156. }
  157. a.active {
  158. color:#fff;
  159. background:#e9a119 url(../images/breadcrumb_active_bg.gif) 0 0 no-repeat;
  160. }
  161. }
  162. }
  163. }
  164.  
  165. // Content
  166. div#content-wrapper {
  167. margin:0 auto;
  168. width:@_width;
  169. background:#fff;
  170. padding-bottom:84px;
  171. }
  172.  
  173. // Footer
  174. div#footer-wrapper {
  175. width:100%;
  176. height:84px;
  177. position:absolute;
  178. bottom:0;
  179. left:0;
  180.  
  181. div#footer {
  182. border-top:1px solid #ccc;
  183. margin:0 auto;
  184. padding-top:18px;
  185. height:42px;
  186. width:@_width;
  187. position:relative;
  188.  
  189. a {
  190. line-height:18px;
  191. color:#444;
  192. margin-right:9px;
  193. font-weight:bold;
  194. font-size:12px;
  195. }
  196. small {
  197. font-weight:normal;
  198. font-size:9px;
  199. }
  200.  
  201. form {
  202. position:absolute;
  203. right:0;
  204. top:14px;
  205. overflow:hidden;
  206.  
  207. ul li {
  208. display:inline;
  209. }
  210. label {
  211. font-size:14px;
  212. font-weight:bold;
  213. color:#e9a119;
  214. margin-right:12px;
  215. }
  216. input.text {
  217. font-style:italic;
  218. color:#666;
  219. padding:5px;
  220. width:140px;
  221. background:#fff;
  222. border:1px solid #eee;
  223. }
  224. input.submit {
  225. padding:5px;
  226. font-weight:bold;
  227. width:70px;
  228. height:100%;
  229. background:transparent;
  230. }
  231. }
  232. }
  233. }
Add Comment
Please, Sign In to add comment