2017-02-08 11:43:28 -05:00
|
|
|
// ==========================================================================
|
|
|
|
|
// Generic
|
|
|
|
|
// ==========================================================================
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2015-02-15 15:44:11 -05:00
|
|
|
html {
|
2016-08-22 10:30:46 -04:00
|
|
|
box-sizing: border-box;
|
2015-02-15 15:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Add the correct display in IE 10-.
|
|
|
|
|
// 1. Add the correct display in IE.
|
2022-05-12 16:15:44 +02:00
|
|
|
|
|
|
|
|
template, // [1]
|
2016-12-18 15:45:44 -05:00
|
|
|
[hidden] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*,
|
|
|
|
|
:before,
|
|
|
|
|
:after {
|
2016-08-22 10:30:46 -04:00
|
|
|
box-sizing: inherit;
|
2015-02-15 15:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
2016-12-18 15:45:44 -05:00
|
|
|
address {
|
|
|
|
|
font-style: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dfn,
|
|
|
|
|
cite,
|
|
|
|
|
em,
|
|
|
|
|
i {
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
b,
|
|
|
|
|
strong {
|
2022-05-20 13:32:47 +02:00
|
|
|
font-weight: $font-weight-bold;
|
2016-12-18 15:45:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-26 14:13:26 -04:00
|
|
|
ul,
|
|
|
|
|
ol {
|
2019-06-26 14:04:13 -04:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p,
|
|
|
|
|
figure {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 16:28:56 -04:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-12 16:15:44 +02:00
|
|
|
// 1. Single taps should be dispatched immediately on clickable elements
|
|
|
|
|
|
2016-12-18 15:45:44 -05:00
|
|
|
a, area, button, input, label, select, textarea, [tabindex] {
|
2022-05-12 16:15:44 +02:00
|
|
|
-ms-touch-action: manipulation; // [1]
|
2016-12-18 15:45:44 -05:00
|
|
|
touch-action: manipulation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[hreflang] > abbr[title] {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
border-spacing: 0;
|
2017-04-27 16:00:45 -04:00
|
|
|
border-collapse: collapse;
|
2016-12-18 15:45:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
2017-04-27 16:00:45 -04:00
|
|
|
display: block;
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 1px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-top: 1px solid #CCCCCC;
|
2015-02-15 15:44:11 -05:00
|
|
|
}
|