forked from Yohn/PicoCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.css
30 lines (25 loc) · 972 Bytes
/
basics.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);}