mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
92 lines
3.1 KiB
TypeScript
92 lines
3.1 KiB
TypeScript
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2020 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import RelatedPatterns from '../../components/RelatedPatterns';
|
|
import Pattern from '../../constants/Pattern';
|
|
import DetailsLayout from '../../layouts/DetailsLayout';
|
|
import Block from '../../placeholders/Block';
|
|
import BrowserFrame from '../../placeholders/BrowserFrame';
|
|
import Circle from '../../placeholders/Circle';
|
|
import Rectangle from '../../placeholders/Rectangle';
|
|
|
|
const Details: React.FC<{}> = () => {
|
|
return (
|
|
<DetailsLayout title="Feature list">
|
|
<Helmet>
|
|
<meta name="description" content="Create a feature list with CSS flexbox" />
|
|
<meta name="keywords" content="css feature list, css flexbox" />
|
|
</Helmet>
|
|
<div className='p-8 pb-20'>
|
|
<BrowserFrame
|
|
content={(
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
display: 'flex',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<div style={{ width: '60%' }}>
|
|
<div style={{ display: 'flex', marginBottom: '32px' }}>
|
|
<div style={{ margin: '0 16px' }}><Circle size={128} /></div>
|
|
<div style={{ flex: 1 }}>
|
|
<div style={{ marginBottom: '32px' }}><Rectangle height={8} /></div>
|
|
<Block numberOfBlocks={10} />
|
|
</div>
|
|
</div>
|
|
<div style={{ display: 'flex', flexDirection: 'row-reverse', marginBottom: '32px' }}>
|
|
<div style={{ margin: '0 16px' }}><Circle size={128} /></div>
|
|
<div style={{ flex: 1 }}>
|
|
<div style={{ marginBottom: '32px' }}><Rectangle height={8} /></div>
|
|
<Block numberOfBlocks={15} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
source={`
|
|
<!-- Feature item -->
|
|
<div style="
|
|
display: flex;
|
|
|
|
/* OPTIONAL: Reverse the order of image and content */
|
|
flex-direction: row-reverse;
|
|
|
|
/* OPTIONAL: Spacing between items */
|
|
margin: 16px 0;
|
|
">
|
|
<!-- Image -->
|
|
<div style="
|
|
width: 128px;
|
|
">
|
|
...
|
|
</div>
|
|
|
|
<!-- Right side -->
|
|
<div style="
|
|
/* Take the remaining width */
|
|
flex: 1;
|
|
">
|
|
...
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Repeated items -->
|
|
...
|
|
`}
|
|
/>
|
|
</div>
|
|
|
|
<RelatedPatterns patterns={[Pattern.FeatureComparison]} />
|
|
</DetailsLayout>
|
|
);
|
|
};
|
|
|
|
export default Details;
|