UNPKG

@cimpress/react-components

Version:
268 lines (228 loc) 4.27 kB
/* eslint-disable react/jsx-no-useless-fragment */ import React from 'react'; import { injectGlobal, css } from '@emotion/css'; import cvar from './theme/cvar'; const globalStyles = css ` * { margin: 0; padding: 0; font-size: 1em; font-family: inherit; } body { font: ${cvar('text-paragraph-default')}; color: ${cvar('color-text-default')}; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .h7 { margin-top: 1em; margin-bottom: 0.5em; } h1, .h1 { font: ${cvar('text-h1')}; } h2, .h2 { font: ${cvar('text-h2')}; } h3, .h3 { font: ${cvar('text-h3')}; } h4, .h4 { font: ${cvar('text-h4')}; } h5, .h5 { font: ${cvar('text-h5')}; } h6, .h6 { font: ${cvar('text-h6')}; } .h7 { font: ${cvar('text-h7')}; color: ${cvar('color-text-label')}; } a { color: ${cvar('color-text-interactive')}; text-decoration: none; &:hover { color: ${cvar('color-text-hover')}; text-decoration: underline; } &:active { color: ${cvar('color-text-selected')}; text-decoration: underline; } } code, kbd, pre, samp { font-family: ${cvar('font-monospace')}; } code { padding: 2px 4px; font-size: 90%; border-radius: 2px; } pre { display: block; padding: ${cvar('spacing-8')}px; margin: 0 0 9px; font-size: 13px; line-height: 1.286; word-break: break-all; word-wrap: break-word; border: 1px solid; border-radius: 2px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } @font-face { font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif; font-style: normal; font-weight: 400; src: local('Open Sans'), url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700); } `; // Modified version of modern-normalize v1.1.0 (https://github.com/sindresorhus/modern-normalize) // CSS comments were removed to save on bundle size // Removed some rules to avoid repetition in `globalStyles` const modernNormalizeStyles = css ` *, ::before, ::after { box-sizing: border-box; } html { line-height: 1.15; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; } body { margin: 0; } hr { height: 0; color: inherit; } abbr[title] { text-decoration: underline dotted; } b, strong { font-weight: bolder; } code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 1em; } small { font-size: 85%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } table { text-indent: 0; border-color: inherit; } button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; } button, select { text-transform: none; } button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; cursor: pointer; } ::-moz-focus-inner { border-style: none; padding: 0; } :-moz-focusring { outline: 1px dotted ButtonText; } :-moz-ui-invalid { box-shadow: none; } legend { padding: 0; } progress { vertical-align: baseline; } ::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; } [type='search'] { -webkit-appearance: textfield; outline-offset: -2px; } ::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } summary { display: list-item; } `; // eslint-disable-next-line @typescript-eslint/no-unused-expressions injectGlobal ` ${modernNormalizeStyles}; ${globalStyles}; `; // TODO: migrate to Emotion v11 which uses the `<Global />` component for global styles export const GlobalStyles = () => React.createElement(React.Fragment, null); //# sourceMappingURL=GlobalStyles.js.map