Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
769 Bytes
import styled from 'styled-components'
import media from '../theming/mediaQueries'
export const FullWidthBanner = styled.div`
background: ${({ theme }) => theme.colors.cardBackground};
margin-bottom: 40px;
padding: 20px;
`
export const DescriptionBlock = styled.div`
max-width: 800px;
margin: 0 auto 50px;
h2 {
line-height: 1.3em;
}
p,
ul {
code {
font-size: 0.92em;
}
}
${media.tablet`
& {
margin: 0 15px 50px;
}
`}
${media.mobile`
& {
margin: 0 15px 50px;
}
`}
`
export const Card = styled.div`
background: ${({ theme }) => theme.colors.cardBackground};
box-shadow: ${({ theme }) => theme.cardShadow};
`