diff options
| author | Mark Otto <[email protected]> | 2011-06-28 11:56:49 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-06-28 11:56:49 -0700 |
| commit | 9660f6f18d610ee4b03c0e3bf2823393fc66640b (patch) | |
| tree | 281e07e2dc2e4b397df48534e3ceb7e0b547d819 /lib/reset.less | |
| parent | 80abe21189992f165ff8c7091743bda727adfedd (diff) | |
| download | bootstrap-9660f6f18d610ee4b03c0e3bf2823393fc66640b.tar.xz bootstrap-9660f6f18d610ee4b03c0e3bf2823393fc66640b.zip | |
new buttons, new modal updates around spacing and placeholder content
Diffstat (limited to 'lib/reset.less')
| -rw-r--r-- | lib/reset.less | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/lib/reset.less b/lib/reset.less index af9a89f08..040177b11 100644 --- a/lib/reset.less +++ b/lib/reset.less @@ -1,16 +1,20 @@ -/*-------------------------------------------------- - +/* Global Reset - - Props to Eric Meyer (meyerweb.com) for his CSS - reset file. We're using an adapted version here - that cuts out some of the reset HTML elements we - will never need here (i.e., dfn, samp, etc). - --------------------------------------------------- */ + Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). +*/ - html, body { margin: 0; padding: 0; } - h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; } - table { border-collapse: collapse; border-spacing: 0; } - ol, ul { list-style: none; } - q:before, q:after, blockquote:before, blockquote:after { content: ""; }
\ No newline at end of file +// Eric Meyer reset +html, body { margin: 0; padding: 0; } +h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; } +table { border-collapse: collapse; border-spacing: 0; } +ol, ul { list-style: none; } +q:before, q:after, blockquote:before, blockquote:after { content: ""; } + +// HTML5 +header, +section, +footer, +article, +aside { + display: block; +} |
