diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-07 05:03:44 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-07 05:03:44 +0800 |
commit | 966b25573b04cc9562ba7eb5d345cf48789ddfd9 (patch) | |
tree | 4034610e73681cc348354f842d91937f9818c450 /ui/app/css/itcss/generic | |
parent | f73e4dd6041bb9edf2dfa06ed79249b5bdbe241e (diff) | |
download | tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar.gz tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar.bz2 tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar.lz tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar.xz tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.tar.zst tangerine-wallet-browser-966b25573b04cc9562ba7eb5d345cf48789ddfd9.zip |
Move remaining debug, fonts, reset, and transitions into inverted triangle
Diffstat (limited to 'ui/app/css/itcss/generic')
-rw-r--r-- | ui/app/css/itcss/generic/index.scss | 7 | ||||
-rw-r--r-- | ui/app/css/itcss/generic/reset.scss | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index 0beb63efe..a0ce312cc 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -1,4 +1,9 @@ -// Generic styles +/* + Generic + */ + +@import './reset.scss'; + * { box-sizing: border-box; } diff --git a/ui/app/css/itcss/generic/reset.scss b/ui/app/css/itcss/generic/reset.scss new file mode 100644 index 000000000..fef74825d --- /dev/null +++ b/ui/app/css/itcss/generic/reset.scss @@ -0,0 +1,52 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +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; +} + +button { + border-style: none; +} |