1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/client/patterns/status-light/Details.tsx
2021-04-01 17:04:26 +07:00

179 lines
5.9 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 Heading from '../../components/Heading';
import Pattern from '../../constants/Pattern';
import DetailsLayout from '../../layouts/DetailsLayout';
import BrowserFrame from '../../placeholders/BrowserFrame';
import Rectangle from '../../placeholders/Rectangle';
const Details: React.FC<{}> = () => {
return (
<DetailsLayout pattern={Pattern.StatusLight}>
<Helmet>
<meta name="description" content="Create a status light with CSS flexbox" />
<meta name="keywords" content="css flexbox, css status light" />
</Helmet>
<div className='p-8 pb-20'>
<BrowserFrame
html={`
<div class="container">
<!-- Status light -->
<div class="container__status"></div>
<!-- Content -->
<div class="container__content">
...
</div>
</div>
`}
css={`
.container {
/* Center the content */
align-items: center;
display: flex;
}
.container__status {
/* Background color */
background-color: rgb(66, 153, 225);
/* Rounded border */
border-radius: 9999px;
/* Size */
height: 8px;
width: 8px;
/* Spacing */
margin-right: 8px;
}
.container__content {
/* Take available width */
flex: 1;
}
`}
>
<div
style={{
alignItems: 'center',
display: 'flex',
flexDirection: 'column',
height: '100%',
justifyContent: 'center',
padding: '8px',
}}
>
<div
style={{
alignItems: 'center',
display: 'inline-flex',
width: '150px',
}}
>
<div
style={{
backgroundColor: '#4299e1',
borderRadius: '9999px',
height: '8px',
marginRight: '8px',
width: '8px',
}}
/>
<div style={{ flex: 1 }}>
<Rectangle />
</div>
</div>
</div>
</BrowserFrame>
</div>
<section>
<Heading title="Use cases" />
<div style={{ padding: '48px' }}>
<div
style={{
alignItems: 'center',
border: '1px solid rgba(0, 0, 0, 0.3)',
display: 'flex',
height: '500px',
justifyContent: 'center',
}}
>
<div>
<div
style={{
alignItems: 'center',
display: 'flex',
marginBottom: '12px',
}}
>
<div
style={{
backgroundColor: '#f56565',
borderRadius: '9999px',
height: '8px',
marginRight: '8px',
width: '8px',
}}
/>
In review
</div>
<div
style={{
alignItems: 'center',
display: 'flex',
marginBottom: '12px',
}}
>
<div
style={{
backgroundColor: '#a0aec0',
borderRadius: '9999px',
height: '8px',
marginRight: '8px',
width: '8px',
}}
/>
Draft
</div>
<div
style={{
alignItems: 'center',
display: 'flex',
}}
>
<div
style={{
backgroundColor: '#4299e1',
borderRadius: '9999px',
height: '8px',
marginRight: '8px',
width: '8px',
}}
/>
Published
</div>
</div>
</div>
</div>
</section>
</DetailsLayout>
);
};
export default Details;