Pico.css
Minimal CSS Framework for semantic HTML
README
Pico.css
Minimal CSS Framework for semantic HTML
Elegant styles for all native HTML elements without .classes
and dark mode automatically enabled.
Examples · Documentation
https://user-images.githubusercontent.com/23470684/126863110-94061cf1-36ea-4697-94bd-2e1071a95a2f.mp4
Class-light and semantic
Pico uses simple native HTML tags as much as possible. Less than 10 .classes are used in Pico.
Great styles with just one CSS file
No dependencies, package manager, external files, or JavaScript.
Responsive everything
Elegant and consistent adaptive spacings and typography on all devices.
Light or Dark mode
Shipped with two beautiful color themes, automatically enabled according to the user preference.
Table of contents
- Usage
- Examples
Usage
There are 4 ways to get started with pico.css:
Install manually
- ``` html
- <link rel="stylesheet" href="css/pico.min.css">
- ```
Install from CDN
Alternatively, you can use unpkg CDN to link pico.css.
- ``` html
- <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
- ```
Install with NPM
- ``` sh
- npm install @picocss/pico
- ```
Install with Composer
- ``` sh
- composer require picocss/pico
- ```
Class-less version
Pico provides a .classless version (example).
In this version, header, main and footer act as containers.
Use the default .classless version if you need centered viewports:
- ``` html
- <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
- ```
Or use the .fluid.classless version if you need a fluid container:
- ``` html
- <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.fluid.classless.min.css">
- ```
Then just write pure HTML, and it should look great:
- ``` html
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.classless.min.css">
- <title>Hello, world!</title>
- </head>
- <body>
- <main>
- <h1>Hello, world!</h1>
- </main>
- </body>
- </html>
- ```
Examples
Minimalist templates to discover Pico in action:
- Preview
A starter example with all elements and components used in Pico
A starter example in Arabic with all the elements and components used in Pico
Just a pure semantic HTML markup, without .classes
A basic custom template for Pico using only CSS custom properties (variables)
- Company
A classic company or blog layout with a sidebar
A simple layout for Google Amp, with inlined CSS
- Sign in
A minimalist layout for Login pages
Custom CSS build with the Bootstrap grid system to manage complex grid layouts in Pico
All examples are open-sourced in picocss/examples.
Limitations
Pico can be used without custom CSS for quick or small projects. However, it’s designed as a starting point, like a “reset CSS on steroids”. As Pico does not integrate any helpers or utilities .classes, this minimal CSS framework requires SCSS or CSS knowledge to build large projects.
Documentation
Getting started
- Usage
- Themes
- RTL
Layout
- Grids
Elements
- Buttons
- Forms
- Tables
Components
- Cards
- Modal
- Navs
- Progress
Utilities
- Loading
- Tooltips
Browser Support
Pico is designed and tested for the latest stable Chrome, Firefox, Edge, and Safari releases. It does not support any version of IE, including IE 11.
Contributing
If you are interested in contributing to Pico CSS, please read our contributing guidelines.
Copyright and license
Licensed under the MIT License.
Relevant third-party tools and resources we depend on:
Website and docs:
- Font Awesome: Icons (Licensed CC BY 4.0)
Pico Library:
- Normalize.css: CSS reset (Licensed MIT)
- Sanitize.css: Cross-browser default styling (Licensed CC0 1.0 Universal)