1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // xxxstylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
- // Reboot
- //
- // Normalization of HTML elements, manually forked from Normalize.css ... (see core `_reboot.scss` file)
- // Normalize is licensed MIT. https://github.com/necolas/normalize.css
- // Body
- body {
- color: $body-color-alt;
- background-color: $body-bg-alt; // 2
- }
- // Content grouping
- hr {
- color: $hr-color-alt; // 1
- // background-color: currentColor;
- opacity: $hr-opacity-alt;
- }
- // Typography
- %heading {
- color: $headings-color-alt;
- }
- // Mark
- mark {
- background-color: $mark-bg-alt;
- }
- // Links
- a {
- color: $link-color-alt;
- &:hover {
- color: $link-hover-color-alt;
- }
- }
- a:not([href]):not([class]) {
- &,
- &:hover {
- color: inherit;
- }
- }
- // Code
- pre {
- color: $pre-color-alt;
- // Account for some code outputs that place code tags in pre tags
- code {
- color: inherit;
- }
- }
- code {
- color: $code-color-alt;
- // Streamline the style when inside anchors to avoid broken underline and more
- a > & {
- color: inherit;
- }
- }
- kbd {
- color: $kbd-color-alt;
- background-color: $kbd-bg-alt;
- }
- // Tables
- //
- // Prevent double borders
- caption {
- color: $table-caption-color-alt;
- }
|