Advertisement
Guest User

Untitled

a guest
Feb 1st, 2010
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.02 KB | None | 0 0
  1. /* CSS RESET. */
  2.  
  3. /* http://meyerweb.com/eric/tools/css/reset/ */
  4. /* v1.0 | 20080212 */
  5.  
  6. html, body, div, span, applet, object, iframe,
  7. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  8. a, abbr, acronym, address, big, cite, code,
  9. del, dfn, em, font, img, ins, kbd, q, s, samp,
  10. small, strike, strong, sub, sup, tt, var,
  11. b, u, i, center,
  12. dl, dt, dd, ol, ul, li,
  13. fieldset, form, label, legend,
  14. table, caption, tbody, tfoot, thead, tr, th, td {
  15.     margin: 0;
  16.     padding: 0;
  17.     border: 0;
  18.     outline: 0;
  19.     font-size: 100%;
  20.     vertical-align: baseline;
  21.     background: transparent;
  22. }
  23. body {
  24.     line-height: 1;
  25. }
  26. ol, ul {
  27.     list-style: none;
  28. }
  29. blockquote, q {
  30.     quotes: none;
  31. }
  32. blockquote:before, blockquote:after,
  33. q:before, q:after {
  34.     content: '';
  35.     content: none;
  36. }
  37.  
  38. /* remember to define focus styles! */
  39. :focus {
  40.     outline: 0;
  41. }
  42.  
  43. /* remember to highlight inserts somehow! */
  44. ins {
  45.     text-decoration: none;
  46. }
  47. del {
  48.     text-decoration: line-through;
  49. }
  50.  
  51. /* tables still need 'cellspacing="0"' in the markup */
  52. table {
  53.     border-collapse: collapse;
  54.     border-spacing: 0;
  55. }
  56.  
  57. body {
  58.     background: #cacaca url(images/background.png) top center no-repeat; /*  */
  59.     text-align: center;
  60.     font-family: "Arial";
  61.     }
  62.  
  63. #content {
  64.     margin: 40px auto;
  65.     width: 80%;
  66.     text-align: left;
  67.     }
  68.    
  69.     #logo {
  70.         float: left;
  71.         }
  72.    
  73.     #navigation {
  74.         color: #525252;
  75.         float: right;
  76.         font-size: 19px;
  77.         font-weight: 500;
  78.         display: inline;
  79.         }
  80.        
  81.         #navigation ul {
  82.             display: inline;
  83.             }
  84.        
  85.         #navigation li {
  86.             display: inline;
  87.             margin-right: 10px;
  88.             }
  89.            
  90.             #navigation li a {
  91.                 color: inherit;
  92.                 text-decoration: none;
  93.                 }
  94.                
  95.                 #navigation li a:hover {
  96.                     color: #207687;
  97.                     }
  98.                    
  99.         #navigation input#search_bar {
  100.             background: url(images/searchbar.png) no-repeat;
  101.             border: none;
  102.             height: 20px;
  103.             width: 156px;
  104.             margin: 0;
  105.             }
  106.            
  107.         #navigation input#submit {
  108.             background: url(images/submit.png) no-repeat;
  109.             width: 30px;
  110.             height: 20px;
  111.             margin-left: -30px;
  112.             border: none;
  113.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement