Advertisement
Guest User

redwall_hp

a guest
Aug 14th, 2008
896
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.02 KB | None | 0 0
  1. /***** Global Settings *****/
  2.  
  3. html, body {
  4. border:0;
  5. margin:0;
  6. padding:0;
  7. }
  8.  
  9. body {
  10. font:100%/1.20 arial, helvetica, sans-serif;
  11. background-color:#fff;
  12. text-align:center;
  13. }
  14.  
  15. /***** Common Formatting *****/
  16.  
  17. h1, h2, h3, h4, h5, h6 {
  18. margin:0;
  19. padding:0;
  20. }
  21.  
  22. h1 {
  23. padding:30px 0 25px 0;
  24. letter-spacing:-1px;
  25. font:2em arial, helvetica, sans-serif;
  26. font-weight:bold;
  27. }
  28.  
  29. h2 {
  30. padding:3px 0;
  31. letter-spacing:-1px;
  32. font:1.5em arial, helvetica, sans-serif;
  33. font-weight:bold;
  34. }
  35.  
  36. h3 {
  37. font:1.1em arial, helvetica, sans-serif;
  38. font-weight:bold;
  39. }
  40.  
  41. p, ul, ol {
  42. margin:0;
  43. padding:0 0 18px 0;
  44. }
  45.  
  46. ul, ol {
  47. padding:0 0 18px 30px;
  48. }
  49.  
  50. blockquote {
  51. margin:22px 40px;
  52. padding:0;
  53. }
  54.  
  55. small {
  56. font-size:0.85em;
  57. }
  58.  
  59. img {
  60. border:0;
  61. }
  62.  
  63. sup {
  64. position:relative;
  65. bottom:0.3em;
  66. vertical-align:baseline;
  67. }
  68.  
  69. sub {
  70. position:relative;
  71. bottom:-0.2em;
  72. vertical-align:baseline;
  73. }
  74.  
  75. acronym, abbr {
  76. cursor:help;
  77. letter-spacing:1px;
  78. border-bottom:1px dashed;
  79. }
  80.  
  81. /***** Tables *****/
  82.  
  83. table {
  84. border:0;
  85. margin:0 0 18px 0;
  86. padding:0;
  87. }
  88.  
  89. table tr td {
  90.   padding:2px;
  91. }
  92.  
  93. /***** Global Classes *****/
  94.  
  95. .clear         { clear:both; }
  96.  
  97. .float-left    { float:left; }
  98. .float-right   { float:right; }
  99.  
  100. .text-left     { text-align:left; }
  101. .text-right    { text-align:right; }
  102. .text-center   { text-align:center; }
  103. .text-justify  { text-align:justify; }
  104.  
  105. .bold          { font-weight:bold; }
  106. .italic        { font-style:italic; }
  107. .underline     { border-bottom:1px solid; }
  108. .highlight     { background:#ffc; }
  109.  
  110. .wrap          { width:960px;margin:0 auto; }
  111.  
  112. .img-left      { float:left;margin:4px 10px 4px 0; }
  113. .img-right     { float:right;margin:4px 0 4px 10px; }
  114. .img-middle {vertical-align:middle;} /* Vertically align icon with text line */
  115.  
  116. .nopadding     { padding:0; }
  117. .noindent      { margin-left:0;padding-left:0; }
  118. .nobullet      { list-style:none;list-style-image:none; }
  119. .nounderline { text-decoration: underline; }
  120.  
  121. /* ====================================== */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement