From 37190333b45ce6ed57d5daa3f18904eeb2782810 Mon Sep 17 00:00:00 2001 From: Marco Rieser Date: Mon, 22 May 2017 10:20:54 +0200 Subject: [PATCH] Add SCSS Version --- README.md | 4 -- tinyreset.scss | 124 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 124 insertions(+), 4 deletions(-) create mode 100644 tinyreset.scss diff --git a/README.md b/README.md index ab6039d..086ace3 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,3 @@ #### unpkg: `https://unpkg.com/tinyreset@1.0.1/tinyreset.min.css` - - -TODO: -1. `.scss` version \ No newline at end of file diff --git a/tinyreset.scss b/tinyreset.scss new file mode 100644 index 0000000..17191a0 --- /dev/null +++ b/tinyreset.scss @@ -0,0 +1,124 @@ +/*! tinyreset.css v0.1.0 | github.com/shankariyerr/tinyreset */ +html, +body, +div, +span, +iframe, +blockquote, +pre, +a, +h1, +h2, +h3, +h4, +h5, +h6, +p, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} + +body { + line-height: 1; +} + +ol, +ul { + list-style: none; +} + +blockquote, +q { + quotes: none; + + &:before, + &:after { + content: ''; + content: none; + } +} +table { + border-collapse: collapse; + border-spacing: 0; +}