Advertisement
Jeffersonvdh

Untitled

Jan 21st, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.50 KB | None | 0 0
  1. /*=====================================
  2. =========== stylesheet reset ==========
  3. =====================================*/
  4.  
  5. html, body, div, span, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. abbr, address, cite, code,
  8. del, dfn, em, img, ins, kbd, q, samp,
  9. small, strong, sub, sup, var,
  10. b, i,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, figcaption, figure,
  15. footer, header, hgroup, menu, nav, section, summary,
  16. time, mark, audio, video {
  17.     margin:0;
  18.     padding:0;
  19.     border:0;
  20.     outline:0;
  21.     font-size:100%;
  22.     vertical-align:baseline;
  23.     background:transparent;
  24. }
  25.  
  26. body {
  27.     line-height:1;
  28. }
  29.  
  30. article,aside,details,figcaption,figure,
  31. footer,header,hgroup,menu,nav,section {
  32.     display:block;
  33. }
  34.  
  35. nav ul {
  36.     list-style:none;
  37. }
  38.  
  39. blockquote, q {
  40.     quotes:none;
  41. }
  42.  
  43. blockquote:before, blockquote:after,
  44. q:before, q:after {
  45.     content:'';
  46.     content:none;
  47. }
  48.  
  49. a {
  50.     margin:0;
  51.     padding:0;
  52.     font-size:100%;
  53.     vertical-align:baseline;
  54.     background:transparent;
  55. }
  56.  
  57. /* change colours to suit your needs */
  58. ins {
  59.     background-color:#ff9;
  60.     color:#000;
  61.     text-decoration:none;
  62. }
  63.  
  64. /* change colours to suit your needs */
  65. mark {
  66.     background-color:#ff9;
  67.     color:#000;
  68.     font-style:italic;
  69.     font-weight:bold;
  70. }
  71.  
  72. del {
  73.     text-decoration: line-through;
  74. }
  75.  
  76. abbr[title], dfn[title] {
  77.     border-bottom:1px dotted;
  78.     cursor:help;
  79. }
  80.  
  81. table {
  82.     border-collapse:collapse;
  83.     border-spacing:0;
  84. }
  85.  
  86. /* change border colour to suit your needs */
  87. hr {
  88.     display:block;
  89.     height:1px;
  90.     border:0;  
  91.     border-top:1px solid #cccccc;
  92.     margin:1em 0;
  93.     padding:0;
  94. }
  95.  
  96. input, select {
  97.     vertical-align:middle;
  98. }
  99.  
  100. /*=====================================
  101. ======== html, body & container =======
  102. =====================================*/
  103. html {
  104.     height:100%;
  105. }
  106. body {
  107.     background:url(../images/background.png) repeat;
  108.     width:100%;
  109.     height:100%;
  110.     margin:0 auto;
  111. }
  112. .container {
  113.     background:#333;
  114. }
  115.  
  116. /*=====================================
  117. ============ landing page =============
  118. =====================================*/
  119.  
  120. #landing_page {
  121.     width:100%;
  122. }
  123. #logo {
  124.     width:300px;
  125.     height:300px;
  126.     margin:0 auto;
  127. }
  128.  
  129. /*=====================================
  130. =========== navigation menu ===========
  131. =====================================*/
  132.  
  133. #nav {
  134.     width:100%;
  135.     height:50px;
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement