From bd5a00c61b355c857b5c99323592ca432dea5d0a Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Fri, 5 Jan 2024 23:18:49 -0500 Subject: wip --- htmx/static/pico-1.5.11/docs/src/index.html | 59 +++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 htmx/static/pico-1.5.11/docs/src/index.html (limited to 'htmx/static/pico-1.5.11/docs/src/index.html') diff --git a/htmx/static/pico-1.5.11/docs/src/index.html b/htmx/static/pico-1.5.11/docs/src/index.html new file mode 100644 index 0000000..5c52c54 --- /dev/null +++ b/htmx/static/pico-1.5.11/docs/src/index.html @@ -0,0 +1,59 @@ + + + + ${require('./_head.html') + title=`Documentation` + description=`Pico works without package manager or dependencies! There are 4 ways to get started with Pico CSS: manually, from a CDN, with NPM, or with Composer.` + canonical=`` + } + + + + ${require('./_nav.html')} + +
+ ${require('./_sidebar.html') active=`start-link`} + +
+
+
+

Usage

+

Works without package manager or dependencies 🙂!

+
+

There are 4 ways to get started with Pico CSS:

+

Install manually

+

Download Pico and link /css/pico.min.css in the <head> of your website.

+
<link rel="stylesheet" href="css/pico.min.css">
+

Install from CDN

+

Alternatively, you can use jsDelivr CDN to link pico.css

+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
+

Install with NPM

+
npm install @picocss/pico
+

Install with Composer

+
composer require picocss/pico
+

Starter HTML template:

+ +
<!doctype html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <link rel="stylesheet" href="css/pico.min.css">
+    <title>Hello, world!</title>
+  </head>
+  <body>
+    <main class="container">
+      <h1>Hello, world!</h1>
+    </main>
+  </body>
+</html>
+ +
+ + ${require('./_footer.html')} + +
+
+ + + -- cgit v1.2.3