Advertisement
Guest User

Untitled

a guest
Aug 1st, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.37 KB | None | 0 0
  1.  
  2. /* http://meyerweb.com/eric/tools/css/reset/
  3.    v2.0 | 20110126
  4.    License: none (public domain)
  5. */
  6.  
  7. html, body, div, span, applet, object, iframe,
  8. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  9. a, abbr, acronym, address, big, cite, code,
  10. del, dfn, em, img, ins, kbd, q, s, samp,
  11. small, strike, strong, sub, sup, tt, var,
  12. b, u, i, center,
  13. dl, dt, dd, ol, ul, li,
  14. fieldset, form, label, legend,
  15. table, caption, tbody, tfoot, thead, tr, th, td,
  16. article, aside, canvas, details, embed,
  17. figure, figcaption, footer, header, hgroup,
  18. menu, nav, output, ruby, section, summary,
  19. time, mark, audio, video {
  20.     margin: 0;
  21.     padding: 0;
  22.     border: 0;
  23.     font-size: 100%;
  24.     font: inherit;
  25.     vertical-align: baseline;
  26. }
  27. /* HTML5 display-role reset for older browsers */
  28. article, aside, details, figcaption, figure,
  29. footer, header, hgroup, menu, nav, section {
  30.     display: block;
  31. }
  32. ol, ul {
  33.     list-style: none;
  34. }
  35. blockquote, q {
  36.     quotes: none;
  37. }
  38. blockquote:before, blockquote:after,
  39. q:before, q:after {
  40.     content: '';
  41.     content: none;
  42. }
  43. table {
  44.     border-collapse: collapse;
  45.     border-spacing: 0;
  46. }
  47. @font-face {  
  48.   font-family: Vani;  
  49.   src: url(/fonts/VANI.TTF ) format("truetype");  
  50. }  
  51.  
  52.  
  53. *{
  54.     margin:0px;
  55.     padding:0px;
  56.     list-style-type:none;
  57. }
  58. body{
  59.     line-height: 1;
  60.     text-align:center;
  61.     font-family:Vani;
  62.     font-size:12px;
  63.     color:#fffff;
  64.     background-color:#6b6969;
  65. }
  66. img{
  67.     border:none;
  68. }
  69. .wrapper{
  70.     width:960px;
  71.     height:1200px;
  72.     margin:0px auto 0px;
  73.     text-align:left;
  74.     background-image:url('images/pattern2.png');
  75. }
  76. .header{
  77.     height:40px;
  78. }
  79. .main_menu{
  80.     height:40px;
  81.     background-image:url('images/navbar_back.png');
  82.     -webkit-box-shadow: 0 -1px 7px 1px black;
  83.     -moz-box-shadow: 0 -1px 7px 1px black;
  84.     box-shadow: 0 -1px 7px 1px black;
  85. }
  86. .menu_list {
  87.     height:37px;
  88.     line-height:37px;
  89. }
  90. .menu_list ul{
  91.     list-style-type:none;
  92.     margin:0px;
  93.     padding:0px;
  94.     overflow:hidden;
  95. }
  96. .menu_list li{
  97.     float:left;
  98.     background:url("images/border.png") no-repeat top right;
  99.     -moz-background:url("images/border.png") no-repeat top right;
  100.     height:40px;
  101. }
  102. .menu_list a:link, a:visited{
  103.     display:block;
  104.     width:120px;
  105.     font-weight:bold;
  106.     font-size:18px;
  107.     color:#FFFFFF;
  108.     text-align:center;
  109.     padding:4px;
  110.     text-decoration:none;
  111.     text-transform:uppercase;
  112.     text-shadow: black 0px -1px 2px;
  113. }
  114. .menu_list h4{
  115.     font-family:Vani;
  116.     font-size:18px;
  117.     color:#ffffff;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement