mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
91 lines
3.1 KiB
TypeScript
91 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 Rectangle from '../../placeholders/Rectangle';
|
|
|
|
const Details: React.FC<{}> = () => {
|
|
return (
|
|
<DetailsLayout pattern={Pattern.CookieBanner}>
|
|
<Helmet>
|
|
<meta name="description" content="Create a cookie banner with CSS flexbox" />
|
|
<meta name="keywords" content="css cookie banner, css flexbox" />
|
|
</Helmet>
|
|
<div className='p-8 pb-20'>
|
|
<BrowserFrame
|
|
content={(
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
position: 'relative',
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
|
borderTop: '1px solid rgba(0, 0, 0, 0.3)',
|
|
bottom: 0,
|
|
display: 'flex',
|
|
left: 0,
|
|
padding: '8px',
|
|
position: 'absolute',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<div style={{ flex: 1, marginRight: '12px' }}>
|
|
<Block numberOfBlocks={5} />
|
|
</div>
|
|
<div style={{ width: '96px' }}>
|
|
<Rectangle height={32} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
source={`
|
|
<div style="
|
|
/* Banner is displayed at the bottom */
|
|
bottom: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
|
|
/* Center the content */
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
">
|
|
<!-- Tells visitors that the website uses cookie -->
|
|
<div style="
|
|
/* Take available width */
|
|
flex: 1;
|
|
">
|
|
...
|
|
</div>
|
|
|
|
<!-- Close button -->
|
|
...
|
|
</div>
|
|
`}
|
|
/>
|
|
</div>
|
|
<RelatedPatterns patterns={[Pattern.FixedAtCorner]} />
|
|
</DetailsLayout>
|
|
);
|
|
};
|
|
|
|
export default Details;
|