mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-06 22:26:33 +02:00
feat: Resizable element
This commit is contained in:
10
contents/_includes/patterns/resizable-element.njk
Normal file
10
contents/_includes/patterns/resizable-element.njk
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="resizable-element">
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tl"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tc"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tr"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--rc"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--rb"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--bc"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--bl"></div>
|
||||
<div class="resizable-element__resizer resizable-element__resizer--lc"></div>
|
||||
</div>
|
@@ -75,6 +75,7 @@ eleventyExcludeFromCollections: true
|
||||
{% pattern "Popover arrow" %}{% include "patterns/popover-arrow.njk" %}{% endpattern %}
|
||||
{% pattern "Progress bar" %}{% include "patterns/progress-bar.njk" %}{% endpattern %}
|
||||
{% pattern "Radial progress bar" %}{% include "patterns/radial-progress-bar.njk" %}{% endpattern %}
|
||||
{% pattern "Resizable element" %}{% include "patterns/resizable-element.njk" %}{% endpattern %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
147
contents/resizable-element.md
Normal file
147
contents/resizable-element.md
Normal file
@@ -0,0 +1,147 @@
|
||||
---
|
||||
layout: layouts/post.njk
|
||||
title: Resizable element
|
||||
description: Create resizable indicators with CSS
|
||||
keywords: css resizable, css resize cursor
|
||||
---
|
||||
|
||||
## HTML
|
||||
|
||||
```html
|
||||
<div class="resizable-element">
|
||||
<!-- The content -->
|
||||
...
|
||||
|
||||
<!-- The top left square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tl"></div>
|
||||
|
||||
<!-- The top square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tc"></div>
|
||||
|
||||
<!-- The top right square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--tr"></div>
|
||||
|
||||
<!-- The right square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--rc"></div>
|
||||
|
||||
<!-- The right bottom square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--rb"></div>
|
||||
|
||||
<!-- The bottom square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--bc"></div>
|
||||
|
||||
<!-- The bottom left square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--bl"></div>
|
||||
|
||||
<!-- The left square -->
|
||||
<div class="resizable-element__resizer resizable-element__resizer--lc"></div>
|
||||
</div>
|
||||
```
|
||||
|
||||
## CSS
|
||||
|
||||
```css
|
||||
.resizable-element {
|
||||
/* Border */
|
||||
border: 1px dashed #d1d5db;
|
||||
|
||||
/* Used to position the squares */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.resizable-element__resizer {
|
||||
/* Border */
|
||||
border: 1px solid #d1d5db;
|
||||
position: absolute;
|
||||
|
||||
/* Size */
|
||||
height: 0.75rem;
|
||||
width: 0.75rem;
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tl {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the top left corner */
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of top side */
|
||||
left: 50%;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tr {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the top right corner */
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--rc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of right side */
|
||||
right: 0px;
|
||||
top: 50%;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--rb {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the right bottom corner */
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--bc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of bottom side */
|
||||
bottom: 0px;
|
||||
right: 50%;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--bl {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the bottom left corner */
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
transform: translate(-50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--lc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of left side */
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
```
|
||||
|
||||
You can move the mouse over each squares located at the corners and the middle of sides to see the cursors which indicate the associated side can be resized.
|
||||
|
||||
{% demo %}
|
||||
{% include "patterns/resizable-element.njk" %}
|
||||
{% enddemo %}
|
@@ -1,273 +0,0 @@
|
||||
import * as React from 'react';
|
||||
import Head from 'next/head';
|
||||
|
||||
import { Pattern } from '../../constants/Pattern';
|
||||
import { PatternLayout } from '../../layouts/PatternLayout';
|
||||
import BrowserFrame from '../../placeholders/BrowserFrame';
|
||||
|
||||
const Details: React.FC<{}> = () => {
|
||||
return (
|
||||
<PatternLayout pattern={Pattern.ResizableElement}>
|
||||
<Head>
|
||||
<meta name="description" content="Create resizable indicators with CSS" />
|
||||
<meta name="og:description" content="Create resizable indicators with CSS" />
|
||||
<meta name="twitter:description" content="Create resizable indicators with CSS" />
|
||||
<meta name="keywords" content="css resizable, css resize cursor" />
|
||||
</Head>
|
||||
<div style={{ lineHeight: 1.5, marginBottom: '16px' }}>
|
||||
You can move the mouse over each squares located at the corners and the middle of sides to see the
|
||||
cursors which indicate the associated side can be resized.
|
||||
</div>
|
||||
<BrowserFrame
|
||||
html={`
|
||||
<div class="container">
|
||||
<!-- The content -->
|
||||
...
|
||||
|
||||
<!-- The top left square -->
|
||||
<div class="container__resizer container__resizer--tl"></div>
|
||||
|
||||
<!-- The top square -->
|
||||
<div class="container__resizer container__resizer--tc"></div>
|
||||
|
||||
<!-- The top right square -->
|
||||
<div class="container__resizer container__resizer--tr"></div>
|
||||
|
||||
<!-- The right square -->
|
||||
<div class="container__resizer container__resizer--rc"></div>
|
||||
|
||||
<!-- The right bottom square -->
|
||||
<div class="container__resizer container__resizer--rb"></div>
|
||||
|
||||
<!-- The bottom square -->
|
||||
<div class="container__resizer container__resizer--bc"></div>
|
||||
|
||||
<!-- The bottom left square -->
|
||||
<div class="container__resizer container__resizer--bl"></div>
|
||||
|
||||
<!-- The left square -->
|
||||
<div class="container__resizer container__resizer--lc"></div>
|
||||
</div>
|
||||
`}
|
||||
css={`
|
||||
.container {
|
||||
/* Border */
|
||||
border: 1px dashed rgba(0, 0, 0, 0.3);
|
||||
|
||||
/* Used to position the squares */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.container__resizer {
|
||||
/* Border */
|
||||
border: 1px solid rgba(0, 0, 0, 0.3);
|
||||
position: absolute;
|
||||
|
||||
/* Size */
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
.container__resizer--tl {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the top left corner */
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.container__resizer--tc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of top side */
|
||||
left: 50%;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.container__resizer--tr {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the top right corner */
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.container__resizer--rc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of right side */
|
||||
right: 0px;
|
||||
top: 50%;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.container__resizer--rb {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the right bottom corner */
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.container__resizer--bc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of bottom side */
|
||||
bottom: 0px;
|
||||
right: 50%;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.container__resizer--bl {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the bottom left corner */
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
transform: translate(-50%, 50%);
|
||||
}
|
||||
|
||||
.container__resizer--lc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of left side */
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
`}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
alignItems: 'center',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
height: '100%',
|
||||
justifyContent: 'center',
|
||||
padding: '8px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
border: '1px dashed rgba(0, 0, 0, 0.3)',
|
||||
height: '200px',
|
||||
position: 'relative',
|
||||
width: '200px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'nwse-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ns-resize',
|
||||
height: '12px',
|
||||
left: '50%',
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'nesw-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
top: 0,
|
||||
transform: 'translate(50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ew-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
top: '50%',
|
||||
transform: 'translate(50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'nwse-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
transform: 'translate(50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'ns-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: '50%',
|
||||
transform: 'translate(50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'nesw-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
transform: 'translate(-50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ew-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
top: '50%',
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</BrowserFrame>
|
||||
</PatternLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default Details;
|
@@ -1,139 +0,0 @@
|
||||
import * as React from 'react';
|
||||
import Head from 'next/head';
|
||||
|
||||
import { Heading, Spacer } from '@1milligram/design';
|
||||
import { Pattern } from '../../constants/Pattern';
|
||||
import { PatternLayout } from '../../layouts/PatternLayout';
|
||||
import BrowserFrame from '../../placeholders/BrowserFrame';
|
||||
import Rectangle from '../../placeholders/Rectangle';
|
||||
|
||||
const Details: React.FC<{}> = () => {
|
||||
return (
|
||||
<PatternLayout pattern={Pattern.StatusLight}>
|
||||
<Head>
|
||||
<meta name="description" content="" />
|
||||
<meta name="og:description" content="Create a status light with CSS flexbox" />
|
||||
<meta name="twitter:description" content="Create a status light with CSS flexbox" />
|
||||
<meta name="keywords" content="" />
|
||||
</Head>
|
||||
<BrowserFrame
|
||||
html={`
|
||||
|
||||
`}
|
||||
css={`
|
||||
|
||||
`}
|
||||
>
|
||||
<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>
|
||||
<Spacer size="extraLarge" />
|
||||
|
||||
<section>
|
||||
<Heading level={2}>Use cases</Heading>
|
||||
|
||||
<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>
|
||||
</PatternLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default Details;
|
@@ -1,128 +0,0 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import Frame from '../../placeholders/Frame';
|
||||
|
||||
const Cover: React.FC<{}> = () => {
|
||||
return (
|
||||
<Frame>
|
||||
<div
|
||||
style={{
|
||||
alignItems: 'center',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
height: '100%',
|
||||
justifyContent: 'center',
|
||||
padding: '16px',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
border: '1px dashed rgba(0, 0, 0, 0.3)',
|
||||
height: '100%',
|
||||
position: 'relative',
|
||||
width: '100%',
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'nwse-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ns-resize',
|
||||
height: '12px',
|
||||
left: '50%',
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'nesw-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
top: 0,
|
||||
transform: 'translate(50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ew-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
top: '50%',
|
||||
transform: 'translate(50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'nwse-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: 0,
|
||||
transform: 'translate(50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'ns-resize',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
right: '50%',
|
||||
transform: 'translate(50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
bottom: 0,
|
||||
cursor: 'nesw-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
transform: 'translate(-50%, 50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
||||
cursor: 'ew-resize',
|
||||
height: '12px',
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
top: '50%',
|
||||
transform: 'translate(-50%, -50%)',
|
||||
width: '12px',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</Frame>
|
||||
);
|
||||
};
|
||||
|
||||
export default Cover;
|
@@ -50,6 +50,7 @@
|
||||
@import './patterns/property-list';
|
||||
@import './patterns/questions-and-answers';
|
||||
@import './patterns/radial-progress-bar';
|
||||
@import './patterns/resizable-element';
|
||||
@import './patterns/ribbon';
|
||||
@import './patterns/separator';
|
||||
@import './patterns/stacked-cards';
|
||||
|
101
styles/patterns/_resizable-element.scss
Normal file
101
styles/patterns/_resizable-element.scss
Normal file
@@ -0,0 +1,101 @@
|
||||
.resizable-element {
|
||||
/* Border */
|
||||
border: 1px dashed #d1d5db;
|
||||
|
||||
/* Used to position the squares */
|
||||
position: relative;
|
||||
|
||||
/* Demo */
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.resizable-element__resizer {
|
||||
/* Border */
|
||||
border: 1px solid #d1d5db;
|
||||
position: absolute;
|
||||
|
||||
/* Size */
|
||||
height: 0.75rem;
|
||||
width: 0.75rem;
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tl {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the top left corner */
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of top side */
|
||||
left: 50%;
|
||||
top: 0px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--tr {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the top right corner */
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--rc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of right side */
|
||||
right: 0px;
|
||||
top: 50%;
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--rb {
|
||||
/* Resize cursor */
|
||||
cursor: nwse-resize;
|
||||
|
||||
/* Positioned at the right bottom corner */
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--bc {
|
||||
/* Resize cursor */
|
||||
cursor: ns-resize;
|
||||
|
||||
/* Positioned at the middle of bottom side */
|
||||
bottom: 0px;
|
||||
right: 50%;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--bl {
|
||||
/* Resize cursor */
|
||||
cursor: nesw-resize;
|
||||
|
||||
/* Positioned at the bottom left corner */
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
transform: translate(-50%, 50%);
|
||||
}
|
||||
|
||||
.resizable-element__resizer--lc {
|
||||
/* Resize cursor */
|
||||
cursor: ew-resize;
|
||||
|
||||
/* Positioned at the middle of left side */
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
Reference in New Issue
Block a user