Update README; remove normalize.metrics.css

This commit is contained in:
necolas 2011-05-26 00:44:28 +01:00
parent 696c274bcd
commit fba85c2781
2 changed files with 12 additions and 146 deletions

View File

@ -1,23 +1,22 @@
normalize.css normalize.css
============= =============
normalize.css makes browsers render all elements consistently and in line with modern standards. Our goal is to make modern presentation standards available to all browsers, young and old. We currently support Mozilla Firefox 3+, Apple Safari 4+, Chrome 10+, Opera 10+, and Internet Explorer 6+. normalize.css makes browsers render all elements more consistently and in line with modern standards.
Installation CSS normalization is distinct from CSS resets. It tackles common cross-browser inconsistencies and bugs without erasing useful browser defaults; and there is no visual homogenization of elements with distinct semantics.
The `normalize.css` file is not intended to be a mysterious "black box" that is included in a project and then ignored. It is heavily commented to help expose the purpose of specific styles. You are encouraged to edit, customise, add to, and remove rulesets in order to meet the design requirements of a project.
Browser support
----------- -----------
Include this code somewhere in the HEAD of your document. Google Chrome
Mozilla Firefox 3+
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" /> Apple Safari 4+
Opera 10+
Contributing Internet Explorer 6+.
------------
Want to contribute? Great! Let me know with an Issue or a Pull Request.
Links Links
------------ ------------
[normalize.css on GoogleCode](https://normalize-css.googlecode.com/) [Jonathan Neal's normalize.css](https://github.com/jonathantneal/normalize.css)
[normalize.css on GitHub](https://github.com/jonathantneal/normalize.css)

View File

@ -1,133 +0,0 @@
/*
* Metrics
* Normalized and personalized sizing and spacing
*/
body,
button
input,
select,
textarea {
font: 12px/1.5 sans-serif;
}
/*
* Sectioning content
*/
article,
aside,
section {
margin: 2em 0;
}
/*
* Flow content
*/
dl,
figure,
menu,
nav,
ol,
p,
pre,
ul {
margin: 1em 0;
}
blockquote {
margin: 1em 40px;
}
/*
* Heading content
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
h3 {
font-size: 1.17em;
margin: 1em 0;
}
h4 {
font-size: 1em;
margin: 1.33em 0;
}
h5 {
font-size: 0.83em;
margin: 1.67em 0;
}
h6 {
font-size: 0.67em;
margin: 2.33em 0;
}
/*
* List content
*/
details,
menu,
ol,
ul {
padding: 0 0 0 40px;
}
dd {
margin: 0 0 0 40px;
}
nav ul {
list-style: none;
}
/*
* Table content
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
caption {
padding: 0 0 1em;
}
th,
td {
padding: 1px;
text-align: left;
}
/*
* Breaks
*/
hr {
background: #CCC;
border: 0;
height: 1px;
margin: -1px 0 1em;
}
/*
* Forms
*/
fieldset {
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}