Created
August 22, 2018 10:26
-
-
Save Chun-Lin/37eef96d9839596375a2087e229e9a2a to your computer and use it in GitHub Desktop.
This is original Content.jsx with styled-components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import styled from 'styled-components' | |
const ContentWrapper = styled.div` | |
width: 80%; | |
height: 300px; | |
box-shadow: 0 0 5px 2px #ccc; | |
` | |
const Img = styled.div` | |
display: inline-block; | |
width: 300px; | |
height: 100%; | |
background-image: url('https://picsum.photos/300/300?image=1062'); | |
` | |
const InfoWrapper = styled.div` | |
display: inline-block; | |
vertical-align: top; | |
width: calc(100% - 300px); | |
height: 100%; | |
text-align: left; | |
` | |
const Title = styled.div` | |
padding: 20px 0 0 20px; | |
font-size: 48px; | |
` | |
const Description = styled.div` | |
padding: 20px; | |
font-size: 30px; | |
font-style: italic; | |
color: #888888; | |
` | |
export default () => { | |
return ( | |
<ContentWrapper> | |
<Img /> | |
<InfoWrapper> | |
<Title>Cute Puppy</Title> | |
<Description> | |
Sed ut voluptatem neque cumque. Qui sed ut itaque est doloribus qui. | |
Eos perferendis autem qui fugiat. | |
</Description> | |
</InfoWrapper> | |
</ContentWrapper> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment