mkdocs-material/src/assets/stylesheets/base/_reset.scss
2017-01-01 15:59:44 +01:00

136 lines
2.8 KiB
SCSS

////
/// Copyright (c) 2016 Martin Donath <martin.donath@squidfunk.com>
///
/// Permission is hereby granted, free of charge, to any person obtaining a
/// copy of this software and associated documentation files (the "Software"),
/// to deal in the Software without restriction, including without limitation
/// the rights to use, copy, modify, merge, publish, distribute, sublicense,
/// and/or sell copies of the Software, and to permit persons to whom the
/// Software is furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
/// DEALINGS
////
// ----------------------------------------------------------------------------
// Rules
// ----------------------------------------------------------------------------
// Enfore correct box model
html {
box-sizing: border-box;
}
// All elements shall inherit the document default
*,
*::before,
*::after {
box-sizing: inherit;
}
// Prevent adjustments of font size after orientation changes in IE and iOS
html {
text-size-adjust: none;
}
// Remove margin in all browsers
body {
margin: 0;
}
// Reset horizontal rules in FF
hr {
overflow: visible;
box-sizing: content-box;
}
// Remove gaps in underlined links in iOS >= 8 and Safari >= 8
a {
-webkit-text-decoration-skip: objects;
}
// Reset tap outlines on iOS and Android
a,
button,
label,
input {
-webkit-tap-highlight-color: transparent;
}
// Reset link styles
a {
color: inherit;
text-decoration: none;
// Remove outline on focused or active links
&:active,
&:hover {
outline-width: 0;
}
}
// Correct font-size in all browsers
small {
font-size: 80%;
}
// Prevent subscript and superscript from affecting line-height
sub,
sup {
position: relative;
font-size: 80%;
line-height: 0;
vertical-align: baseline;
}
// Correct subscript offset
sub {
bottom: -0.25em;
}
// Correct superscript offset
sup {
top: -0.5em;
}
img {
border-style: none;
}
// Reset table styles
table {
border-collapse: collapse;
border-spacing: 0;
}
// Reset table cell styles
td,
th {
font-weight: normal;
text-align: left;
vertical-align: top;
}
// Reset (native) button styles
button {
padding: 0;
border: 0;
outline: 0;
background: transparent;
font-size: inherit;
}
// Reset (native) input styles
input {
border: 0;
outline: 0;
}