- | .pin |
-
+ | .pin |
+
top: 0;
right: 0;
bottom: 0;
diff --git a/docs/source/docs/shadows.blade.md b/docs/source/docs/shadows.blade.md
index 0e48a7b30..316abcca9 100644
--- a/docs/source/docs/shadows.blade.md
+++ b/docs/source/docs/shadows.blade.md
@@ -18,11 +18,11 @@ title: "Shadows"
-
-
-
-
-
+
+
+
+
+
| Class |
diff --git a/docs/source/docs/text-color.blade.md b/docs/source/docs/text-color.blade.md
index 9e28cb458..966430af3 100644
--- a/docs/source/docs/text-color.blade.md
+++ b/docs/source/docs/text-color.blade.md
@@ -30,9 +30,9 @@ title: "Text Color"
@foreach ($page->config['colors'] as $name => $value)
- | .text-{{ $name }} |
- color: {{ $value }}; |
- Set the text color of an element to {{ implode(' ', array_reverse(explode('-', $name))) }}. |
+ .text-{{ $name }} |
+ color: {{ $value }}; |
+ Set the text color of an element to {{ implode(' ', array_reverse(explode('-', $name))) }}. |
@endforeach
diff --git a/docs/source/docs/text-sizing.blade.md b/docs/source/docs/text-sizing.blade.md
index 82e41f922..b5ad7a111 100644
--- a/docs/source/docs/text-sizing.blade.md
+++ b/docs/source/docs/text-sizing.blade.md
@@ -22,8 +22,8 @@ title: "Text Sizing"
-
-
+
+
@@ -39,44 +39,44 @@ title: "Text Sizing"
Set the text size to .75rem (12px). |
- | .text-sm |
- font-size: .875rem; |
- Set the text size to .875rem (14px). |
+ .text-sm |
+ font-size: .875rem; |
+ Set the text size to .875rem (14px). |
- | .text-base |
- font-size: 1rem; |
- Set the text size to 1rem (16px). |
+ .text-base |
+ font-size: 1rem; |
+ Set the text size to 1rem (16px). |
- | .text-lg |
- font-size: 1.125rem; |
- Set the text size to 1.125rem (18px). |
+ .text-lg |
+ font-size: 1.125rem; |
+ Set the text size to 1.125rem (18px). |
- | .text-xl |
- font-size: 1.25rem; |
- Set the text size to 1.25rem (20px). |
+ .text-xl |
+ font-size: 1.25rem; |
+ Set the text size to 1.25rem (20px). |
- | .text-2xl |
- font-size: 1.5rem; |
- Set the text size to 1.5rem (24px). |
+ .text-2xl |
+ font-size: 1.5rem; |
+ Set the text size to 1.5rem (24px). |
- | .text-3xl |
- font-size: 1.875rem; |
- Set the text size to 1.875rem (30px). |
+ .text-3xl |
+ font-size: 1.875rem; |
+ Set the text size to 1.875rem (30px). |
- | .text-4xl |
- font-size: 2.25rem; |
- Set the text size to 2.25rem (36px). |
+ .text-4xl |
+ font-size: 2.25rem; |
+ Set the text size to 2.25rem (36px). |
- | .text-5xl |
- font-size: 3rem; |
- Set the text size to 3rem (48px). |
+ .text-5xl |
+ font-size: 3rem; |
+ Set the text size to 3rem (48px). |
diff --git a/docs/source/docs/text-style.blade.md b/docs/source/docs/text-style.blade.md
index 5d5118a55..5fc99b080 100644
--- a/docs/source/docs/text-style.blade.md
+++ b/docs/source/docs/text-style.blade.md
@@ -23,7 +23,7 @@ title: "Style & Decoration"
-
+
@@ -34,65 +34,65 @@ title: "Style & Decoration"
- | .italic |
- font-style: italic; |
+ .italic |
+ font-style: italic; |
Italicizes the text within an element. |
- | .roman |
- font-style: normal; |
- Sets the text to roman (disables italics) within an element. |
+ .roman |
+ font-style: normal; |
+ Sets the text to roman (disables italics) within an element. |
- | .uppercase |
- text-transform: uppercase; |
- Makes all text uppercase within an element. |
+ .uppercase |
+ text-transform: uppercase; |
+ Makes all text uppercase within an element. |
- | .lowercase |
- text-transform: lowercase; |
- Makes all text lowercase within an element. |
+ .lowercase |
+ text-transform: lowercase; |
+ Makes all text lowercase within an element. |
- | .capitalize |
- text-transform: capitalize; |
- Capitalizes the text within an element. |
+ .capitalize |
+ text-transform: capitalize; |
+ Capitalizes the text within an element. |
- | .normal-case |
- text-transform: none; |
- Disables any text transformations previously applied to an element. |
+ .normal-case |
+ text-transform: none; |
+ Disables any text transformations previously applied to an element. |
- | .underline |
- text-decoration: underline; |
- Underlines the text within an element. |
+ .underline |
+ text-decoration: underline; |
+ Underlines the text within an element. |
- | .line-through |
- text-decoration: line-through; |
- Adds a line through the text within an element. |
+ .line-through |
+ text-decoration: line-through; |
+ Adds a line through the text within an element. |
- | .no-underline |
- text-decoration: none; |
- Disables any text decorations previously applied to an element. |
+ .no-underline |
+ text-decoration: none; |
+ Disables any text decorations previously applied to an element. |
- | .antialiased |
-
+ | .antialiased |
+
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
|
- Set the font smoothing of an element to antialiased. |
+ Set the font smoothing of an element to antialiased. |
- | .subpixel-antialiased |
-
+ | .subpixel-antialiased |
+
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
|
- Set the font smoothing of an element to subpixel antialiasing (the default). |
+ Set the font smoothing of an element to subpixel antialiasing (the default). |
diff --git a/docs/source/docs/vertical-alignment.blade.md b/docs/source/docs/vertical-alignment.blade.md
index 61d9d6ca4..5789d0cd1 100644
--- a/docs/source/docs/vertical-alignment.blade.md
+++ b/docs/source/docs/vertical-alignment.blade.md
@@ -20,11 +20,11 @@ title: "Vertical Alignment"
-
-
-
-
-
+
+
+
+
+
| Class |
@@ -34,9 +34,9 @@ title: "Vertical Alignment"
- | .align-baseline |
- vertical-align: baseline; |
- Align the baseline of an element with the baseline of its parent |
+ .align-baseline |
+ vertical-align: baseline; |
+ Align the baseline of an element with the baseline of its parent. |
| .align-top |
diff --git a/docs/source/docs/visibility.blade.md b/docs/source/docs/visibility.blade.md
index 89d7899a8..52118f15d 100644
--- a/docs/source/docs/visibility.blade.md
+++ b/docs/source/docs/visibility.blade.md
@@ -19,11 +19,11 @@ title: "Visibility"
-
-
-
-
-
+
+
+
+
+
| Class |
@@ -33,9 +33,9 @@ title: "Visibility"
- | .visible |
- visibility: visible; |
- Make an element visible. |
+ .visible |
+ visibility: visible; |
+ Make an element visible. |
| .invisible |
diff --git a/docs/source/docs/whitespace-and-wrapping.blade.md b/docs/source/docs/whitespace-and-wrapping.blade.md
index 1d846aa75..9771a6b9c 100644
--- a/docs/source/docs/whitespace-and-wrapping.blade.md
+++ b/docs/source/docs/whitespace-and-wrapping.blade.md
@@ -20,6 +20,11 @@ title: "Whitespace & Wrapping"
+
+
+
+
+
| Class |
@@ -29,48 +34,48 @@ title: "Whitespace & Wrapping"
- | .whitespace-normal |
- white-space: normal; |
+ .whitespace-normal |
+ white-space: normal; |
Cause text to wrap normally within an element. |
- | .whitespace-no-wrap |
- white-space: nowrap; |
- Prevent text from wrapping within an element. |
+ .whitespace-no-wrap |
+ white-space: nowrap; |
+ Prevent text from wrapping within an element. |
- | .whitespace-pre |
- white-space: pre; |
- Preserve line returns and spaces within an element. |
+ .whitespace-pre |
+ white-space: pre; |
+ Preserve line returns and spaces within an element. |
- | .whitespace-pre-line |
- white-space: pre-line; |
- Preserve line returns but not spaces within an element. |
+ .whitespace-pre-line |
+ white-space: pre-line; |
+ Preserve line returns but not spaces within an element. |
- | .whitespace-pre-wrap |
- white-space: pre-wrap; |
- Preserve spaces but not line returns within an element. |
+ .whitespace-pre-wrap |
+ white-space: pre-wrap; |
+ Preserve spaces but not line returns within an element. |
- | .break-words |
- word-wrap: break-word; |
- Allow unbreakable words to be broken within an element. |
+ .break-words |
+ word-wrap: break-word; |
+ Allow unbreakable words to be broken within an element. |
- | .break-normal |
- word-wrap: normal; |
- Break words only at allowed break points within an element. |
+ .break-normal |
+ word-wrap: normal; |
+ Break words only at allowed break points within an element. |
- | .truncate |
-
+ | .truncate |
+
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
|
- Cause overflowing text within an element get to truncated with an ellipsis (…) if required. |
+ Cause overflowing text within an element get to truncated with an ellipsis (…) if required. |
diff --git a/docs/source/docs/width.blade.md b/docs/source/docs/width.blade.md
index 1925ed9eb..ca85bbfa3 100644
--- a/docs/source/docs/width.blade.md
+++ b/docs/source/docs/width.blade.md
@@ -20,11 +20,11 @@ title: "Width"
-
-
-
-
-
+
+
+
+
+
| Class |
@@ -34,9 +34,9 @@ title: "Width"
- | .w-1 |
- width: 0.25rem; |
- Set the element's width to 0.25rem. |
+ .w-1 |
+ width: 0.25rem; |
+ Set the element's width to 0.25rem. |
| .w-2 |
@@ -100,77 +100,77 @@ title: "Width"
| .w-auto |
- width: auto |
+ width: auto; |
Set the element's width to auto. |
| .w-px |
- width: 1px |
+ width: 1px; |
Set the element's width to 1px. |
| .w-1/2 |
- width: 50% |
+ width: 50%; |
Set the element's width to 50%. |
| .w-1/3 |
- width: 33.33333% |
+ width: 33.33333%; |
Set the element's width to 33.33333%. |
| .w-2/3 |
- width: 66.66667% |
+ width: 66.66667%; |
Set the element's width to 66.66667%. |
| .w-1/4 |
- width: 25% |
+ width: 25%; |
Set the element's width to 25%. |
| .w-3/4 |
- width: 75% |
+ width: 75%; |
Set the element's width to 75%. |
| .w-1/5 |
- width: 20% |
+ width: 20%; |
Set the element's width to 20%. |
| .w-2/5 |
- width: 49% |
+ width: 49%; |
Set the element's width to 49%. |
| .w-3/5 |
- width: 60% |
+ width: 60%; |
Set the element's width to 60%. |
| .w-4/5 |
- width: 80% |
+ width: 80%; |
Set the element's width to 80%. |
| .w-1/6 |
- width: 16.66667% |
+ width: 16.66667%; |
Set the element's width to 16.66667%. |
| .w-5/6 |
- width: 83.33333% |
+ width: 83.33333%; |
Set the element's width to 83.33333%. |
| .w-full |
- width: 100% |
+ width: 100%; |
Set the element's width to 100%. |
| .w-screen |
- width: 100vw |
+ width: 100vw; |
Set the element's width to 100vw. |
diff --git a/docs/source/docs/z-index.blade.md b/docs/source/docs/z-index.blade.md
index 0b866d2cd..6a3074c71 100644
--- a/docs/source/docs/z-index.blade.md
+++ b/docs/source/docs/z-index.blade.md
@@ -19,9 +19,9 @@ title: "Z-Index"
-
-
-
+
+
+
@@ -32,9 +32,9 @@ title: "Z-Index"
- | .z-0 |
- z-index: 0; |
- Set the z-index of the element to 0. |
+ .z-0 |
+ z-index: 0; |
+ Set the z-index of the element to 0. |
| .z-10 |
|