@anyblades/pico 2.1.1-alpha.2 → 2.2.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +2 -1
- package/README.md +24 -3
- package/css/pico.blades.css +3682 -0
- package/css/pico.blades.min.css +110 -0
- package/css/pico.css +1 -1
- package/css/pico.min.css +1 -1
- package/css/postcss.config.js +1 -0
- package/index.html +18 -0
- package/package.json +3 -1
- package/src/_components.css +1 -1
- package/src/pico.blades.css +7 -0
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2025 Pico
|
|
4
|
+
Copyright (c) 2026 Pico+Blades
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -63,18 +63,36 @@ There are 4 ways to get started with pico.css:
|
|
|
63
63
|
|
|
64
64
|
### Install manually
|
|
65
65
|
|
|
66
|
-
[Download Pico](https://github.com/
|
|
66
|
+
[Download Pico](https://github.com/anyblades/pico/archive/refs/heads/main.zip) and link `/css/pico.min.css` in the `<head>` of your website.
|
|
67
67
|
|
|
68
68
|
```html
|
|
69
69
|
<link rel="stylesheet" href="css/pico.min.css" />
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
+
Or even Pico+[Blades](https://blades.ninja/) version instead:
|
|
73
|
+
|
|
74
|
+
```html
|
|
75
|
+
<link rel="stylesheet" href="css/pico.blades.min.css" />
|
|
76
|
+
```
|
|
77
|
+
|
|
72
78
|
### Usage from CDN
|
|
73
79
|
|
|
74
80
|
Alternatively, you can use [jsDelivr CDN](https://www.jsdelivr.com/package/npm/@anyblades/pico) to link pico.css.
|
|
75
81
|
|
|
82
|
+
<!--prettier-ignore-->
|
|
83
|
+
```html
|
|
84
|
+
<link rel="stylesheet" href="
|
|
85
|
+
https://cdn.jsdelivr.net/npm/@anyblades/pico@^2.2.0-alpha/css/pico.min.css
|
|
86
|
+
"/>
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Or Pico+[Blades](https://blades.ninja/):
|
|
90
|
+
|
|
91
|
+
<!--prettier-ignore-->
|
|
76
92
|
```html
|
|
77
|
-
<link rel="stylesheet" href="
|
|
93
|
+
<link rel="stylesheet" href="
|
|
94
|
+
https://cdn.jsdelivr.net/npm/@anyblades/pico@^2.2.0-alpha/css/pico.blades.min.css
|
|
95
|
+
"/>
|
|
78
96
|
```
|
|
79
97
|
|
|
80
98
|
### Install with NPM
|
|
@@ -101,6 +119,9 @@ Then, import Pico into your <ins>CSS</ins> <del>SCSS file with [@use](https://sa
|
|
|
101
119
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
102
120
|
<meta name="color-scheme" content="light dark">
|
|
103
121
|
<link rel="stylesheet" href="css/pico.min.css">
|
|
122
|
+
<!-- or Pico+Blades together:
|
|
123
|
+
<link rel="stylesheet" href="css/pico.blades.min.css">
|
|
124
|
+
-->
|
|
104
125
|
<title>Hello world!</title>
|
|
105
126
|
</head>
|
|
106
127
|
<body>
|
|
@@ -191,4 +212,4 @@ If you are interested in contributing to Pico CSS, please read our [contributing
|
|
|
191
212
|
|
|
192
213
|
## Copyright and license
|
|
193
214
|
|
|
194
|
-
Licensed under the [MIT License](https://github.com/
|
|
215
|
+
Licensed under the [MIT License](https://github.com/anyblades/pico/blob/master/LICENSE.md).
|