diff --git a/contents/_includes/patterns/resizable-element.njk b/contents/_includes/patterns/resizable-element.njk
new file mode 100644
index 0000000..cead0b9
--- /dev/null
+++ b/contents/_includes/patterns/resizable-element.njk
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/contents/index.njk b/contents/index.njk
index cc3eb92..03fe99c 100644
--- a/contents/index.njk
+++ b/contents/index.njk
@@ -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 %}
diff --git a/contents/resizable-element.md b/contents/resizable-element.md
new file mode 100644
index 0000000..0c86b09
--- /dev/null
+++ b/contents/resizable-element.md
@@ -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
+
+
+ ...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+## 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 %}
diff --git a/pages/resizable-element/index.tsx b/pages/resizable-element/index.tsx
deleted file mode 100644
index e5f87a3..0000000
--- a/pages/resizable-element/index.tsx
+++ /dev/null
@@ -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 (
-
-
-
-
-
-
-
-
- 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.
-
-
-
- ...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-`}
- 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%);
- }
- `}
- >
-
-
-
- );
-};
-
-export default Details;
diff --git a/pages/status-light/index.tsx b/pages/status-light/index.tsx
deleted file mode 100644
index f700fc9..0000000
--- a/pages/status-light/index.tsx
+++ /dev/null
@@ -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 (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
-export default Details;
diff --git a/patterns/resizable-element/Cover.tsx b/patterns/resizable-element/Cover.tsx
deleted file mode 100644
index 7945733..0000000
--- a/patterns/resizable-element/Cover.tsx
+++ /dev/null
@@ -1,128 +0,0 @@
-import * as React from 'react';
-
-import Frame from '../../placeholders/Frame';
-
-const Cover: React.FC<{}> = () => {
- return (
-
-
-
- );
-};
-
-export default Cover;
diff --git a/styles/index.scss b/styles/index.scss
index 41d9ad8..e11e627 100644
--- a/styles/index.scss
+++ b/styles/index.scss
@@ -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';
diff --git a/styles/patterns/_resizable-element.scss b/styles/patterns/_resizable-element.scss
new file mode 100644
index 0000000..9a1b1be
--- /dev/null
+++ b/styles/patterns/_resizable-element.scss
@@ -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%);
+}
\ No newline at end of file