mirror of
				https://github.com/phuoc-ng/csslayout.git
				synced 2025-10-27 03:31:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * A collection of popular layouts and patterns made with CSS (https://csslayout.io)
 | |
|  * (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
 | |
|  */
 | |
| 
 | |
| import * as 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 pattern={Pattern.FeatureList}>
 | |
|             <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
 | |
| html={`
 | |
| <!-- Feature item -->
 | |
| <div class="container">
 | |
|     <!-- Image -->
 | |
|     <div class="container__image">
 | |
|         ...
 | |
|     </div>
 | |
| 
 | |
|     <!-- Right side -->
 | |
|     <div class="container__feature">
 | |
|         ...
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| <!-- Repeated items -->
 | |
| ...
 | |
| `}
 | |
| css={`
 | |
| .container {
 | |
|     display: flex;
 | |
| 
 | |
|     /* OPTIONAL: Reverse the order of image and content */
 | |
|     flex-direction: row-reverse;
 | |
| 
 | |
|     /* OPTIONAL: Spacing between items */
 | |
|     margin: 16px 0;
 | |
| }
 | |
| 
 | |
| .container__image {
 | |
|     width: 128px;
 | |
| }
 | |
| 
 | |
| .container__feature {
 | |
|     /* Take the remaining width */
 | |
|     flex: 1;
 | |
| }
 | |
| `}
 | |
|                 >
 | |
|                     <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>
 | |
|                 </BrowserFrame>
 | |
|             </div>
 | |
| 
 | |
|             <RelatedPatterns patterns={[Pattern.FeatureComparison]} />
 | |
|         </DetailsLayout>
 | |
|     );
 | |
| };
 | |
| 
 | |
| export default Details;
 |