Skip to content

Commit

Permalink
Remove Bootstrap resets.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal authored and snide committed Dec 12, 2017
1 parent 5302b63 commit 549345a
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions ui_framework/dist/ui_framework.css
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 549345a

Please sign in to comment.