2018-06-04 20:52:35 +00:00
|
|
|
import styled from 'styled-components'
|
|
|
|
|
2018-06-13 21:44:14 +00:00
|
|
|
import { theme } from '../theme';
|
|
|
|
import { media } from '../utils/media';
|
2018-06-04 20:52:35 +00:00
|
|
|
|
|
|
|
const StyledCard = styled.div`
|
|
|
|
width: ${({ width }) => width || '282px'};
|
|
|
|
height: ${({ height }) => height || '322px'};
|
|
|
|
background: ${theme.contentBackground};
|
2018-06-13 21:44:14 +00:00
|
|
|
border: ${({ border }) => border || `1px solid ${theme.contentBorder}`};
|
2018-06-04 20:52:35 +00:00
|
|
|
border-radius: 3px;
|
2018-06-13 21:44:14 +00:00
|
|
|
min-height: 30vh;
|
2018-06-19 19:05:42 +00:00
|
|
|
${media.desktop`margin-top: 5%;`}
|
|
|
|
${media.giant`margin-top: 5%;`}
|
|
|
|
${media.tablet`margin-top: 25%;`}
|
|
|
|
${media.phone`margin-top: 25%;`}
|
2018-06-04 20:52:35 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
export default StyledCard
|