From 549345ab2fb02ab06edeb326a511c2f47031ee02 Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Wed, 19 Jul 2017 14:57:01 -0700 Subject: [PATCH] Remove Bootstrap resets. --- ui_framework/dist/ui_framework.css | 77 ++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/ui_framework/dist/ui_framework.css b/ui_framework/dist/ui_framework.css index 1e79d012679f7..dc6b475b1fccc 100644 --- a/ui_framework/dist/ui_framework.css +++ b/ui_framework/dist/ui_framework.css @@ -1,3 +1,80 @@ +/** + * Adapted from Eric Meyer's reset (http://meyerweb.com/eric/tools/css/reset/, v2.0 | 20110126). + * + */ +*, *: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; } + +html { + font-family: "Roboto", Helvetica, Arial, sans-serif; + font-weight: 400; + color: #3F3F3F; + height: 100%; } + +body { + line-height: 1; } + +a { + text-decoration: none; } + +a:hover { + text-decoration: underline; } + +a:focus { + text-decoration: underline; + background: #bfe9e6; + outline: none; } + +button { + background: none; + border: none; + padding: 0; + margin: 0; + outline: none; } + +button:hover { + cursor: pointer; } + +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; } + /** * 1. Enforce pointer when there's no href. * 2. Allow these styles to be applied to a button element.