mirror of
https://github.com/picocss/pico.git
synced 2025-04-22 01:26:13 -04:00
- Updated form validation to not validate when form[novalidate]
- Updated tooltips to go multiline, max width of 250px. -Updated card footer, to remove the margin from the last element if they are buttons or groups when in the footer - Made container, grid, and row classes to have a parent class, so they will not effect rest of page. This will only work if you use that style css. - Added tabs - Added floating labels - Added responsive nav hamburger menu Let me know if you find any bugs or have ideas for improvements!
This commit is contained in:
parent
a937be4b4a
commit
f25840f51a
260 changed files with 71329 additions and 11561 deletions
30
docs/basics.css
Normal file
30
docs/basics.css
Normal file
|
@ -0,0 +1,30 @@
|
|||
/**
|
||||
* Yohn's PicoCSS basics
|
||||
*
|
||||
* I'm starting this here, for now, and will probably add it to the main releases when I build up enough
|
||||
* useful universal classes.
|
||||
*
|
||||
* @author John Brittain III
|
||||
* @link https://yohn.github.io/PicoCSS
|
||||
*/
|
||||
|
||||
.m-0 { margin: 0 !important; }
|
||||
.mt-0 { margin-top: 0 !important; }
|
||||
.mb-0 { margin-bottom: 0 !important; }
|
||||
.ms-0 { margin-left: 0 !important; }
|
||||
.me-0 { margin-right: 0 !important; }
|
||||
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
|
||||
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
|
||||
|
||||
.p-0 { padding: 0 !important; }
|
||||
.pt-0 { padding-top: 0 !important; }
|
||||
.pb-0 { padding-bottom: 0 !important; }
|
||||
.ps-0 { padding-left: 0 !important; }
|
||||
.pe-0 { padding-right: 0 !important; }
|
||||
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
|
||||
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
|
||||
|
||||
.fw-n { font-weight: normal !important; }
|
||||
|
||||
|
||||
article > header > h6 {color: var(--pico-primary);}
|
Loading…
Add table
Add a link
Reference in a new issue