@datafluxgrid/fluxgrid-css 1.0.11 → 1.0.13
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/package.json +1 -1
- package/src/css/grid.css +79 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datafluxgrid/fluxgrid-css",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "A utility-first CSS framework with zero build step — dark mode, animations, forms, and a full design token system built in.",
|
|
5
5
|
"main": "src/index.css",
|
|
6
6
|
"files": [
|
package/src/css/grid.css
CHANGED
|
@@ -147,6 +147,18 @@
|
|
|
147
147
|
.c-inline-flex {
|
|
148
148
|
display: inline-flex;
|
|
149
149
|
}
|
|
150
|
+
.c-flex-row {
|
|
151
|
+
flex-direction: row;
|
|
152
|
+
}
|
|
153
|
+
.c-flex-col {
|
|
154
|
+
flex-direction: column;
|
|
155
|
+
}
|
|
156
|
+
.c-flex-row-reverse {
|
|
157
|
+
flex-direction: row-reverse;
|
|
158
|
+
}
|
|
159
|
+
.c-flex-col-reverse {
|
|
160
|
+
flex-direction: column-reverse;
|
|
161
|
+
}
|
|
150
162
|
.c-flex-wrap {
|
|
151
163
|
flex-wrap: wrap;
|
|
152
164
|
}
|
|
@@ -543,6 +555,64 @@
|
|
|
543
555
|
.c-md-justify-center {
|
|
544
556
|
justify-content: center;
|
|
545
557
|
}
|
|
558
|
+
.c-md-text-xs {
|
|
559
|
+
font-size: 0.75rem;
|
|
560
|
+
}
|
|
561
|
+
.c-md-text-sm {
|
|
562
|
+
font-size: 0.875rem;
|
|
563
|
+
}
|
|
564
|
+
.c-md-text-base {
|
|
565
|
+
font-size: 1rem;
|
|
566
|
+
}
|
|
567
|
+
.c-md-text-lg {
|
|
568
|
+
font-size: 1.125rem;
|
|
569
|
+
}
|
|
570
|
+
.c-md-text-xl {
|
|
571
|
+
font-size: 1.25rem;
|
|
572
|
+
}
|
|
573
|
+
.c-md-text-2xl {
|
|
574
|
+
font-size: 1.5rem;
|
|
575
|
+
}
|
|
576
|
+
.c-md-text-3xl {
|
|
577
|
+
font-size: 1.875rem;
|
|
578
|
+
}
|
|
579
|
+
.c-md-text-4xl {
|
|
580
|
+
font-size: 2.25rem;
|
|
581
|
+
}
|
|
582
|
+
.c-md-text-5xl {
|
|
583
|
+
font-size: 3rem;
|
|
584
|
+
}
|
|
585
|
+
.c-md-text-6xl {
|
|
586
|
+
font-size: 3.75rem;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.c-md-py-16 {
|
|
590
|
+
padding-top: 64px;
|
|
591
|
+
padding-bottom: 64px;
|
|
592
|
+
}
|
|
593
|
+
.c-md-py-20 {
|
|
594
|
+
padding-top: 80px;
|
|
595
|
+
padding-bottom: 80px;
|
|
596
|
+
}
|
|
597
|
+
.c-md-py-24 {
|
|
598
|
+
padding-top: 96px;
|
|
599
|
+
padding-bottom: 96px;
|
|
600
|
+
}
|
|
601
|
+
.c-md-mb-10 {
|
|
602
|
+
margin-bottom: 40px;
|
|
603
|
+
}
|
|
604
|
+
.c-md-mb-12 {
|
|
605
|
+
margin-bottom: 48px;
|
|
606
|
+
}
|
|
607
|
+
.c-md-mb-16 {
|
|
608
|
+
margin-bottom: 64px;
|
|
609
|
+
}
|
|
610
|
+
.c-md-p-4 {
|
|
611
|
+
padding: 16px;
|
|
612
|
+
}
|
|
613
|
+
.c-md-p-6 {
|
|
614
|
+
padding: 24px;
|
|
615
|
+
}
|
|
546
616
|
}
|
|
547
617
|
|
|
548
618
|
@media (min-width: 1024px) {
|
|
@@ -641,6 +711,15 @@
|
|
|
641
711
|
.c-lg-justify-center {
|
|
642
712
|
justify-content: center;
|
|
643
713
|
}
|
|
714
|
+
.c-lg-text-3xl {
|
|
715
|
+
font-size: 1.875rem;
|
|
716
|
+
}
|
|
717
|
+
.c-lg-text-4xl {
|
|
718
|
+
font-size: 2.25rem;
|
|
719
|
+
}
|
|
720
|
+
.c-lg-text-5xl {
|
|
721
|
+
font-size: 3rem;
|
|
722
|
+
}
|
|
644
723
|
}
|
|
645
724
|
|
|
646
725
|
@media (min-width: 1280px) {
|