atomic-css-cli 1.0.3 → 1.0.5
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 +25 -11
- package/dist/atomic-css.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -539,7 +539,7 @@ object-fit: cover → ofc
|
|
|
539
539
|
| 표기 | 설명 | 예시 | 결과 |
|
|
540
540
|
| --- | --- | --- | --- |
|
|
541
541
|
| `i` 접미사 | `!important` | `w100pxi` | `width: 100px !important` |
|
|
542
|
-
| `neg-` 접두사 | 음수값 | `neg-mt10px` | `margin-top: -10px` |
|
|
542
|
+
| `neg-` 접두사 | 음수값 | `neg-mt10px` | `margin-top: -10px` (허용: margin, top/right/bottom/left, letter-spacing, text-indent, z-index, order, transform) |
|
|
543
543
|
|
|
544
544
|
---
|
|
545
545
|
|
|
@@ -569,6 +569,9 @@ object-fit: cover → ofc
|
|
|
569
569
|
| `ais` / `aifs` / `aife` / `aic` | `align-items: stretch / flex-start / flex-end / center` |
|
|
570
570
|
| `fs0` / `fs1` | `flex-shrink: 0 / 1` |
|
|
571
571
|
| `fg1` / `fg2` | `flex-grow: 1 / 2` |
|
|
572
|
+
| `fba` | `flex-basis: auto` |
|
|
573
|
+
| `fb200px` / `fb50p` | `flex-basis: 200px / 50%` |
|
|
574
|
+
| `flex1-1-auto` | `flex: 1 1 auto` |
|
|
572
575
|
| `fa` / `fi` | `flex: auto / initial` |
|
|
573
576
|
|
|
574
577
|
## Grid
|
|
@@ -615,18 +618,20 @@ object-fit: cover → ofc
|
|
|
615
618
|
| --- | --- | --- |
|
|
616
619
|
| 단축 | `b1pxsolidDDDDDD` | `border: 1px solid #DDDDDD` |
|
|
617
620
|
| 방향 | `bt2pxdashed000000` | `border-top: 2px dashed #000000` |
|
|
618
|
-
|
|
|
621
|
+
| 스타일 | solid, dashed, dotted, double, groove, ridge, inset, outset |
|
|
622
|
+
| radius | `br8px`, `br0`, `br50p` | `border-radius` |
|
|
619
623
|
| none | `bn` | `border: none` |
|
|
620
|
-
| 방향 제거 | `bt0`, `
|
|
624
|
+
| 방향 제거 | `bt0`, `brn`, `bb0`, `bl0` | `border-방향: 0` (`brn` = border-right:0) |
|
|
621
625
|
|
|
622
626
|
## Shadow
|
|
623
627
|
|
|
624
628
|
| 패턴 | 예시 | CSS |
|
|
625
629
|
| --- | --- | --- |
|
|
626
|
-
| Box Shadow (HEX) | `
|
|
627
|
-
| Box Shadow (RGBA) | `
|
|
628
|
-
| Inset | `
|
|
629
|
-
| Text Shadow | `
|
|
630
|
+
| Box Shadow (HEX) | `bs2px4px10px0pxFF0000` | `box-shadow: 2px 4px 10px 0px #FF0000` |
|
|
631
|
+
| Box Shadow (RGBA) | `bs0px4px12px0px0-0-0-10` | `box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.1)` |
|
|
632
|
+
| Inset | `bsi0px2px4px0px000000` | `box-shadow: inset 0px 2px 4px 0px #000000` |
|
|
633
|
+
| Text Shadow | `ts2px-2px-4px-DDDDDD` | `text-shadow: 2px 2px 4px #DDDDDD` (하이픈 구분) |
|
|
634
|
+
| Text Shadow RGBA | `ts0px-0px-8px-0-0-0-50` | `text-shadow: 0px 0px 8px rgba(0,0,0,0.5)` |
|
|
630
635
|
| None | `bsn` | `box-shadow: none` |
|
|
631
636
|
|
|
632
637
|
## Transform
|
|
@@ -634,8 +639,10 @@ object-fit: cover → ofc
|
|
|
634
639
|
| 클래스 | CSS |
|
|
635
640
|
| --- | --- |
|
|
636
641
|
| `ttx10px` | `transform: translateX(10px)` |
|
|
637
|
-
| `
|
|
642
|
+
| `tty2-5rem` | `transform: translateY(2.5rem)` |
|
|
643
|
+
| `neg-ttx50p` | `transform: translateX(-50%)` |
|
|
638
644
|
| `tr45deg` | `transform: rotate(45deg)` |
|
|
645
|
+
| `neg-tr90deg` | `transform: rotate(-90deg)` |
|
|
639
646
|
| `ts1-5` | `transform: scale(1.5)` |
|
|
640
647
|
| `ts1-5_2` | `transform: scale(1.5, 2)` |
|
|
641
648
|
|
|
@@ -653,7 +660,6 @@ object-fit: cover → ofc
|
|
|
653
660
|
|
|
654
661
|
| 클래스 | CSS |
|
|
655
662
|
| --- | --- |
|
|
656
|
-
| `fb5px` | `filter: blur(5px)` |
|
|
657
663
|
| `fbr120p` | `filter: brightness(120%)` |
|
|
658
664
|
| `fc80p` | `filter: contrast(80%)` |
|
|
659
665
|
| `fg100p` | `filter: grayscale(100%)` |
|
|
@@ -661,10 +667,18 @@ object-fit: cover → ofc
|
|
|
661
667
|
| `fi100p` | `filter: invert(100%)` |
|
|
662
668
|
| `fo80p` | `filter: opacity(80%)` |
|
|
663
669
|
| `fsa150p` | `filter: saturate(150%)` |
|
|
664
|
-
| `fse50p` | `filter: sepia(50%)` |
|
|
665
670
|
| `fds2px4px8pxFF0000` | `filter: drop-shadow(2px 4px 8px #FF0000)` |
|
|
666
671
|
|
|
667
|
-
>
|
|
672
|
+
> `fb`는 `flex-basis`로 사용됩니다. `filter: blur`는 backdrop-filter(`bfb`)만 지원합니다.
|
|
673
|
+
|
|
674
|
+
### Backdrop Filter
|
|
675
|
+
|
|
676
|
+
| 클래스 | CSS |
|
|
677
|
+
| --- | --- |
|
|
678
|
+
| `bfb10px` | `backdrop-filter: blur(10px)` |
|
|
679
|
+
| `bfbr120p` | `backdrop-filter: brightness(120%)` |
|
|
680
|
+
| `bfc80p` | `backdrop-filter: contrast(80%)` |
|
|
681
|
+
| `bfn` | `backdrop-filter: none` |
|
|
668
682
|
|
|
669
683
|
## 미디어 쿼리 (14개 Breakpoint)
|
|
670
684
|
|