@anyblades/pico 2.1.1-alpha → 2.2.0-alpha
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/README.md +7 -7
- package/css/pico.blades.css +3682 -0
- package/css/pico.blades.min.css +110 -0
- package/css/pico.css +890 -708
- package/css/pico.min.css +100 -1
- package/css/postcss.config.js +6 -4
- package/package.json +11 -10
- package/src/_components.css +974 -0
- package/src/_content.css +604 -0
- package/src/_forms.css +745 -0
- package/src/_layout.css +127 -0
- package/src/_utilities.css +53 -0
- package/src/_variables.css +689 -0
- package/src/pico.blades.css +7 -0
- package/src/pico.css +11 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
> This is a community-driven successor to the [Pico CSS framework](https://github.com/picocss/pico) with a few simple goals:
|
|
3
3
|
>
|
|
4
4
|
> 1. **Maintain** `pico` minimally until its creator returns.
|
|
5
|
-
> 2. **Focus** exclusively on the `pico.css` version, similar to how [simple.css](https://github.com/kevquirk/simple.css) is maintained (check [@Yohn's fork](https://github.com/Yohn/PicoCSS)
|
|
5
|
+
> 2. **Focus** exclusively on the `pico.css` version, similar to how [simple.css](https://github.com/kevquirk/simple.css) is maintained (for Sass version check [@Yohn's fork](https://github.com/Yohn/PicoCSS) instead).
|
|
6
6
|
> 3. **Keep** all non-original additions in [blades.css](https://github.com/anyblades/blades), shipped as `pico.blades.css` — a drop-in compatible replacement for `pico.css`.
|
|
7
7
|
>
|
|
8
8
|
> [Read more](https://github.com/picocss/pico/issues/640#issuecomment-4186674269)
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
<p>
|
|
13
13
|
<a href="https://picocss.com" target="_blank">
|
|
14
14
|
<picture>
|
|
15
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/
|
|
16
|
-
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/
|
|
17
|
-
<img alt="Pico CSS" src="https://raw.githubusercontent.com/
|
|
15
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/anyblades/pico/HEAD/.github/logo-dark.svg">
|
|
16
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/anyblades/pico/HEAD/.github/logo-light.svg">
|
|
17
|
+
<img alt="Pico CSS" src="https://raw.githubusercontent.com/anyblades/pico/HEAD/.github/logo-light.svg" width="auto" height="60">
|
|
18
18
|
</picture>
|
|
19
19
|
</a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
22
|
-
[](https://github.com/
|
|
22
|
+
[](https://github.com/anyblades/pico/releases/latest)
|
|
23
|
+
[](https://www.npmjs.com/package/@anyblades/pico)
|
|
24
|
+
[](https://github.com/anyblades/pico/blob/master/LICENSE.md)
|
|
25
25
|
[](https://github.com/anyblades/pico)
|
|
26
26
|
|
|
27
27
|
## Minimal CSS Framework for Semantic HTML
|