We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Ballyhoo


Posted By

masaya on 01/14/07


Tagged

css


Versions (?)


Who likes this?

6 people have marked this snippet as a favorite

basicmagic
markireland
stoker
masaya
x-or
markor


base.css


Published in: CSS 


URL: http://masaya-sugawara.com/

  1. @charset "UTF-8";
  2.  
  3.  
  4.  
  5. /* ----------------------------------------------------------------------
  6. init
  7. ---------------------------------------------------------------------- */
  8. html{
  9. width: 100%;
  10. }
  11.  
  12. *{
  13. margin: 0;
  14. padding: 0;
  15. }
  16.  
  17. body{
  18. background-color: #fff;
  19. color: #000;
  20. }
  21.  
  22. img{
  23. border: 0;
  24. }
  25.  
  26. hr{
  27. display: none;
  28. }
  29.  
  30. /* ----------------------------------------------------------------------
  31. link
  32. ---------------------------------------------------------------------- */
  33. a{
  34. color: #03c;
  35. text-decoration: underline;}
  36. a:visited{
  37. color: #906;
  38. text-decoration: underline;}
  39. a:hover{
  40. text-decoration: underline;
  41. }
  42.  
  43. /* ----------------------------------------------------------------------
  44. text
  45. ---------------------------------------------------------------------- */
  46. *{
  47. font-size: 14px;
  48. font-family: Osaka, sans-serif;
  49. }
  50.  
  51. body{
  52. line-height: 1.8;
  53. }
  54.  
  55. h1{
  56. font-size: 1.7142857em;
  57. line-height: 1.46666667;
  58. font-weight: normal;}
  59. h1 a{
  60. font-size: 100%;
  61. }
  62.  
  63. h2{
  64. font-size: 1.5em;
  65. line-height: 1.53333333;
  66. font-weight: normal;}
  67. h2 a{
  68. font-size: 100%;
  69. }
  70.  
  71. h3{
  72. font-size: 1.2857143em;
  73. line-height: 1.62222222;
  74. font-weight: normal;}
  75. h3 a{
  76. font-size: 100%;
  77. }
  78.  
  79. h4{
  80. font-size: 1em;
  81. line-height: 1.8;
  82. font-weight: normal;}
  83. h4 a{
  84. font-size: 100%;
  85. }
  86.  
  87. h5{
  88. font-size: 0.85714286em;
  89. line-height: 1.93333333;
  90. font-weight: normal;}
  91. h5 a{
  92. font-size: 100%;
  93. }
  94.  
  95. h6{
  96. font-size: 0.71428571em;
  97. line-height: 2.12;
  98. font-weight: normal;}
  99. h6 a{
  100. font-size: 100%;
  101. }
  102.  
  103. blockquote *{
  104. font-family: Georgia,serif;
  105. }
  106.  
  107. pre{
  108. font-family: Monaco;
  109. font-size: 0.85714286em;
  110. line-height: 1.93333333;}
  111. pre code{
  112. font-size: 100%;
  113. }
  114.  
  115. p{}
  116.  
  117. ul{
  118. list-style-type: square;
  119. list-style-image: none;
  120. list-style-position: outside;}
  121. ol{
  122. list-style-type: decimal;
  123. list-style-image: none;
  124. list-style-position: outside;}
  125. li{}
  126.  
  127. dl{}
  128. dt{}
  129. dd{}
  130.  
  131. strong{
  132. font-weight: bold;
  133. }
  134.  
  135. em{
  136. font-style: italic;
  137. }
  138.  
  139. cite{
  140. font-style: normal;
  141. }
  142.  
  143. code{
  144. font-family: Monaco;
  145. }
  146.  
  147. q{}
  148. /* q:before{content:"";}
  149. q:after{content:"";} */
  150.  
  151.  
  152.  
  153. /* ----------------------------------------------------------------------
  154. form
  155. ---------------------------------------------------------------------- */
  156. fieldset{
  157. border-width: 0;
  158. }

Report this snippet 

You need to login to post a comment.