@if $include-normalize { /* --------------------------- EDGE Normalize Based on git.io/normalize ------------------------------ */ // NOTE: Customized style is the commented part // Set box-sizing globally to handle padding and border widths *, *:before, *:after { @include box-sizing(border-box); } // Basic reset margin and padding *, body { margin: 0; padding: 0; } // html, // body { // font-size: $base-font-size; // } // Chrome Sibling Selector Fix body { -webkit-animation: bugfix infinite 1s; } @-webkit-keyframes bugfix { from { padding: 0; } to { padding: 0; } } html { font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } // Reset anchor styling a { cursor: pointer; text-decoration: none; } // Remove outline on a:focus a:focus { outline: none; } a:active, a:hover { outline: 0; } // Remove default margin from header tag h1, h2, h3, h4, h5, h6 { margin: 0; } // Reset paragraph styling p { line-height: 1.5; margin-top: 0; margin-bottom: 0; } // A better looking default horizontal rule hr { -moz-box-sizing: content-box; box-sizing: content-box; display: block; height: 1px; margin: 1em 0; padding: 0; border: 0; border-top: 1px solid #ccc; } // Get rid of gap under images img { border: 0; display: inline-block; vertical-align: middle; -ms-interpolation-mode: bicubic; } // Grid Defaults to get images and embeds to work properly img, object, embed { max-width: 100%; height: auto; } object, embed { height: 100%; } #map_canvas, .map_canvas { img, embed, object { max-width: none !important; } } article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } audio, canvas, video { display: inline-block; } audio:not([controls]) { display: none; height: 0; } [hidden] { display: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } mark { background: #ff0; color: #000; } code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; } q { quotes: "\201C" "\201D" "\2018" "\2019"; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } svg:not(:root) { overflow: hidden; } figure { margin: 0; } // Remove default styling from fieldset tag fieldset { border : 0; margin : 0; padding : 0; } legend { border: 0; padding: 0; } button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0;} button, input { line-height: normal; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } // Allow only vertical resizing of textareas. textarea { overflow: auto; vertical-align: top; resize: vertical; height: auto; min-height: 50px; } table { border-collapse: collapse; border-spacing: 0; } /* Miscellaneous useful HTML classes */ .left { float: left !important; } .right { float: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .text-justify { text-align: justify !important; } .hide { display: none !important; visibility: hidden !important; } .visual-hide { border: 0 !important; clip: rect(0 0 0 0) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; } .bold, b, strong { font-weight: 700 !important; } .italic, em { font-style: italic !important; } // Font smoothing, only works on Safari Webkit .antialiased { -webkit-font-smoothing: antialiased; } } // include-normalize