diff --git a/docs/index.html b/docs/index.html index eaee80ea..3342964f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -143,7 +143,7 @@
The Light theme is used by default. The Dark theme is automatically enabled if the user has dark mode enabled prefers-color-scheme: dark
Themes can be forced on document level <html data-theme="light">
or on any HTML element <article data-theme="dark">
<article data-theme="light">
- ...
+ …
</article>
<article data-theme="dark">
- ...
+ …
</article>
@@ -200,7 +200,7 @@
// Simplified example
:root {
- --primary: ...;
+ --primary: …;
}
@@ -213,30 +213,30 @@
/* Can be forced with data-theme="light" */
[data-theme="light"],
:root:not([data-theme="dark"]) {
- --primary: ...;
- --primary-hover: ...;
- --primary-focus: ...;
- --primary-inverse: ...;
+ --primary: …;
+ --primary-hover: …;
+ --primary-focus: …;
+ --primary-inverse: …;
}
/* Dark scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
- --primary: ...;
- --primary-hover: ...;
- --primary-focus: ...;
- --primary-inverse: ...;
+ --primary: …;
+ --primary-hover: …;
+ --primary-focus: …;
+ --primary-inverse: …;
}
}
/* Dark scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme="dark"] {
- --primary: ...;
- --primary-hover: ...;
- --primary-focus: ...;
- --primary-inverse: ...;
+ --primary: …;
+ --primary-hover: …;
+ --primary-focus: …;
+ --primary-inverse: …;
}
/* (Common styles) */
@@ -256,9 +256,9 @@
/* Custom version */
// Override default variables
-$primary-500: ...;
-$primary-600: ...;
-$primary-700: ...;
+$primary-500: …;
+$primary-600: …;
+$primary-700: …;
// Import full Pico source code
@import "path/pico";
@@ -273,7 +273,7 @@
// Import needed components
@import "path/layout/document";
@import "path/layout/sectioning";
-...
+…
This allows you to create a lighter version with only the components that are useful to you. Example here: scss/pico.slim.scss.
@@ -462,7 +462,7 @@<figure>
<table>
- ...
+ …
</table>
</figure>
@@ -755,7 +755,7 @@