@pzh-ui/css 0.0.49 → 0.0.52
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 +1 -0
- package/config/index.js +16 -0
- package/package.json +3 -2
- package/src/tailwind.css +634 -11
package/README.md
CHANGED
package/config/index.js
CHANGED
|
@@ -14,6 +14,7 @@ module.exports = {
|
|
|
14
14
|
require('@tailwindcss/line-clamp'),
|
|
15
15
|
require('@tailwindcss/forms'),
|
|
16
16
|
require('@tailwindcss/custom-forms'),
|
|
17
|
+
require('@tailwindcss/typography'),
|
|
17
18
|
],
|
|
18
19
|
theme: {
|
|
19
20
|
screens: {
|
|
@@ -218,6 +219,10 @@ module.exports = {
|
|
|
218
219
|
'pzh-white': {
|
|
219
220
|
DEFAULT: '#FFFFFF',
|
|
220
221
|
},
|
|
222
|
+
'pzh-ui': {
|
|
223
|
+
white: '#FFFFFF',
|
|
224
|
+
'light-blue': '#E5EFF8',
|
|
225
|
+
},
|
|
221
226
|
},
|
|
222
227
|
extend: {
|
|
223
228
|
opacity: {
|
|
@@ -227,6 +232,17 @@ module.exports = {
|
|
|
227
232
|
boxShadow: {
|
|
228
233
|
card: '0px 18px 60px rgba(0, 0, 0, 0.07), 0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275), 0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725)',
|
|
229
234
|
},
|
|
235
|
+
typography: {
|
|
236
|
+
DEFAULT: {
|
|
237
|
+
css: {
|
|
238
|
+
li: {
|
|
239
|
+
p: {
|
|
240
|
+
margin: 0,
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
},
|
|
230
246
|
},
|
|
231
247
|
},
|
|
232
248
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.52",
|
|
4
4
|
"description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
"@tailwindcss/custom-forms": "^0.2.1",
|
|
18
18
|
"@tailwindcss/forms": "^0.5.0",
|
|
19
19
|
"@tailwindcss/line-clamp": "^0.3.1",
|
|
20
|
+
"@tailwindcss/typography": "^0.5.9",
|
|
20
21
|
"react-datepicker": "^4.7.0"
|
|
21
22
|
},
|
|
22
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "3d694fda190b2f40525b065b6f47e25d89b63eca",
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"tailwindcss": "^3.0.23"
|
|
25
26
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -673,6 +673,503 @@ select {
|
|
|
673
673
|
}
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
+
.prose {
|
|
677
|
+
color: var(--tw-prose-body);
|
|
678
|
+
max-width: 65ch;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.prose :where(p):not(:where([class~="not-prose"] *)) {
|
|
682
|
+
margin-top: 1.25em;
|
|
683
|
+
margin-bottom: 1.25em;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
|
|
687
|
+
color: var(--tw-prose-lead);
|
|
688
|
+
font-size: 1.25em;
|
|
689
|
+
line-height: 1.6;
|
|
690
|
+
margin-top: 1.2em;
|
|
691
|
+
margin-bottom: 1.2em;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.prose :where(a):not(:where([class~="not-prose"] *)) {
|
|
695
|
+
color: var(--tw-prose-links);
|
|
696
|
+
text-decoration: underline;
|
|
697
|
+
font-weight: 500;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.prose :where(strong):not(:where([class~="not-prose"] *)) {
|
|
701
|
+
color: var(--tw-prose-bold);
|
|
702
|
+
font-weight: 600;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.prose :where(a strong):not(:where([class~="not-prose"] *)) {
|
|
706
|
+
color: inherit;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
|
|
710
|
+
color: inherit;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
|
|
714
|
+
color: inherit;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.prose :where(ol):not(:where([class~="not-prose"] *)) {
|
|
718
|
+
list-style-type: decimal;
|
|
719
|
+
margin-top: 1.25em;
|
|
720
|
+
margin-bottom: 1.25em;
|
|
721
|
+
padding-left: 1.625em;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
|
|
725
|
+
list-style-type: upper-alpha;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
|
|
729
|
+
list-style-type: lower-alpha;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
|
|
733
|
+
list-style-type: upper-alpha;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
|
|
737
|
+
list-style-type: lower-alpha;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
|
|
741
|
+
list-style-type: upper-roman;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
|
|
745
|
+
list-style-type: lower-roman;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
|
|
749
|
+
list-style-type: upper-roman;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
|
|
753
|
+
list-style-type: lower-roman;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
|
|
757
|
+
list-style-type: decimal;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.prose :where(ul):not(:where([class~="not-prose"] *)) {
|
|
761
|
+
list-style-type: disc;
|
|
762
|
+
margin-top: 1.25em;
|
|
763
|
+
margin-bottom: 1.25em;
|
|
764
|
+
padding-left: 1.625em;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
|
|
768
|
+
font-weight: 400;
|
|
769
|
+
color: var(--tw-prose-counters);
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
|
|
773
|
+
color: var(--tw-prose-bullets);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.prose :where(hr):not(:where([class~="not-prose"] *)) {
|
|
777
|
+
border-color: var(--tw-prose-hr);
|
|
778
|
+
border-top-width: 1px;
|
|
779
|
+
margin-top: 3em;
|
|
780
|
+
margin-bottom: 3em;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
|
|
784
|
+
font-weight: 500;
|
|
785
|
+
font-style: italic;
|
|
786
|
+
color: var(--tw-prose-quotes);
|
|
787
|
+
border-left-width: 0.25rem;
|
|
788
|
+
border-left-color: var(--tw-prose-quote-borders);
|
|
789
|
+
quotes: "\201C""\201D""\2018""\2019";
|
|
790
|
+
margin-top: 1.6em;
|
|
791
|
+
margin-bottom: 1.6em;
|
|
792
|
+
padding-left: 1em;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
|
|
796
|
+
content: open-quote;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
|
|
800
|
+
content: close-quote;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.prose :where(h1):not(:where([class~="not-prose"] *)) {
|
|
804
|
+
color: var(--tw-prose-headings);
|
|
805
|
+
font-weight: 800;
|
|
806
|
+
font-size: 2.25em;
|
|
807
|
+
margin-top: 0;
|
|
808
|
+
margin-bottom: 0.8888889em;
|
|
809
|
+
line-height: 1.1111111;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
|
|
813
|
+
font-weight: 900;
|
|
814
|
+
color: inherit;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.prose :where(h2):not(:where([class~="not-prose"] *)) {
|
|
818
|
+
color: var(--tw-prose-headings);
|
|
819
|
+
font-weight: 700;
|
|
820
|
+
font-size: 1.5em;
|
|
821
|
+
margin-top: 2em;
|
|
822
|
+
margin-bottom: 1em;
|
|
823
|
+
line-height: 1.3333333;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
|
|
827
|
+
font-weight: 800;
|
|
828
|
+
color: inherit;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.prose :where(h3):not(:where([class~="not-prose"] *)) {
|
|
832
|
+
color: var(--tw-prose-headings);
|
|
833
|
+
font-weight: 600;
|
|
834
|
+
font-size: 1.25em;
|
|
835
|
+
margin-top: 1.6em;
|
|
836
|
+
margin-bottom: 0.6em;
|
|
837
|
+
line-height: 1.6;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
|
|
841
|
+
font-weight: 700;
|
|
842
|
+
color: inherit;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.prose :where(h4):not(:where([class~="not-prose"] *)) {
|
|
846
|
+
color: var(--tw-prose-headings);
|
|
847
|
+
font-weight: 600;
|
|
848
|
+
margin-top: 1.5em;
|
|
849
|
+
margin-bottom: 0.5em;
|
|
850
|
+
line-height: 1.5;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
|
|
854
|
+
font-weight: 700;
|
|
855
|
+
color: inherit;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.prose :where(img):not(:where([class~="not-prose"] *)) {
|
|
859
|
+
margin-top: 2em;
|
|
860
|
+
margin-bottom: 2em;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.prose :where(figure > *):not(:where([class~="not-prose"] *)) {
|
|
864
|
+
margin-top: 0;
|
|
865
|
+
margin-bottom: 0;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.prose :where(figcaption):not(:where([class~="not-prose"] *)) {
|
|
869
|
+
color: var(--tw-prose-captions);
|
|
870
|
+
font-size: 0.875em;
|
|
871
|
+
line-height: 1.4285714;
|
|
872
|
+
margin-top: 0.8571429em;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.prose :where(code):not(:where([class~="not-prose"] *)) {
|
|
876
|
+
color: var(--tw-prose-code);
|
|
877
|
+
font-weight: 600;
|
|
878
|
+
font-size: 0.875em;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.prose :where(code):not(:where([class~="not-prose"] *))::before {
|
|
882
|
+
content: "`";
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.prose :where(code):not(:where([class~="not-prose"] *))::after {
|
|
886
|
+
content: "`";
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.prose :where(a code):not(:where([class~="not-prose"] *)) {
|
|
890
|
+
color: inherit;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.prose :where(h1 code):not(:where([class~="not-prose"] *)) {
|
|
894
|
+
color: inherit;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
|
|
898
|
+
color: inherit;
|
|
899
|
+
font-size: 0.875em;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.prose :where(h3 code):not(:where([class~="not-prose"] *)) {
|
|
903
|
+
color: inherit;
|
|
904
|
+
font-size: 0.9em;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.prose :where(h4 code):not(:where([class~="not-prose"] *)) {
|
|
908
|
+
color: inherit;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
|
|
912
|
+
color: inherit;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.prose :where(thead th code):not(:where([class~="not-prose"] *)) {
|
|
916
|
+
color: inherit;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.prose :where(pre):not(:where([class~="not-prose"] *)) {
|
|
920
|
+
color: var(--tw-prose-pre-code);
|
|
921
|
+
background-color: var(--tw-prose-pre-bg);
|
|
922
|
+
overflow-x: auto;
|
|
923
|
+
font-weight: 400;
|
|
924
|
+
font-size: 0.875em;
|
|
925
|
+
line-height: 1.7142857;
|
|
926
|
+
margin-top: 1.7142857em;
|
|
927
|
+
margin-bottom: 1.7142857em;
|
|
928
|
+
border-radius: 0.375rem;
|
|
929
|
+
padding-top: 0.8571429em;
|
|
930
|
+
padding-right: 1.1428571em;
|
|
931
|
+
padding-bottom: 0.8571429em;
|
|
932
|
+
padding-left: 1.1428571em;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.prose :where(pre code):not(:where([class~="not-prose"] *)) {
|
|
936
|
+
background-color: transparent;
|
|
937
|
+
border-width: 0;
|
|
938
|
+
border-radius: 0;
|
|
939
|
+
padding: 0;
|
|
940
|
+
font-weight: inherit;
|
|
941
|
+
color: inherit;
|
|
942
|
+
font-size: inherit;
|
|
943
|
+
font-family: inherit;
|
|
944
|
+
line-height: inherit;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.prose :where(pre code):not(:where([class~="not-prose"] *))::before {
|
|
948
|
+
content: none;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.prose :where(pre code):not(:where([class~="not-prose"] *))::after {
|
|
952
|
+
content: none;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.prose :where(table):not(:where([class~="not-prose"] *)) {
|
|
956
|
+
width: 100%;
|
|
957
|
+
table-layout: auto;
|
|
958
|
+
text-align: left;
|
|
959
|
+
margin-top: 2em;
|
|
960
|
+
margin-bottom: 2em;
|
|
961
|
+
font-size: 0.875em;
|
|
962
|
+
line-height: 1.7142857;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.prose :where(thead):not(:where([class~="not-prose"] *)) {
|
|
966
|
+
border-bottom-width: 1px;
|
|
967
|
+
border-bottom-color: var(--tw-prose-th-borders);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.prose :where(thead th):not(:where([class~="not-prose"] *)) {
|
|
971
|
+
color: var(--tw-prose-headings);
|
|
972
|
+
font-weight: 600;
|
|
973
|
+
vertical-align: bottom;
|
|
974
|
+
padding-right: 0.5714286em;
|
|
975
|
+
padding-bottom: 0.5714286em;
|
|
976
|
+
padding-left: 0.5714286em;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
|
|
980
|
+
border-bottom-width: 1px;
|
|
981
|
+
border-bottom-color: var(--tw-prose-td-borders);
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
|
|
985
|
+
border-bottom-width: 0;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
|
|
989
|
+
vertical-align: baseline;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.prose :where(tfoot):not(:where([class~="not-prose"] *)) {
|
|
993
|
+
border-top-width: 1px;
|
|
994
|
+
border-top-color: var(--tw-prose-th-borders);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
|
|
998
|
+
vertical-align: top;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.prose {
|
|
1002
|
+
--tw-prose-body: #374151;
|
|
1003
|
+
--tw-prose-headings: #111827;
|
|
1004
|
+
--tw-prose-lead: #4b5563;
|
|
1005
|
+
--tw-prose-links: #111827;
|
|
1006
|
+
--tw-prose-bold: #111827;
|
|
1007
|
+
--tw-prose-counters: #6b7280;
|
|
1008
|
+
--tw-prose-bullets: #d1d5db;
|
|
1009
|
+
--tw-prose-hr: #e5e7eb;
|
|
1010
|
+
--tw-prose-quotes: #111827;
|
|
1011
|
+
--tw-prose-quote-borders: #e5e7eb;
|
|
1012
|
+
--tw-prose-captions: #6b7280;
|
|
1013
|
+
--tw-prose-code: #111827;
|
|
1014
|
+
--tw-prose-pre-code: #e5e7eb;
|
|
1015
|
+
--tw-prose-pre-bg: #1f2937;
|
|
1016
|
+
--tw-prose-th-borders: #d1d5db;
|
|
1017
|
+
--tw-prose-td-borders: #e5e7eb;
|
|
1018
|
+
--tw-prose-invert-body: #d1d5db;
|
|
1019
|
+
--tw-prose-invert-headings: #fff;
|
|
1020
|
+
--tw-prose-invert-lead: #9ca3af;
|
|
1021
|
+
--tw-prose-invert-links: #fff;
|
|
1022
|
+
--tw-prose-invert-bold: #fff;
|
|
1023
|
+
--tw-prose-invert-counters: #9ca3af;
|
|
1024
|
+
--tw-prose-invert-bullets: #4b5563;
|
|
1025
|
+
--tw-prose-invert-hr: #374151;
|
|
1026
|
+
--tw-prose-invert-quotes: #f3f4f6;
|
|
1027
|
+
--tw-prose-invert-quote-borders: #374151;
|
|
1028
|
+
--tw-prose-invert-captions: #9ca3af;
|
|
1029
|
+
--tw-prose-invert-code: #fff;
|
|
1030
|
+
--tw-prose-invert-pre-code: #d1d5db;
|
|
1031
|
+
--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
|
|
1032
|
+
--tw-prose-invert-th-borders: #4b5563;
|
|
1033
|
+
--tw-prose-invert-td-borders: #374151;
|
|
1034
|
+
font-size: 1rem;
|
|
1035
|
+
line-height: 1.75;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.prose :where(video):not(:where([class~="not-prose"] *)) {
|
|
1039
|
+
margin-top: 2em;
|
|
1040
|
+
margin-bottom: 2em;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.prose :where(figure):not(:where([class~="not-prose"] *)) {
|
|
1044
|
+
margin-top: 2em;
|
|
1045
|
+
margin-bottom: 2em;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.prose :where(li):not(:where([class~="not-prose"] *)) {
|
|
1049
|
+
margin-top: 0.5em;
|
|
1050
|
+
margin-bottom: 0.5em;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.prose :where(li):not(:where([class~="not-prose"] *)) p {
|
|
1054
|
+
margin: 0;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
|
|
1058
|
+
padding-left: 0.375em;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
|
|
1062
|
+
padding-left: 0.375em;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1066
|
+
margin-top: 0.75em;
|
|
1067
|
+
margin-bottom: 0.75em;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1071
|
+
margin-top: 1.25em;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1075
|
+
margin-bottom: 1.25em;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1079
|
+
margin-top: 1.25em;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1083
|
+
margin-bottom: 1.25em;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
|
1087
|
+
margin-top: 0.75em;
|
|
1088
|
+
margin-bottom: 0.75em;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.prose :where(hr + *):not(:where([class~="not-prose"] *)) {
|
|
1092
|
+
margin-top: 0;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
|
|
1096
|
+
margin-top: 0;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
|
|
1100
|
+
margin-top: 0;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
|
|
1104
|
+
margin-top: 0;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
|
|
1108
|
+
padding-left: 0;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
|
|
1112
|
+
padding-right: 0;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
|
|
1116
|
+
padding-top: 0.5714286em;
|
|
1117
|
+
padding-right: 0.5714286em;
|
|
1118
|
+
padding-bottom: 0.5714286em;
|
|
1119
|
+
padding-left: 0.5714286em;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
|
|
1123
|
+
padding-left: 0;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
|
|
1127
|
+
padding-right: 0;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
.prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1131
|
+
margin-top: 0;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1135
|
+
margin-bottom: 0;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.prose-neutral {
|
|
1139
|
+
--tw-prose-body: #404040;
|
|
1140
|
+
--tw-prose-headings: #171717;
|
|
1141
|
+
--tw-prose-lead: #525252;
|
|
1142
|
+
--tw-prose-links: #171717;
|
|
1143
|
+
--tw-prose-bold: #171717;
|
|
1144
|
+
--tw-prose-counters: #737373;
|
|
1145
|
+
--tw-prose-bullets: #d4d4d4;
|
|
1146
|
+
--tw-prose-hr: #e5e5e5;
|
|
1147
|
+
--tw-prose-quotes: #171717;
|
|
1148
|
+
--tw-prose-quote-borders: #e5e5e5;
|
|
1149
|
+
--tw-prose-captions: #737373;
|
|
1150
|
+
--tw-prose-code: #171717;
|
|
1151
|
+
--tw-prose-pre-code: #e5e5e5;
|
|
1152
|
+
--tw-prose-pre-bg: #262626;
|
|
1153
|
+
--tw-prose-th-borders: #d4d4d4;
|
|
1154
|
+
--tw-prose-td-borders: #e5e5e5;
|
|
1155
|
+
--tw-prose-invert-body: #d4d4d4;
|
|
1156
|
+
--tw-prose-invert-headings: #fff;
|
|
1157
|
+
--tw-prose-invert-lead: #a3a3a3;
|
|
1158
|
+
--tw-prose-invert-links: #fff;
|
|
1159
|
+
--tw-prose-invert-bold: #fff;
|
|
1160
|
+
--tw-prose-invert-counters: #a3a3a3;
|
|
1161
|
+
--tw-prose-invert-bullets: #525252;
|
|
1162
|
+
--tw-prose-invert-hr: #404040;
|
|
1163
|
+
--tw-prose-invert-quotes: #f5f5f5;
|
|
1164
|
+
--tw-prose-invert-quote-borders: #404040;
|
|
1165
|
+
--tw-prose-invert-captions: #a3a3a3;
|
|
1166
|
+
--tw-prose-invert-code: #fff;
|
|
1167
|
+
--tw-prose-invert-pre-code: #d4d4d4;
|
|
1168
|
+
--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
|
|
1169
|
+
--tw-prose-invert-th-borders: #525252;
|
|
1170
|
+
--tw-prose-invert-td-borders: #404040;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
676
1173
|
.sr-only {
|
|
677
1174
|
position: absolute;
|
|
678
1175
|
width: 1px;
|
|
@@ -741,6 +1238,10 @@ select {
|
|
|
741
1238
|
left: 0px;
|
|
742
1239
|
}
|
|
743
1240
|
|
|
1241
|
+
.-bottom-\[6px\] {
|
|
1242
|
+
bottom: -6px;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
744
1245
|
.-left-\[9999px\] {
|
|
745
1246
|
left: -9999px;
|
|
746
1247
|
}
|
|
@@ -765,6 +1266,10 @@ select {
|
|
|
765
1266
|
z-index: 50;
|
|
766
1267
|
}
|
|
767
1268
|
|
|
1269
|
+
.col-span-6 {
|
|
1270
|
+
grid-column: span 6 / span 6;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
768
1273
|
.m-0 {
|
|
769
1274
|
margin: 0px;
|
|
770
1275
|
}
|
|
@@ -831,10 +1336,18 @@ select {
|
|
|
831
1336
|
margin-top: 3px;
|
|
832
1337
|
}
|
|
833
1338
|
|
|
1339
|
+
.-mb-\[2px\] {
|
|
1340
|
+
margin-bottom: -2px;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
834
1343
|
.mb-2 {
|
|
835
1344
|
margin-bottom: 0.5rem;
|
|
836
1345
|
}
|
|
837
1346
|
|
|
1347
|
+
.mb-0 {
|
|
1348
|
+
margin-bottom: 0px;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
838
1351
|
.mt-2 {
|
|
839
1352
|
margin-top: 0.5rem;
|
|
840
1353
|
}
|
|
@@ -843,6 +1356,10 @@ select {
|
|
|
843
1356
|
margin-left: 0.25rem;
|
|
844
1357
|
}
|
|
845
1358
|
|
|
1359
|
+
.-mt-1 {
|
|
1360
|
+
margin-top: -0.25rem;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
846
1363
|
.block {
|
|
847
1364
|
display: block;
|
|
848
1365
|
}
|
|
@@ -863,6 +1380,10 @@ select {
|
|
|
863
1380
|
display: table;
|
|
864
1381
|
}
|
|
865
1382
|
|
|
1383
|
+
.grid {
|
|
1384
|
+
display: grid;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
866
1387
|
.contents {
|
|
867
1388
|
display: contents;
|
|
868
1389
|
}
|
|
@@ -923,14 +1444,14 @@ select {
|
|
|
923
1444
|
width: 1.5rem;
|
|
924
1445
|
}
|
|
925
1446
|
|
|
926
|
-
.w-\[96px\] {
|
|
927
|
-
width: 96px;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
1447
|
.w-full {
|
|
931
1448
|
width: 100%;
|
|
932
1449
|
}
|
|
933
1450
|
|
|
1451
|
+
.w-\[96px\] {
|
|
1452
|
+
width: 96px;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
934
1455
|
.w-4 {
|
|
935
1456
|
width: 1rem;
|
|
936
1457
|
}
|
|
@@ -939,6 +1460,10 @@ select {
|
|
|
939
1460
|
width: 8px;
|
|
940
1461
|
}
|
|
941
1462
|
|
|
1463
|
+
.w-8 {
|
|
1464
|
+
width: 2rem;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
942
1467
|
.max-w-screen-xl {
|
|
943
1468
|
max-width: 1280px;
|
|
944
1469
|
}
|
|
@@ -947,10 +1472,18 @@ select {
|
|
|
947
1472
|
max-width: 72rem;
|
|
948
1473
|
}
|
|
949
1474
|
|
|
1475
|
+
.max-w-\[300px\] {
|
|
1476
|
+
max-width: 300px;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
950
1479
|
.max-w-\[2rem\] {
|
|
951
1480
|
max-width: 2rem;
|
|
952
1481
|
}
|
|
953
1482
|
|
|
1483
|
+
.max-w-full {
|
|
1484
|
+
max-width: 100%;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
954
1487
|
.translate-y-2 {
|
|
955
1488
|
--tw-translate-y: 0.5rem;
|
|
956
1489
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1000,6 +1533,10 @@ select {
|
|
|
1000
1533
|
resize: none;
|
|
1001
1534
|
}
|
|
1002
1535
|
|
|
1536
|
+
.grid-cols-6 {
|
|
1537
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1003
1540
|
.items-start {
|
|
1004
1541
|
align-items: flex-start;
|
|
1005
1542
|
}
|
|
@@ -1016,6 +1553,10 @@ select {
|
|
|
1016
1553
|
justify-content: space-between;
|
|
1017
1554
|
}
|
|
1018
1555
|
|
|
1556
|
+
.gap-2 {
|
|
1557
|
+
gap: 0.5rem;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1019
1560
|
.overflow-hidden {
|
|
1020
1561
|
overflow: hidden;
|
|
1021
1562
|
}
|
|
@@ -1028,6 +1569,16 @@ select {
|
|
|
1028
1569
|
overflow-y: visible;
|
|
1029
1570
|
}
|
|
1030
1571
|
|
|
1572
|
+
.truncate {
|
|
1573
|
+
overflow: hidden;
|
|
1574
|
+
text-overflow: ellipsis;
|
|
1575
|
+
white-space: nowrap;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.whitespace-nowrap {
|
|
1579
|
+
white-space: nowrap;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1031
1582
|
.break-words {
|
|
1032
1583
|
overflow-wrap: break-word;
|
|
1033
1584
|
}
|
|
@@ -1065,6 +1616,14 @@ select {
|
|
|
1065
1616
|
border-bottom-width: 1px;
|
|
1066
1617
|
}
|
|
1067
1618
|
|
|
1619
|
+
.border-b-2 {
|
|
1620
|
+
border-bottom-width: 2px;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.border-b-\[3px\] {
|
|
1624
|
+
border-bottom-width: 3px;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1068
1627
|
.border-dashed {
|
|
1069
1628
|
border-style: dashed;
|
|
1070
1629
|
}
|
|
@@ -1099,11 +1658,26 @@ select {
|
|
|
1099
1658
|
border-color: rgb(131 131 131 / var(--tw-border-opacity));
|
|
1100
1659
|
}
|
|
1101
1660
|
|
|
1661
|
+
.border-pzh-purple {
|
|
1662
|
+
--tw-border-opacity: 1;
|
|
1663
|
+
border-color: rgb(80 61 144 / var(--tw-border-opacity));
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1102
1666
|
.border-pzh-blue-dark {
|
|
1103
1667
|
--tw-border-opacity: 1;
|
|
1104
1668
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1105
1669
|
}
|
|
1106
1670
|
|
|
1671
|
+
.border-pzh-gray-400 {
|
|
1672
|
+
--tw-border-opacity: 1;
|
|
1673
|
+
border-color: rgb(173 172 186 / var(--tw-border-opacity));
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.border-pzh-gray-600 {
|
|
1677
|
+
--tw-border-opacity: 1;
|
|
1678
|
+
border-color: rgb(138 136 157 / var(--tw-border-opacity));
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1107
1681
|
.border-opacity-35 {
|
|
1108
1682
|
--tw-border-opacity: 0.35;
|
|
1109
1683
|
}
|
|
@@ -1161,6 +1735,11 @@ select {
|
|
|
1161
1735
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1162
1736
|
}
|
|
1163
1737
|
|
|
1738
|
+
.bg-pzh-gray-100 {
|
|
1739
|
+
--tw-bg-opacity: 1;
|
|
1740
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1164
1743
|
.bg-pzh-gray-200 {
|
|
1165
1744
|
--tw-bg-opacity: 1;
|
|
1166
1745
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
@@ -1190,6 +1769,10 @@ select {
|
|
|
1190
1769
|
padding: 0.5rem;
|
|
1191
1770
|
}
|
|
1192
1771
|
|
|
1772
|
+
.p-4 {
|
|
1773
|
+
padding: 1rem;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1193
1776
|
.px-1\.5 {
|
|
1194
1777
|
padding-left: 0.375rem;
|
|
1195
1778
|
padding-right: 0.375rem;
|
|
@@ -1264,8 +1847,8 @@ select {
|
|
|
1264
1847
|
padding-bottom: 9px;
|
|
1265
1848
|
}
|
|
1266
1849
|
|
|
1267
|
-
.pt-\[
|
|
1268
|
-
padding-top:
|
|
1850
|
+
.pt-\[10px\] {
|
|
1851
|
+
padding-top: 10px;
|
|
1269
1852
|
}
|
|
1270
1853
|
|
|
1271
1854
|
.pt-0 {
|
|
@@ -1376,6 +1959,10 @@ select {
|
|
|
1376
1959
|
line-height: 28px;
|
|
1377
1960
|
}
|
|
1378
1961
|
|
|
1962
|
+
.leading-6 {
|
|
1963
|
+
line-height: 1.5rem;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1379
1966
|
.leading-none {
|
|
1380
1967
|
line-height: 1;
|
|
1381
1968
|
}
|
|
@@ -1415,6 +2002,11 @@ select {
|
|
|
1415
2002
|
color: rgb(131 131 131 / var(--tw-text-opacity));
|
|
1416
2003
|
}
|
|
1417
2004
|
|
|
2005
|
+
.text-pzh-purple {
|
|
2006
|
+
--tw-text-opacity: 1;
|
|
2007
|
+
color: rgb(80 61 144 / var(--tw-text-opacity));
|
|
2008
|
+
}
|
|
2009
|
+
|
|
1418
2010
|
.text-white {
|
|
1419
2011
|
--tw-text-opacity: 1;
|
|
1420
2012
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -1442,6 +2034,10 @@ select {
|
|
|
1442
2034
|
text-decoration-line: underline;
|
|
1443
2035
|
}
|
|
1444
2036
|
|
|
2037
|
+
.decoration-1 {
|
|
2038
|
+
text-decoration-thickness: 1px;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
1445
2041
|
.opacity-0 {
|
|
1446
2042
|
opacity: 0;
|
|
1447
2043
|
}
|
|
@@ -1472,6 +2068,11 @@ select {
|
|
|
1472
2068
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1473
2069
|
}
|
|
1474
2070
|
|
|
2071
|
+
.blur {
|
|
2072
|
+
--tw-blur: blur(8px);
|
|
2073
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2074
|
+
}
|
|
2075
|
+
|
|
1475
2076
|
.filter {
|
|
1476
2077
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1477
2078
|
}
|
|
@@ -1993,6 +2594,16 @@ b {
|
|
|
1993
2594
|
box-shadow: none !important;
|
|
1994
2595
|
}
|
|
1995
2596
|
|
|
2597
|
+
.marker\:text-pzh-blue-dark *::marker {
|
|
2598
|
+
--tw-text-opacity: 1;
|
|
2599
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.marker\:text-pzh-blue-dark::marker {
|
|
2603
|
+
--tw-text-opacity: 1;
|
|
2604
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
2605
|
+
}
|
|
2606
|
+
|
|
1996
2607
|
.hover\:translate-y-0:hover {
|
|
1997
2608
|
--tw-translate-y: 0px;
|
|
1998
2609
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -2040,6 +2651,11 @@ b {
|
|
|
2040
2651
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
2041
2652
|
}
|
|
2042
2653
|
|
|
2654
|
+
.hover\:text-pzh-green:hover {
|
|
2655
|
+
--tw-text-opacity: 1;
|
|
2656
|
+
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2043
2659
|
.hover\:text-pzh-blue:hover {
|
|
2044
2660
|
--tw-text-opacity: 1;
|
|
2045
2661
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
@@ -2050,11 +2666,6 @@ b {
|
|
|
2050
2666
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2051
2667
|
}
|
|
2052
2668
|
|
|
2053
|
-
.hover\:text-pzh-green:hover {
|
|
2054
|
-
--tw-text-opacity: 1;
|
|
2055
|
-
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
2669
|
.hover\:underline:hover {
|
|
2059
2670
|
-webkit-text-decoration-line: underline;
|
|
2060
2671
|
text-decoration-line: underline;
|
|
@@ -2196,6 +2807,14 @@ b {
|
|
|
2196
2807
|
}
|
|
2197
2808
|
|
|
2198
2809
|
@media (min-width: 768px) {
|
|
2810
|
+
.md\:col-span-2 {
|
|
2811
|
+
grid-column: span 2 / span 2;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.md\:col-span-4 {
|
|
2815
|
+
grid-column: span 4 / span 4;
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2199
2818
|
.md\:ml-4 {
|
|
2200
2819
|
margin-left: 1rem;
|
|
2201
2820
|
}
|
|
@@ -2208,6 +2827,10 @@ b {
|
|
|
2208
2827
|
display: none;
|
|
2209
2828
|
}
|
|
2210
2829
|
|
|
2830
|
+
.md\:gap-8 {
|
|
2831
|
+
gap: 2rem;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2211
2834
|
.md\:p-4 {
|
|
2212
2835
|
padding: 1rem;
|
|
2213
2836
|
}
|