diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-11 22:51:26 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-11 23:11:08 +0800 |
commit | 1e5bc143be07c94d311313d11c830f4db6ff97bb (patch) | |
tree | b39a84a6cc411d382a6b1522d49313d4267ecafd /packages/website/ts/@next/components | |
parent | ec72a4b68c2e5dda3d77fdca9308f7ea75cf905d (diff) | |
download | dexon-0x-contracts-1e5bc143be07c94d311313d11c830f4db6ff97bb.tar.gz dexon-0x-contracts-1e5bc143be07c94d311313d11c830f4db6ff97bb.tar.zst dexon-0x-contracts-1e5bc143be07c94d311313d11c830f4db6ff97bb.zip |
Add slider mockup
Diffstat (limited to 'packages/website/ts/@next/components')
-rw-r--r-- | packages/website/ts/@next/components/slider/slider.tsx | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/packages/website/ts/@next/components/slider/slider.tsx b/packages/website/ts/@next/components/slider/slider.tsx new file mode 100644 index 000000000..6292a8c9e --- /dev/null +++ b/packages/website/ts/@next/components/slider/slider.tsx @@ -0,0 +1,78 @@ +import * as React from 'react'; +import styled from 'styled-components'; + +import { colors } from 'ts/style/colors'; + +import { Icon } from 'ts/@next/components/icon'; +import { Paragraph, Heading } from 'ts/@next/components/text'; + +interface SliderProps { +} + +interface SlideProps { + icon: string; + heading: string; + text: string; + href?: string; +} + +export const Slide: React.StatelessComponent<SlideProps> = (props: SlideProps) => { + const { heading, text, href, icon } = props; + + return ( + <StyledSlide> + <SlideHead> + <Icon name={icon} size="large" margin="auto" /> + </SlideHead> + <SlideContent> + <Heading asElement="h4" size="small" marginBottom="15px">{heading}</Heading> + <Paragraph isMuted={true}>{text}</Paragraph> + </SlideContent> + </StyledSlide> + ); +}; + +export const Slider: React.StatelessComponent<SliderProps> = props => { + return ( + <StyledSlider> + <SliderInner> + {props.children} + </SliderInner> + </StyledSlider> + ); +}; + +const StyledSlider = styled.div` + overflow: hidden; + width: 100%; + height: 520px; +`; + +const SliderInner = styled.div` + position: absolute; + display: flex; + width: 100%; +`; + +const StyledSlide = styled.div` + background-color: ${colors.backgroundDark}; + width: 560px; + height: 520px; + flex: 0 0 auto; + + & + & { + margin-left: 30px; + } +`; + +const SlideHead = styled.div` + background-color: ${colors.brandDark}; + height: 300px; + display: flex; + justify-content: center; + align-items: center; +`; + +const SlideContent = styled.div` + padding: 30px; +`; |