diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-28 21:45:11 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-28 21:45:26 +0800 |
commit | 7b90f095fffdaac34a518e3f404e35477b534824 (patch) | |
tree | fb6eb1408f8270714660d2071eb7d8f04b2397ba /packages/website/ts/@next/constants/cssReset.js | |
parent | df6c1ae059169f5793ad2ee4ca23a3c07b798d89 (diff) | |
download | dexon-0x-contracts-7b90f095fffdaac34a518e3f404e35477b534824.tar.gz dexon-0x-contracts-7b90f095fffdaac34a518e3f404e35477b534824.tar.zst dexon-0x-contracts-7b90f095fffdaac34a518e3f404e35477b534824.zip |
Adds very basic SiteWrap and global styling
Diffstat (limited to 'packages/website/ts/@next/constants/cssReset.js')
-rw-r--r-- | packages/website/ts/@next/constants/cssReset.js | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/packages/website/ts/@next/constants/cssReset.js b/packages/website/ts/@next/constants/cssReset.js new file mode 100644 index 000000000..4c5105b50 --- /dev/null +++ b/packages/website/ts/@next/constants/cssReset.js @@ -0,0 +1,50 @@ +export const cssReset = ` + *, + *:before, + *:after { + box-sizing: border-box; + } + html, body, div, span, applet, object, iframe, + h1, h2, h3, h4, h5, h6, p, blockquote, pre, + a, 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, ruby, section, summary, + time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; + } + /* HTML5 display-role reset for older browsers */ + 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; + } + blockquote:before, blockquote:after, + q:before, q:after { + content: ''; + content: none; + } + table { + border-collapse: collapse; + border-spacing: 0; + } +`; |