diff --git a/content/_index.md b/content/_index.md index 7c16e0b..8475a4f 100644 --- a/content/_index.md +++ b/content/_index.md @@ -145,4 +145,5 @@ primary_color_alpha = "COLOR_CODE" - [Jakub Steiner](https://jimmac.eu) for the [OS Component Website](https://jimmac.github.io/os-component-website), which served as a starting point and inspiration. - [Carl Schwan](https://carlschwan.eu) for the [Mastodon-powered Comments](https://carlschwan.eu/2020/12/29/adding-comments-to-your-static-blog-with-mastodon/). +- [Jonathan Neal](https://github.com/jonathantneal) for the [normalize.css](https://csstools.github.io/normalize.css/). - Everyone who supported me and said good stuff <3 diff --git a/sass/_normalize.scss b/sass/_normalize.scss index 6e3d21f..1a54b12 100644 --- a/sass/_normalize.scss +++ b/sass/_normalize.scss @@ -1,285 +1,257 @@ -// normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css - // Document // ========================================================================== +// // 1. Correct the line height in all browsers. // 2. Prevent adjustments of font size after orientation changes in iOS. +// -html { +:where(html) { line-height: 1.15; // 1 -webkit-text-size-adjust: 100%; // 2 + text-size-adjust: 100%; // 2 } -// Sections +// Sections // ========================================================================== -// Remove the margin in all browsers. - -body { - margin: 0; -} - -// Render the `main` element consistently in IE. - -main { - display: block; -} - +// // Correct the font size and margin on `h1` elements within `section` and -// `article` contexts in Chrome, Firefox, and Safari. +// `article` contexts in Chrome, Edge, Firefox, and Safari. +// -h1 { +:where(h1) { font-size: 2em; - margin: 0.67em 0; + margin-block-end: 0.67em; + margin-block-start: 0.67em; } // Grouping content // ========================================================================== -// 1. Add the correct box sizing in Firefox. -// 2. Show the overflow in Edge and IE. +// +// Remove the margin on nested lists in Chrome, Edge, and Safari. +// -hr { - box-sizing: content-box; // 1 - height: 0; // 1 - overflow: visible; // 2 +:where(dl, ol, ul) :where(dl, ol, ul) { + margin-block-end: 0; + margin-block-start: 0; } -// 1. Correct the inheritance and scaling of font size in all browsers. -// 2. Correct the odd `em` font sizing in all browsers. +// +// 1. Add the correct box sizing in Firefox. +// 2. Correct the inheritance of border color in Firefox. +// -pre { - font-family: monospace, monospace; // 1 - font-size: 1em; // 2 +:where(hr) { + box-sizing: content-box; // 1 + color: inherit; // 2 + height: 0; // 1 } // Text-level semantics // ========================================================================== -// Remove the gray background on active links in IE 10. +// +// Add the correct text decoration in Safari. +// -a { - background-color: transparent; -} - -// 1. Remove the bottom border in Chrome 57- -// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. - -abbr[title] { - border-bottom: none; // 1 - text-decoration: underline; // 2 - text-decoration: underline dotted; // 2 +:where(abbr[title]) { + text-decoration: underline; + text-decoration: underline dotted; } +// // Add the correct font weight in Chrome, Edge, and Safari. +// -b, -strong { +:where(b, strong) { font-weight: bolder; } +// // 1. Correct the inheritance and scaling of font size in all browsers. // 2. Correct the odd `em` font sizing in all browsers. +// -code, -kbd, -samp { +:where(code, kbd, pre, samp) { font-family: monospace, monospace; // 1 font-size: 1em; // 2 } +// // Add the correct font size in all browsers. +// -small { +:where(small) { font-size: 80%; } -// Prevent `sub` and `sup` elements from affecting the line height in -// all browsers. - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -// Embedded content +// Tabular data // ========================================================================== -// Remove the border on images inside links in IE 10. +// +// 1. Correct table border color in Chrome, Edge, and Safari. +// 2. Remove text indentation from table contents in Chrome, Edge, and Safari. +// -img { - border-style: none; +:where(table) { + border-color: currentColor; // 1 + text-indent: 0; // 2 } // Forms // ========================================================================== -// 1. Change the font styles in all browsers. -// 2. Remove the margin in Firefox and Safari. +// +// Remove the margin on controls in Safari. +// -button, -input, -optgroup, -select, -textarea { - font-family: inherit; // 1 - font-size: 100%; // 1 - line-height: 1.15; // 1 - margin: 0; // 2 +:where(button, input, select) { + margin: 0; } -// Show the overflow in IE. -// 1. Show the overflow in Edge. +// +// Remove the inheritance of text transform in Firefox. +// -button, -input { // 1 - overflow: visible; -} - -// Remove the inheritance of text transform in Edge, Firefox, and IE. -// 1. Remove the inheritance of text transform in Firefox. - -button, -select { // 1 +:where(button) { text-transform: none; } -// Correct the inability to style clickable types in iOS and Safari. +// +// Correct the inability to style buttons in iOS and Safari. +// -button, -[type="button"], -[type="reset"], -[type="submit"] { +:where(button, input:is([type="button" i], [type="reset" i], [type="submit" i])) { -webkit-appearance: button; } -// Remove the inner border and padding in Firefox. +// +// Add the correct vertical alignment in Chrome, Edge, and Firefox. +// -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -// Restore the focus styles unset by the previous rule. - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -// Correct the padding in Firefox. - -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -// 1. Correct the text wrapping in Edge and IE. -// 2. Correct the color inheritance from `fieldset` elements in IE. -// 3. Remove the padding so developers are not caught out when they zero out -// `fieldset` elements in all browsers. - -legend { - box-sizing: border-box; // 1 - color: inherit; // 2 - display: table; // 1 - max-width: 100%; // 1 - padding: 0; // 3 - white-space: normal; // 1 -} - -// Add the correct vertical alignment in Chrome, Firefox, and Opera. - -progress { +:where(progress) { vertical-align: baseline; } -// Remove the default vertical scrollbar in IE 10+. +// +// Remove the inheritance of text transform in Firefox. +// -textarea { - overflow: auto; +:where(select) { + text-transform: none; } -// 1. Add the correct box sizing in IE 10. -// 2. Remove the padding in IE 10. +// +// Remove the margin in Firefox and Safari. +// -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; // 1 - padding: 0; // 2 +:where(textarea) { + margin: 0; } -// Correct the cursor style of increment and decrement buttons in Chrome. - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -// 1. Correct the odd appearance in Chrome and Safari. +// +// 1. Correct the odd appearance in Chrome, Edge, and Safari. // 2. Correct the outline style in Safari. +// -[type="search"] { +:where(input[type="search" i]) { -webkit-appearance: textfield; // 1 outline-offset: -2px; // 2 } -// Remove the inner padding in Chrome and Safari on macOS. +// +// Correct the cursor style of increment and decrement buttons in Safari. +// -[type="search"]::-webkit-search-decoration { +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +// +// Correct the text style of placeholders in Chrome, Edge, and Safari. +// + +::-webkit-input-placeholder { + color: inherit; + opacity: 0.54; +} + +// +// Remove the inner padding in Chrome, Edge, and Safari on macOS. +// + +::-webkit-search-decoration { -webkit-appearance: none; } -// 1. Correct the inability to style clickable types in iOS and Safari. +// +// 1. Correct the inability to style upload buttons in iOS and Safari. // 2. Change font properties to `inherit` in Safari. +// ::-webkit-file-upload-button { -webkit-appearance: button; // 1 font: inherit; // 2 } +// +// Remove the inner border and padding of focus outlines in Firefox. +// + +:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focus-inner { + border-style: none; + padding: 0; +} + +// +// Restore the focus outline styles unset by the previous rule in Firefox. +// + +:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focusring { + outline: 1px dotted ButtonText; +} + +// +// Remove the additional :invalid styles in Firefox. +// + +:where(:-moz-ui-invalid) { + box-shadow: none; +} + // Interactive // ========================================================================== -// Add the correct display in Edge, IE 10+, and Firefox. +// +// Add the correct styles in Safari. +// -details { - display: block; +:where(dialog) { + background-color: white; + border: solid; + color: black; + height: -moz-fit-content; + height: fit-content; + left: 0; + margin: auto; + padding: 1em; + position: absolute; + right: 0; + width: -moz-fit-content; + width: fit-content; } -// Add the correct display in all browsers. +:where(dialog:not([open])) { + display: none; +} -summary { +// +// Add the correct display in all browsers. +// + +:where(summary) { display: list-item; } - -// Misc -// ========================================================================== - -// Add the correct display in IE 10+. - -template { - display: none; -} - -// Add the correct display in IE 10. - -[hidden] { - display: none; -}