August Skare e5d3e3b33a
Feature/tweaks (#8)
* show copy button on focs

* change base link styling

* text-decoration underline on basic links

* basic hover and focus styles on button and tabs

* add links in footer

* change breakpoints vars

* medium breakpoint on footer
2018-10-25 10:54:53 +01:00

33 lines
608 B
TypeScript

import { css } from 'styled-components';
const colors = {
black: '#000000',
white: '#FFFFFF',
lightGray: '#F1F4F5',
gray: '#F1F2F7',
darkGray: '#E9ECED',
blueGray: '#ECEFF9',
};
interface SizesInterface {
[key: string]: number;
}
const sizes: SizesInterface = {
medium: 900,
small: 650,
};
const media = Object.keys(sizes).reduce((acc: any, label: string) => {
acc[label] = (args: any) => css`
@media (max-width: ${sizes[label] / 16}em) {
${css(args)};
}
`;
return acc;
}, {});
export default media;
export { colors, media };