@nappr/nappr-styles 0.3.3 → 0.3.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/dist/styles.css +546 -263
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +2 -1
- package/sass/_globals.scss +1 -0
- package/sass/components/_.scss +2 -1
- package/sass/components/_button.scss +53 -21
- package/sass/components/_nav.scss +95 -0
- package/sass/configs/_grid.scss +2 -0
- package/sass/configs/_text.scss +4 -6
- package/sass/core/placeholders/_dimensions.scss +15 -0
- package/sass/elements/_links.scss +112 -1
- package/sass/layout/grid/_columns.scss +2 -2
- package/sass/layout/grid/_gaps.scss +4 -4
- package/sass/layout/grid/_grid.scss +33 -5
- package/sass/layout/grid/_offsets.scss +4 -4
- package/sass/main.scss +2 -2
- package/sass/resets/_nappr.scss +1 -0
- package/sass/utilities/_displays.scss +20 -4
- package/sass/utilities/_flexbox.scss +21 -0
- package/sass/utilities/_floats.scss +0 -2
- package/sass/utilities/_scrolls.scss +11 -0
package/dist/styles.css
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
/*! @nappr/styles v0.3.
|
|
2
|
+
/*! @nappr/styles v0.3.5 | @see https://github.com/sixertoy/nappr-styles.git | @since 2026-06-20 */
|
|
3
3
|
:root{
|
|
4
4
|
--nappr-xl-base:1em;
|
|
5
5
|
--nappr-body-width:100vw;
|
|
6
6
|
--nappr-border-radius:0.25rem;
|
|
7
7
|
--nappr-default-theme:dark-theme;
|
|
8
|
+
--nappr-text-font-size:1rem;
|
|
9
|
+
--nappr-text-font-family:Helvetica, Arial, Verdana, sans-serif;
|
|
10
|
+
--nappr-text-font-family--alt:"Spectral", Georgia, serif;
|
|
11
|
+
--nappr-text-weights-light:300;
|
|
12
|
+
--nappr-text-weights-regular:400;
|
|
13
|
+
--nappr-text-weights-medium:500;
|
|
14
|
+
--nappr-text-weights-bold:700;
|
|
15
|
+
--nappr-text-weight:400;
|
|
16
|
+
--nappr-text-weight--alt:500;
|
|
17
|
+
--nappr-text-line-height:1.5rem;
|
|
18
|
+
--nappr-text-spacing:0 0 1.5rem 0;
|
|
8
19
|
--nappr-palette-black:#000000;
|
|
9
20
|
--nappr-palette-white:#ffffff;
|
|
10
21
|
--nappr-palette-grey:#7f7f7f;
|
|
@@ -57,7 +68,9 @@
|
|
|
57
68
|
--nappr-breakpoint-lg:62em;
|
|
58
69
|
--nappr-breakpoint-xl:78em;
|
|
59
70
|
--nappr-grid-columns:12;
|
|
71
|
+
--nappr-grid-columns-sm:6;
|
|
60
72
|
--nappr-grid-max-width:1200px;
|
|
73
|
+
--nappr-grid-max-width-sm:600px;
|
|
61
74
|
--nappr-grid-gutter-gap-sm:1rem;
|
|
62
75
|
--nappr-grid-gutter-gap-md:1rem;
|
|
63
76
|
--nappr-grid-gutter-gap-lg:1.5rem;
|
|
@@ -358,6 +371,7 @@ html{
|
|
|
358
371
|
}
|
|
359
372
|
|
|
360
373
|
body{
|
|
374
|
+
background-color:var(--nappr-theme-background);
|
|
361
375
|
min-height:100vh;
|
|
362
376
|
text-rendering:optimizespeed;
|
|
363
377
|
width:100vw;
|
|
@@ -512,10 +526,16 @@ fieldset{
|
|
|
512
526
|
width:100%;
|
|
513
527
|
}
|
|
514
528
|
|
|
515
|
-
|
|
529
|
+
[href]{
|
|
530
|
+
color:var(--nappr-theme-text-primary);
|
|
531
|
+
font-size:1rem;
|
|
532
|
+
-webkit-tap-highlight-color:transparent;
|
|
533
|
+
text-decoration:none;
|
|
534
|
+
}
|
|
535
|
+
[href]:active,[href]:link,[href]:visited{
|
|
516
536
|
text-decoration:none;
|
|
517
537
|
}
|
|
518
|
-
|
|
538
|
+
[href]:hover{
|
|
519
539
|
text-decoration:underline;
|
|
520
540
|
}
|
|
521
541
|
dl,ol,ul{
|
|
@@ -557,18 +577,28 @@ table caption{
|
|
|
557
577
|
caption-side:top;
|
|
558
578
|
}
|
|
559
579
|
|
|
560
|
-
.is-
|
|
580
|
+
.is-layout,.is-layout-width,.scrollbox,.scrollbox-x,.scrollbox-y{
|
|
561
581
|
max-width:100%;
|
|
562
582
|
min-width:100%;
|
|
563
583
|
width:100%;
|
|
564
584
|
}
|
|
565
585
|
|
|
566
|
-
.is-
|
|
586
|
+
.is-layout,.is-layout-height,.scrollbox,.scrollbox-x,.scrollbox-y{
|
|
567
587
|
height:100%;
|
|
568
588
|
max-height:100%;
|
|
569
589
|
min-height:100%;
|
|
570
590
|
}
|
|
571
591
|
|
|
592
|
+
.is-viewport,.is-viewport-height{
|
|
593
|
+
height:100vh;
|
|
594
|
+
height:100dvh;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.is-viewport,.is-viewport-width{
|
|
598
|
+
width:100vw;
|
|
599
|
+
width:100dvw;
|
|
600
|
+
}
|
|
601
|
+
|
|
572
602
|
.flex-columns,.flex-rows,.flex-wrapper,.wrap-1,.wrap-2,.wrap-3,.wrap-4,.wrap-5{
|
|
573
603
|
display:flex;
|
|
574
604
|
flex:1;
|
|
@@ -635,19 +665,30 @@ h6{
|
|
|
635
665
|
font-size:1.125rem;
|
|
636
666
|
line-height:1.625rem;
|
|
637
667
|
}
|
|
638
|
-
.grid,.grid--fluid{
|
|
668
|
+
.grid,.grid--fluid,.grid-sm,.grid-sm--fluid{
|
|
639
669
|
display:grid;
|
|
640
670
|
gap:1rem;
|
|
641
|
-
grid-template-columns:repeat(12, 1fr);
|
|
642
671
|
width:100%;
|
|
643
672
|
}
|
|
644
673
|
|
|
674
|
+
.grid--fluid,.grid-sm--fluid{
|
|
675
|
+
max-width:none;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.grid,.grid--fluid{
|
|
679
|
+
grid-template-columns:repeat(12, 1fr);
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.grid-sm,.grid-sm--fluid{
|
|
683
|
+
grid-template-columns:repeat(6, 1fr);
|
|
684
|
+
}
|
|
685
|
+
|
|
645
686
|
.grid{
|
|
646
687
|
max-width:1200px;
|
|
647
688
|
}
|
|
648
689
|
|
|
649
|
-
.grid
|
|
650
|
-
max-width:
|
|
690
|
+
.grid-sm{
|
|
691
|
+
max-width:600px;
|
|
651
692
|
}
|
|
652
693
|
|
|
653
694
|
.grid-items-top{
|
|
@@ -802,209 +843,388 @@ h6{
|
|
|
802
843
|
place-self:stretch;
|
|
803
844
|
}
|
|
804
845
|
|
|
805
|
-
.grid
|
|
846
|
+
.grid-col-1{
|
|
806
847
|
grid-column:span 1;
|
|
807
848
|
}
|
|
808
849
|
|
|
809
|
-
.grid
|
|
850
|
+
.grid-col-2{
|
|
810
851
|
grid-column:span 2;
|
|
811
852
|
}
|
|
812
853
|
|
|
813
|
-
.grid
|
|
854
|
+
.grid-col-3{
|
|
814
855
|
grid-column:span 3;
|
|
815
856
|
}
|
|
816
857
|
|
|
817
|
-
.grid
|
|
858
|
+
.grid-col-4{
|
|
818
859
|
grid-column:span 4;
|
|
819
860
|
}
|
|
820
861
|
|
|
821
|
-
.grid
|
|
862
|
+
.grid-col-5{
|
|
822
863
|
grid-column:span 5;
|
|
823
864
|
}
|
|
824
865
|
|
|
825
|
-
.grid
|
|
866
|
+
.grid-col-6{
|
|
826
867
|
grid-column:span 6;
|
|
827
868
|
}
|
|
828
869
|
|
|
829
|
-
.grid
|
|
870
|
+
.grid-col-7{
|
|
830
871
|
grid-column:span 7;
|
|
831
872
|
}
|
|
832
873
|
|
|
833
|
-
.grid
|
|
874
|
+
.grid-col-8{
|
|
834
875
|
grid-column:span 8;
|
|
835
876
|
}
|
|
836
877
|
|
|
837
|
-
.grid
|
|
878
|
+
.grid-col-9{
|
|
838
879
|
grid-column:span 9;
|
|
839
880
|
}
|
|
840
881
|
|
|
841
|
-
.grid
|
|
882
|
+
.grid-col-10{
|
|
842
883
|
grid-column:span 10;
|
|
843
884
|
}
|
|
844
885
|
|
|
845
|
-
.grid
|
|
886
|
+
.grid-col-11{
|
|
846
887
|
grid-column:span 11;
|
|
847
888
|
}
|
|
848
889
|
|
|
849
|
-
.grid
|
|
890
|
+
.grid-col-12{
|
|
850
891
|
grid-column:span 12;
|
|
851
892
|
}
|
|
852
893
|
|
|
853
|
-
.grid
|
|
894
|
+
.grid-cols-1{
|
|
854
895
|
grid-template-columns:repeat(1, 1fr);
|
|
855
896
|
}
|
|
856
897
|
|
|
857
|
-
.grid
|
|
898
|
+
.grid-cols-2{
|
|
858
899
|
grid-template-columns:repeat(2, 1fr);
|
|
859
900
|
}
|
|
860
901
|
|
|
861
|
-
.grid
|
|
902
|
+
.grid-cols-3{
|
|
862
903
|
grid-template-columns:repeat(3, 1fr);
|
|
863
904
|
}
|
|
864
905
|
|
|
865
|
-
.grid
|
|
906
|
+
.grid-cols-4{
|
|
866
907
|
grid-template-columns:repeat(4, 1fr);
|
|
867
908
|
}
|
|
868
909
|
|
|
869
|
-
.grid
|
|
910
|
+
.grid-cols-5{
|
|
870
911
|
grid-template-columns:repeat(5, 1fr);
|
|
871
912
|
}
|
|
872
913
|
|
|
873
|
-
.grid
|
|
914
|
+
.grid-cols-6{
|
|
874
915
|
grid-template-columns:repeat(6, 1fr);
|
|
875
916
|
}
|
|
876
917
|
|
|
877
|
-
.grid
|
|
918
|
+
.grid-cols-7{
|
|
878
919
|
grid-template-columns:repeat(7, 1fr);
|
|
879
920
|
}
|
|
880
921
|
|
|
881
|
-
.grid
|
|
922
|
+
.grid-cols-8{
|
|
882
923
|
grid-template-columns:repeat(8, 1fr);
|
|
883
924
|
}
|
|
884
925
|
|
|
885
|
-
.grid
|
|
926
|
+
.grid-cols-9{
|
|
886
927
|
grid-template-columns:repeat(9, 1fr);
|
|
887
928
|
}
|
|
888
929
|
|
|
889
|
-
.grid
|
|
930
|
+
.grid-cols-10{
|
|
890
931
|
grid-template-columns:repeat(10, 1fr);
|
|
891
932
|
}
|
|
892
933
|
|
|
893
|
-
.grid
|
|
934
|
+
.grid-cols-11{
|
|
894
935
|
grid-template-columns:repeat(11, 1fr);
|
|
895
936
|
}
|
|
896
937
|
|
|
897
|
-
.grid
|
|
938
|
+
.grid-cols-12{
|
|
898
939
|
grid-template-columns:repeat(12, 1fr);
|
|
899
940
|
}
|
|
900
|
-
.grid
|
|
941
|
+
.grid-gap{
|
|
901
942
|
gap:var(--nappr-grid-gutter-gap-md, 1rem);
|
|
902
943
|
}
|
|
903
944
|
.grid--no-gap{
|
|
904
945
|
gap:0;
|
|
905
946
|
}
|
|
906
|
-
.grid
|
|
947
|
+
.grid-col-offset-0{
|
|
907
948
|
grid-column-start:1;
|
|
908
949
|
}
|
|
909
950
|
|
|
910
|
-
.grid
|
|
951
|
+
.grid-col-offset-1{
|
|
911
952
|
grid-column-start:2;
|
|
912
953
|
}
|
|
913
954
|
|
|
914
|
-
.grid
|
|
955
|
+
.grid-col-offset-2{
|
|
915
956
|
grid-column-start:3;
|
|
916
957
|
}
|
|
917
958
|
|
|
918
|
-
.grid
|
|
959
|
+
.grid-col-offset-3{
|
|
919
960
|
grid-column-start:4;
|
|
920
961
|
}
|
|
921
962
|
|
|
922
|
-
.grid
|
|
963
|
+
.grid-col-offset-4{
|
|
923
964
|
grid-column-start:5;
|
|
924
965
|
}
|
|
925
966
|
|
|
926
|
-
.grid
|
|
967
|
+
.grid-col-offset-5{
|
|
927
968
|
grid-column-start:6;
|
|
928
969
|
}
|
|
929
970
|
|
|
930
|
-
.grid
|
|
971
|
+
.grid-col-offset-6{
|
|
931
972
|
grid-column-start:7;
|
|
932
973
|
}
|
|
933
974
|
|
|
934
|
-
.grid
|
|
975
|
+
.grid-col-offset-7{
|
|
935
976
|
grid-column-start:8;
|
|
936
977
|
}
|
|
937
978
|
|
|
938
|
-
.grid
|
|
979
|
+
.grid-col-offset-8{
|
|
939
980
|
grid-column-start:9;
|
|
940
981
|
}
|
|
941
982
|
|
|
942
|
-
.grid
|
|
983
|
+
.grid-col-offset-9{
|
|
943
984
|
grid-column-start:10;
|
|
944
985
|
}
|
|
945
986
|
|
|
946
|
-
.grid
|
|
987
|
+
.grid-col-offset-10{
|
|
947
988
|
grid-column-start:11;
|
|
948
989
|
}
|
|
949
990
|
|
|
950
|
-
.grid
|
|
991
|
+
.grid-col-offset-11{
|
|
951
992
|
grid-column-start:12;
|
|
952
993
|
}
|
|
953
994
|
|
|
954
|
-
.grid
|
|
995
|
+
.grid-col-offset-12{
|
|
955
996
|
grid-column-start:13;
|
|
956
997
|
}
|
|
957
|
-
.grid--
|
|
998
|
+
.grid-col--offset-0__right{
|
|
958
999
|
grid-column-end:1;
|
|
959
1000
|
}
|
|
960
1001
|
|
|
961
|
-
.grid--
|
|
1002
|
+
.grid-col--offset-1__right{
|
|
962
1003
|
grid-column-end:2;
|
|
963
1004
|
}
|
|
964
1005
|
|
|
965
|
-
.grid--
|
|
1006
|
+
.grid-col--offset-2__right{
|
|
966
1007
|
grid-column-end:3;
|
|
967
1008
|
}
|
|
968
1009
|
|
|
969
|
-
.grid--
|
|
1010
|
+
.grid-col--offset-3__right{
|
|
970
1011
|
grid-column-end:4;
|
|
971
1012
|
}
|
|
972
1013
|
|
|
973
|
-
.grid--
|
|
1014
|
+
.grid-col--offset-4__right{
|
|
974
1015
|
grid-column-end:5;
|
|
975
1016
|
}
|
|
976
1017
|
|
|
977
|
-
.grid--
|
|
1018
|
+
.grid-col--offset-5__right{
|
|
978
1019
|
grid-column-end:6;
|
|
979
1020
|
}
|
|
980
1021
|
|
|
981
|
-
.grid--
|
|
1022
|
+
.grid-col--offset-6__right{
|
|
982
1023
|
grid-column-end:7;
|
|
983
1024
|
}
|
|
984
1025
|
|
|
985
|
-
.grid--
|
|
1026
|
+
.grid-col--offset-7__right{
|
|
986
1027
|
grid-column-end:8;
|
|
987
1028
|
}
|
|
988
1029
|
|
|
989
|
-
.grid--
|
|
1030
|
+
.grid-col--offset-8__right{
|
|
990
1031
|
grid-column-end:9;
|
|
991
1032
|
}
|
|
992
1033
|
|
|
993
|
-
.grid--
|
|
1034
|
+
.grid-col--offset-9__right{
|
|
994
1035
|
grid-column-end:10;
|
|
995
1036
|
}
|
|
996
1037
|
|
|
997
|
-
.grid--
|
|
1038
|
+
.grid-col--offset-10__right{
|
|
998
1039
|
grid-column-end:11;
|
|
999
1040
|
}
|
|
1000
1041
|
|
|
1001
|
-
.grid--
|
|
1042
|
+
.grid-col--offset-11__right{
|
|
1002
1043
|
grid-column-end:12;
|
|
1003
1044
|
}
|
|
1004
1045
|
|
|
1005
|
-
.grid--
|
|
1046
|
+
.grid-col--offset-12__right{
|
|
1006
1047
|
grid-column-end:13;
|
|
1007
1048
|
}
|
|
1049
|
+
.btn{
|
|
1050
|
+
align-items:center;
|
|
1051
|
+
border:0;
|
|
1052
|
+
border-radius:.25rem;
|
|
1053
|
+
cursor:pointer;
|
|
1054
|
+
display:inline-flex;
|
|
1055
|
+
font-family:inherit;
|
|
1056
|
+
font-size:1rem;
|
|
1057
|
+
font-weight:500;
|
|
1058
|
+
gap:.5rem;
|
|
1059
|
+
justify-content:center;
|
|
1060
|
+
line-height:1.2;
|
|
1061
|
+
padding:.75rem 1rem;
|
|
1062
|
+
text-align:center;
|
|
1063
|
+
text-decoration:none;
|
|
1064
|
+
user-select:none;
|
|
1065
|
+
vertical-align:middle;
|
|
1066
|
+
white-space:nowrap;
|
|
1067
|
+
}
|
|
1068
|
+
.btn--rounded.btn{
|
|
1069
|
+
border-radius:9999px;
|
|
1070
|
+
}
|
|
1071
|
+
.btn:focus-visible{
|
|
1072
|
+
outline:2px solid var(--nappr-theme-accent);
|
|
1073
|
+
outline-offset:2px;
|
|
1074
|
+
}
|
|
1075
|
+
.btn--no-outline.btn:focus-visible{
|
|
1076
|
+
outline:none;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.btn.disabled,.btn:disabled{
|
|
1080
|
+
cursor:not-allowed;
|
|
1081
|
+
opacity:.65;
|
|
1082
|
+
pointer-events:none;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.btns-group,.btns-group--inline{
|
|
1086
|
+
align-items:center;
|
|
1087
|
+
display:flex;
|
|
1088
|
+
flex-direction:column;
|
|
1089
|
+
gap:.5rem;
|
|
1090
|
+
justify-content:center;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.btn{
|
|
1094
|
+
transition:background-color .15s ease-in-out,border-color .15s ease-in-out,color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
1095
|
+
}
|
|
1096
|
+
.btn .icon{
|
|
1097
|
+
align-items:center;
|
|
1098
|
+
display:inline-flex;
|
|
1099
|
+
flex-shrink:0;
|
|
1100
|
+
justify-content:center;
|
|
1101
|
+
}
|
|
1102
|
+
.btn.btn--icon-only{
|
|
1103
|
+
aspect-ratio:1;
|
|
1104
|
+
}
|
|
1105
|
+
.btn.btn--icon-only .icon{
|
|
1106
|
+
margin:0;
|
|
1107
|
+
}
|
|
1108
|
+
.btn.btn--icon-left .icon{
|
|
1109
|
+
order:-1;
|
|
1110
|
+
}
|
|
1111
|
+
.btn.btn--icon-right .icon{
|
|
1112
|
+
order:1;
|
|
1113
|
+
}
|
|
1114
|
+
.btn:not(:disabled,.disabled):hover{
|
|
1115
|
+
text-decoration:none;
|
|
1116
|
+
}
|
|
1117
|
+
.btn,.btn--primary{
|
|
1118
|
+
background-color:var(--nappr-theme-accent);
|
|
1119
|
+
border:0;
|
|
1120
|
+
color:var(--nappr-theme-text-primary);
|
|
1121
|
+
}
|
|
1122
|
+
.btn--primary:not(:disabled,.disabled):hover,.btn:not(:disabled,.disabled):hover{
|
|
1123
|
+
background-color:color-mix(in srgb, var(--nappr-theme-accent) 90%, black 10%);
|
|
1124
|
+
}
|
|
1125
|
+
.btn--primary:not(:disabled,.disabled):active,.btn:not(:disabled,.disabled):active{
|
|
1126
|
+
background-color:color-mix(in srgb, var(--nappr-theme-accent) 85%, black 15%);
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.btn--secondary{
|
|
1130
|
+
background-color:transparent;
|
|
1131
|
+
border:1px solid var(--nappr-theme-accent);
|
|
1132
|
+
color:var(--nappr-theme-accent);
|
|
1133
|
+
}
|
|
1134
|
+
.btn--secondary:not(:disabled,.disabled):hover{
|
|
1135
|
+
background-color:var(--nappr-theme-accent);
|
|
1136
|
+
color:var(--nappr-theme-text-primary);
|
|
1137
|
+
}
|
|
1138
|
+
.btn--secondary:not(:disabled,.disabled):active{
|
|
1139
|
+
background-color:color-mix(in srgb, var(--nappr-theme-accent) 90%, black 10%);
|
|
1140
|
+
border-color:color-mix(in srgb, var(--nappr-theme-accent) 90%, black 10%);
|
|
1141
|
+
color:var(--nappr-theme-text-primary);
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.btn--tertiary{
|
|
1145
|
+
background-color:transparent;
|
|
1146
|
+
border:1px solid var(--nappr-theme-accent);
|
|
1147
|
+
color:var(--nappr-theme-accent);
|
|
1148
|
+
}
|
|
1149
|
+
.btn--tertiary:not(:disabled,.disabled):hover{
|
|
1150
|
+
background-color:var(--nappr-theme-accent);
|
|
1151
|
+
border-color:var(--nappr-theme-accent);
|
|
1152
|
+
color:var(--nappr-theme-text-primary);
|
|
1153
|
+
}
|
|
1154
|
+
.btn--tertiary:not(:disabled,.disabled):active{
|
|
1155
|
+
background-color:color-mix(in srgb, var(--nappr-theme-accent) 90%, black 10%);
|
|
1156
|
+
border-color:color-mix(in srgb, var(--nappr-theme-accent) 90%, black 10%);
|
|
1157
|
+
color:var(--nappr-theme-text-primary);
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.btns-group>*{
|
|
1161
|
+
width:100%;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.btns-group--inline{
|
|
1165
|
+
flex-direction:row;
|
|
1166
|
+
}
|
|
1167
|
+
.btns-group--inline>*{
|
|
1168
|
+
width:auto;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.nav .nav__list,.navbar .nav__list{
|
|
1172
|
+
display:flex;
|
|
1173
|
+
flex-direction:column;
|
|
1174
|
+
list-style-type:none;
|
|
1175
|
+
margin:0;
|
|
1176
|
+
margin-block:0;
|
|
1177
|
+
padding:0;
|
|
1178
|
+
padding-inline-start:0;
|
|
1179
|
+
}
|
|
1180
|
+
.nav .nav__item,.navbar .nav__item{
|
|
1181
|
+
align-items:stretch;
|
|
1182
|
+
display:flex;
|
|
1183
|
+
flex:0 1 auto;
|
|
1184
|
+
flex-direction:column;
|
|
1185
|
+
padding-bottom:0;
|
|
1186
|
+
position:relative;
|
|
1187
|
+
}
|
|
1188
|
+
.nav .nav__btn,.nav .nav__link,.navbar .nav__btn,.navbar .nav__link{
|
|
1189
|
+
align-items:center;
|
|
1190
|
+
color:var(--nappr-theme-text-primary);
|
|
1191
|
+
display:flex;
|
|
1192
|
+
flex-direction:row;
|
|
1193
|
+
font-size:1rem;
|
|
1194
|
+
font-weight:700;
|
|
1195
|
+
height:100%;
|
|
1196
|
+
justify-content:space-between;
|
|
1197
|
+
line-height:1.5rem;
|
|
1198
|
+
margin:0;
|
|
1199
|
+
padding:.75rem 1rem;
|
|
1200
|
+
text-align:left;
|
|
1201
|
+
text-decoration:none;
|
|
1202
|
+
width:100%;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.navbar{
|
|
1206
|
+
justify-content:flex-start;
|
|
1207
|
+
}
|
|
1208
|
+
.navbar .nav__list{
|
|
1209
|
+
flex-flow:row nowrap;
|
|
1210
|
+
gap:1rem;
|
|
1211
|
+
margin:0 -1rem;
|
|
1212
|
+
max-width:calc(100% + 1rem);
|
|
1213
|
+
}
|
|
1214
|
+
.navbar .nav__item{
|
|
1215
|
+
align-items:flex-start;
|
|
1216
|
+
flex:1 1 0%;
|
|
1217
|
+
position:static;
|
|
1218
|
+
}
|
|
1219
|
+
.navbar .nav__btn,.navbar .nav__link{
|
|
1220
|
+
font-size:.875rem;
|
|
1221
|
+
font-weight:400;
|
|
1222
|
+
justify-content:center;
|
|
1223
|
+
line-height:1.5rem;
|
|
1224
|
+
min-height:3.5rem;
|
|
1225
|
+
padding:1rem;
|
|
1226
|
+
text-align:center;
|
|
1227
|
+
}
|
|
1008
1228
|
.nappr-w-0{
|
|
1009
1229
|
width:0;
|
|
1010
1230
|
}
|
|
@@ -1335,9 +1555,46 @@ h6{
|
|
|
1335
1555
|
align-self:baseline;
|
|
1336
1556
|
}
|
|
1337
1557
|
|
|
1338
|
-
.
|
|
1339
|
-
|
|
1558
|
+
.gap-3v{
|
|
1559
|
+
gap:3rem;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.gap-4v{
|
|
1563
|
+
gap:4rem;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.gap-5v{
|
|
1567
|
+
gap:5rem;
|
|
1340
1568
|
}
|
|
1569
|
+
|
|
1570
|
+
.gap-6v{
|
|
1571
|
+
gap:6rem;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.gap-0v{
|
|
1575
|
+
gap:0;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.gap-0-75v{
|
|
1579
|
+
gap:.75rem;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
.gap-1v{
|
|
1583
|
+
gap:1rem;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.gap-1-5v{
|
|
1587
|
+
gap:1.5rem;
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
.gap-2v{
|
|
1591
|
+
gap:2rem;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.gap-2-5v{
|
|
1595
|
+
gap:2.5rem;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1341
1598
|
.clearfix:after,.clearfix:before{
|
|
1342
1599
|
content:".";
|
|
1343
1600
|
display:block;
|
|
@@ -1572,6 +1829,11 @@ h6{
|
|
|
1572
1829
|
cursor:default;
|
|
1573
1830
|
}
|
|
1574
1831
|
|
|
1832
|
+
.scroll-x-auto,.scroll-y-auto,.scrollbox,.scrollbox-x,.scrollbox-y{
|
|
1833
|
+
-webkit-overflow-scrolling:touch;
|
|
1834
|
+
overscroll-behavior:contain;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1575
1837
|
.scrollbox,.scrollbox-x,.scrollbox-y{
|
|
1576
1838
|
overflow:auto;
|
|
1577
1839
|
}
|
|
@@ -4603,76 +4865,76 @@ body{
|
|
|
4603
4865
|
}
|
|
4604
4866
|
|
|
4605
4867
|
@media (min-width:36em){
|
|
4606
|
-
.grid-sm
|
|
4868
|
+
.grid-sm-col-1{
|
|
4607
4869
|
grid-column:span 1;
|
|
4608
4870
|
}
|
|
4609
|
-
.grid-sm
|
|
4871
|
+
.grid-sm-col-2{
|
|
4610
4872
|
grid-column:span 2;
|
|
4611
4873
|
}
|
|
4612
|
-
.grid-sm
|
|
4874
|
+
.grid-sm-col-3{
|
|
4613
4875
|
grid-column:span 3;
|
|
4614
4876
|
}
|
|
4615
|
-
.grid-sm
|
|
4877
|
+
.grid-sm-col-4{
|
|
4616
4878
|
grid-column:span 4;
|
|
4617
4879
|
}
|
|
4618
|
-
.grid-sm
|
|
4880
|
+
.grid-sm-col-5{
|
|
4619
4881
|
grid-column:span 5;
|
|
4620
4882
|
}
|
|
4621
|
-
.grid-sm
|
|
4883
|
+
.grid-sm-col-6{
|
|
4622
4884
|
grid-column:span 6;
|
|
4623
4885
|
}
|
|
4624
|
-
.grid-sm
|
|
4886
|
+
.grid-sm-col-7{
|
|
4625
4887
|
grid-column:span 7;
|
|
4626
4888
|
}
|
|
4627
|
-
.grid-sm
|
|
4889
|
+
.grid-sm-col-8{
|
|
4628
4890
|
grid-column:span 8;
|
|
4629
4891
|
}
|
|
4630
|
-
.grid-sm
|
|
4892
|
+
.grid-sm-col-9{
|
|
4631
4893
|
grid-column:span 9;
|
|
4632
4894
|
}
|
|
4633
|
-
.grid-sm
|
|
4895
|
+
.grid-sm-col-10{
|
|
4634
4896
|
grid-column:span 10;
|
|
4635
4897
|
}
|
|
4636
|
-
.grid-sm
|
|
4898
|
+
.grid-sm-col-11{
|
|
4637
4899
|
grid-column:span 11;
|
|
4638
4900
|
}
|
|
4639
|
-
.grid-sm
|
|
4901
|
+
.grid-sm-col-12{
|
|
4640
4902
|
grid-column:span 12;
|
|
4641
4903
|
}
|
|
4642
|
-
.grid-sm
|
|
4904
|
+
.grid-sm-cols-1{
|
|
4643
4905
|
grid-template-columns:repeat(1, 1fr);
|
|
4644
4906
|
}
|
|
4645
|
-
.grid-sm
|
|
4907
|
+
.grid-sm-cols-2{
|
|
4646
4908
|
grid-template-columns:repeat(2, 1fr);
|
|
4647
4909
|
}
|
|
4648
|
-
.grid-sm
|
|
4910
|
+
.grid-sm-cols-3{
|
|
4649
4911
|
grid-template-columns:repeat(3, 1fr);
|
|
4650
4912
|
}
|
|
4651
|
-
.grid-sm
|
|
4913
|
+
.grid-sm-cols-4{
|
|
4652
4914
|
grid-template-columns:repeat(4, 1fr);
|
|
4653
4915
|
}
|
|
4654
|
-
.grid-sm
|
|
4916
|
+
.grid-sm-cols-5{
|
|
4655
4917
|
grid-template-columns:repeat(5, 1fr);
|
|
4656
4918
|
}
|
|
4657
|
-
.grid-sm
|
|
4919
|
+
.grid-sm-cols-6{
|
|
4658
4920
|
grid-template-columns:repeat(6, 1fr);
|
|
4659
4921
|
}
|
|
4660
|
-
.grid-sm
|
|
4922
|
+
.grid-sm-cols-7{
|
|
4661
4923
|
grid-template-columns:repeat(7, 1fr);
|
|
4662
4924
|
}
|
|
4663
|
-
.grid-sm
|
|
4925
|
+
.grid-sm-cols-8{
|
|
4664
4926
|
grid-template-columns:repeat(8, 1fr);
|
|
4665
4927
|
}
|
|
4666
|
-
.grid-sm
|
|
4928
|
+
.grid-sm-cols-9{
|
|
4667
4929
|
grid-template-columns:repeat(9, 1fr);
|
|
4668
4930
|
}
|
|
4669
|
-
.grid-sm
|
|
4931
|
+
.grid-sm-cols-10{
|
|
4670
4932
|
grid-template-columns:repeat(10, 1fr);
|
|
4671
4933
|
}
|
|
4672
|
-
.grid-sm
|
|
4934
|
+
.grid-sm-cols-11{
|
|
4673
4935
|
grid-template-columns:repeat(11, 1fr);
|
|
4674
4936
|
}
|
|
4675
|
-
.grid-sm
|
|
4937
|
+
.grid-sm-cols-12{
|
|
4676
4938
|
grid-template-columns:repeat(12, 1fr);
|
|
4677
4939
|
}
|
|
4678
4940
|
.grid-sm--gap{
|
|
@@ -4681,82 +4943,82 @@ body{
|
|
|
4681
4943
|
.grid-sm--no-gap{
|
|
4682
4944
|
gap:0;
|
|
4683
4945
|
}
|
|
4684
|
-
.grid-sm--
|
|
4946
|
+
.grid-sm-col--offset-0{
|
|
4685
4947
|
grid-column-start:1;
|
|
4686
4948
|
}
|
|
4687
|
-
.grid-sm--
|
|
4949
|
+
.grid-sm-col--offset-1{
|
|
4688
4950
|
grid-column-start:2;
|
|
4689
4951
|
}
|
|
4690
|
-
.grid-sm--
|
|
4952
|
+
.grid-sm-col--offset-2{
|
|
4691
4953
|
grid-column-start:3;
|
|
4692
4954
|
}
|
|
4693
|
-
.grid-sm--
|
|
4955
|
+
.grid-sm-col--offset-3{
|
|
4694
4956
|
grid-column-start:4;
|
|
4695
4957
|
}
|
|
4696
|
-
.grid-sm--
|
|
4958
|
+
.grid-sm-col--offset-4{
|
|
4697
4959
|
grid-column-start:5;
|
|
4698
4960
|
}
|
|
4699
|
-
.grid-sm--
|
|
4961
|
+
.grid-sm-col--offset-5{
|
|
4700
4962
|
grid-column-start:6;
|
|
4701
4963
|
}
|
|
4702
|
-
.grid-sm--
|
|
4964
|
+
.grid-sm-col--offset-6{
|
|
4703
4965
|
grid-column-start:7;
|
|
4704
4966
|
}
|
|
4705
|
-
.grid-sm--
|
|
4967
|
+
.grid-sm-col--offset-7{
|
|
4706
4968
|
grid-column-start:8;
|
|
4707
4969
|
}
|
|
4708
|
-
.grid-sm--
|
|
4970
|
+
.grid-sm-col--offset-8{
|
|
4709
4971
|
grid-column-start:9;
|
|
4710
4972
|
}
|
|
4711
|
-
.grid-sm--
|
|
4973
|
+
.grid-sm-col--offset-9{
|
|
4712
4974
|
grid-column-start:10;
|
|
4713
4975
|
}
|
|
4714
|
-
.grid-sm--
|
|
4976
|
+
.grid-sm-col--offset-10{
|
|
4715
4977
|
grid-column-start:11;
|
|
4716
4978
|
}
|
|
4717
|
-
.grid-sm--
|
|
4979
|
+
.grid-sm-col--offset-11{
|
|
4718
4980
|
grid-column-start:12;
|
|
4719
4981
|
}
|
|
4720
|
-
.grid-sm--
|
|
4982
|
+
.grid-sm-col--offset-12{
|
|
4721
4983
|
grid-column-start:13;
|
|
4722
4984
|
}
|
|
4723
|
-
.grid-sm--
|
|
4985
|
+
.grid-sm-col--offset-0__right{
|
|
4724
4986
|
grid-column-end:1;
|
|
4725
4987
|
}
|
|
4726
|
-
.grid-sm--
|
|
4988
|
+
.grid-sm-col--offset-1__right{
|
|
4727
4989
|
grid-column-end:2;
|
|
4728
4990
|
}
|
|
4729
|
-
.grid-sm--
|
|
4991
|
+
.grid-sm-col--offset-2__right{
|
|
4730
4992
|
grid-column-end:3;
|
|
4731
4993
|
}
|
|
4732
|
-
.grid-sm--
|
|
4994
|
+
.grid-sm-col--offset-3__right{
|
|
4733
4995
|
grid-column-end:4;
|
|
4734
4996
|
}
|
|
4735
|
-
.grid-sm--
|
|
4997
|
+
.grid-sm-col--offset-4__right{
|
|
4736
4998
|
grid-column-end:5;
|
|
4737
4999
|
}
|
|
4738
|
-
.grid-sm--
|
|
5000
|
+
.grid-sm-col--offset-5__right{
|
|
4739
5001
|
grid-column-end:6;
|
|
4740
5002
|
}
|
|
4741
|
-
.grid-sm--
|
|
5003
|
+
.grid-sm-col--offset-6__right{
|
|
4742
5004
|
grid-column-end:7;
|
|
4743
5005
|
}
|
|
4744
|
-
.grid-sm--
|
|
5006
|
+
.grid-sm-col--offset-7__right{
|
|
4745
5007
|
grid-column-end:8;
|
|
4746
5008
|
}
|
|
4747
|
-
.grid-sm--
|
|
5009
|
+
.grid-sm-col--offset-8__right{
|
|
4748
5010
|
grid-column-end:9;
|
|
4749
5011
|
}
|
|
4750
|
-
.grid-sm--
|
|
5012
|
+
.grid-sm-col--offset-9__right{
|
|
4751
5013
|
grid-column-end:10;
|
|
4752
5014
|
}
|
|
4753
|
-
.grid-sm--
|
|
5015
|
+
.grid-sm-col--offset-10__right{
|
|
4754
5016
|
grid-column-end:11;
|
|
4755
5017
|
}
|
|
4756
|
-
.grid-sm--
|
|
5018
|
+
.grid-sm-col--offset-11__right{
|
|
4757
5019
|
grid-column-end:12;
|
|
4758
5020
|
}
|
|
4759
|
-
.grid-sm--
|
|
5021
|
+
.grid-sm-col--offset-12__right{
|
|
4760
5022
|
grid-column-end:13;
|
|
4761
5023
|
}
|
|
4762
5024
|
.is-hidden-sm{
|
|
@@ -4780,76 +5042,76 @@ body{
|
|
|
4780
5042
|
}}
|
|
4781
5043
|
|
|
4782
5044
|
@media (min-width:48em){
|
|
4783
|
-
.grid-md
|
|
5045
|
+
.grid-md-col-1{
|
|
4784
5046
|
grid-column:span 1;
|
|
4785
5047
|
}
|
|
4786
|
-
.grid-md
|
|
5048
|
+
.grid-md-col-2{
|
|
4787
5049
|
grid-column:span 2;
|
|
4788
5050
|
}
|
|
4789
|
-
.grid-md
|
|
5051
|
+
.grid-md-col-3{
|
|
4790
5052
|
grid-column:span 3;
|
|
4791
5053
|
}
|
|
4792
|
-
.grid-md
|
|
5054
|
+
.grid-md-col-4{
|
|
4793
5055
|
grid-column:span 4;
|
|
4794
5056
|
}
|
|
4795
|
-
.grid-md
|
|
5057
|
+
.grid-md-col-5{
|
|
4796
5058
|
grid-column:span 5;
|
|
4797
5059
|
}
|
|
4798
|
-
.grid-md
|
|
5060
|
+
.grid-md-col-6{
|
|
4799
5061
|
grid-column:span 6;
|
|
4800
5062
|
}
|
|
4801
|
-
.grid-md
|
|
5063
|
+
.grid-md-col-7{
|
|
4802
5064
|
grid-column:span 7;
|
|
4803
5065
|
}
|
|
4804
|
-
.grid-md
|
|
5066
|
+
.grid-md-col-8{
|
|
4805
5067
|
grid-column:span 8;
|
|
4806
5068
|
}
|
|
4807
|
-
.grid-md
|
|
5069
|
+
.grid-md-col-9{
|
|
4808
5070
|
grid-column:span 9;
|
|
4809
5071
|
}
|
|
4810
|
-
.grid-md
|
|
5072
|
+
.grid-md-col-10{
|
|
4811
5073
|
grid-column:span 10;
|
|
4812
5074
|
}
|
|
4813
|
-
.grid-md
|
|
5075
|
+
.grid-md-col-11{
|
|
4814
5076
|
grid-column:span 11;
|
|
4815
5077
|
}
|
|
4816
|
-
.grid-md
|
|
5078
|
+
.grid-md-col-12{
|
|
4817
5079
|
grid-column:span 12;
|
|
4818
5080
|
}
|
|
4819
|
-
.grid-md
|
|
5081
|
+
.grid-md-cols-1{
|
|
4820
5082
|
grid-template-columns:repeat(1, 1fr);
|
|
4821
5083
|
}
|
|
4822
|
-
.grid-md
|
|
5084
|
+
.grid-md-cols-2{
|
|
4823
5085
|
grid-template-columns:repeat(2, 1fr);
|
|
4824
5086
|
}
|
|
4825
|
-
.grid-md
|
|
5087
|
+
.grid-md-cols-3{
|
|
4826
5088
|
grid-template-columns:repeat(3, 1fr);
|
|
4827
5089
|
}
|
|
4828
|
-
.grid-md
|
|
5090
|
+
.grid-md-cols-4{
|
|
4829
5091
|
grid-template-columns:repeat(4, 1fr);
|
|
4830
5092
|
}
|
|
4831
|
-
.grid-md
|
|
5093
|
+
.grid-md-cols-5{
|
|
4832
5094
|
grid-template-columns:repeat(5, 1fr);
|
|
4833
5095
|
}
|
|
4834
|
-
.grid-md
|
|
5096
|
+
.grid-md-cols-6{
|
|
4835
5097
|
grid-template-columns:repeat(6, 1fr);
|
|
4836
5098
|
}
|
|
4837
|
-
.grid-md
|
|
5099
|
+
.grid-md-cols-7{
|
|
4838
5100
|
grid-template-columns:repeat(7, 1fr);
|
|
4839
5101
|
}
|
|
4840
|
-
.grid-md
|
|
5102
|
+
.grid-md-cols-8{
|
|
4841
5103
|
grid-template-columns:repeat(8, 1fr);
|
|
4842
5104
|
}
|
|
4843
|
-
.grid-md
|
|
5105
|
+
.grid-md-cols-9{
|
|
4844
5106
|
grid-template-columns:repeat(9, 1fr);
|
|
4845
5107
|
}
|
|
4846
|
-
.grid-md
|
|
5108
|
+
.grid-md-cols-10{
|
|
4847
5109
|
grid-template-columns:repeat(10, 1fr);
|
|
4848
5110
|
}
|
|
4849
|
-
.grid-md
|
|
5111
|
+
.grid-md-cols-11{
|
|
4850
5112
|
grid-template-columns:repeat(11, 1fr);
|
|
4851
5113
|
}
|
|
4852
|
-
.grid-md
|
|
5114
|
+
.grid-md-cols-12{
|
|
4853
5115
|
grid-template-columns:repeat(12, 1fr);
|
|
4854
5116
|
}
|
|
4855
5117
|
.grid-md--gap{
|
|
@@ -4858,82 +5120,82 @@ body{
|
|
|
4858
5120
|
.grid-md--no-gap{
|
|
4859
5121
|
gap:0;
|
|
4860
5122
|
}
|
|
4861
|
-
.grid-md--
|
|
5123
|
+
.grid-md-col--offset-0{
|
|
4862
5124
|
grid-column-start:1;
|
|
4863
5125
|
}
|
|
4864
|
-
.grid-md--
|
|
5126
|
+
.grid-md-col--offset-1{
|
|
4865
5127
|
grid-column-start:2;
|
|
4866
5128
|
}
|
|
4867
|
-
.grid-md--
|
|
5129
|
+
.grid-md-col--offset-2{
|
|
4868
5130
|
grid-column-start:3;
|
|
4869
5131
|
}
|
|
4870
|
-
.grid-md--
|
|
5132
|
+
.grid-md-col--offset-3{
|
|
4871
5133
|
grid-column-start:4;
|
|
4872
5134
|
}
|
|
4873
|
-
.grid-md--
|
|
5135
|
+
.grid-md-col--offset-4{
|
|
4874
5136
|
grid-column-start:5;
|
|
4875
5137
|
}
|
|
4876
|
-
.grid-md--
|
|
5138
|
+
.grid-md-col--offset-5{
|
|
4877
5139
|
grid-column-start:6;
|
|
4878
5140
|
}
|
|
4879
|
-
.grid-md--
|
|
5141
|
+
.grid-md-col--offset-6{
|
|
4880
5142
|
grid-column-start:7;
|
|
4881
5143
|
}
|
|
4882
|
-
.grid-md--
|
|
5144
|
+
.grid-md-col--offset-7{
|
|
4883
5145
|
grid-column-start:8;
|
|
4884
5146
|
}
|
|
4885
|
-
.grid-md--
|
|
5147
|
+
.grid-md-col--offset-8{
|
|
4886
5148
|
grid-column-start:9;
|
|
4887
5149
|
}
|
|
4888
|
-
.grid-md--
|
|
5150
|
+
.grid-md-col--offset-9{
|
|
4889
5151
|
grid-column-start:10;
|
|
4890
5152
|
}
|
|
4891
|
-
.grid-md--
|
|
5153
|
+
.grid-md-col--offset-10{
|
|
4892
5154
|
grid-column-start:11;
|
|
4893
5155
|
}
|
|
4894
|
-
.grid-md--
|
|
5156
|
+
.grid-md-col--offset-11{
|
|
4895
5157
|
grid-column-start:12;
|
|
4896
5158
|
}
|
|
4897
|
-
.grid-md--
|
|
5159
|
+
.grid-md-col--offset-12{
|
|
4898
5160
|
grid-column-start:13;
|
|
4899
5161
|
}
|
|
4900
|
-
.grid-md--
|
|
5162
|
+
.grid-md-col--offset-0__right{
|
|
4901
5163
|
grid-column-end:1;
|
|
4902
5164
|
}
|
|
4903
|
-
.grid-md--
|
|
5165
|
+
.grid-md-col--offset-1__right{
|
|
4904
5166
|
grid-column-end:2;
|
|
4905
5167
|
}
|
|
4906
|
-
.grid-md--
|
|
5168
|
+
.grid-md-col--offset-2__right{
|
|
4907
5169
|
grid-column-end:3;
|
|
4908
5170
|
}
|
|
4909
|
-
.grid-md--
|
|
5171
|
+
.grid-md-col--offset-3__right{
|
|
4910
5172
|
grid-column-end:4;
|
|
4911
5173
|
}
|
|
4912
|
-
.grid-md--
|
|
5174
|
+
.grid-md-col--offset-4__right{
|
|
4913
5175
|
grid-column-end:5;
|
|
4914
5176
|
}
|
|
4915
|
-
.grid-md--
|
|
5177
|
+
.grid-md-col--offset-5__right{
|
|
4916
5178
|
grid-column-end:6;
|
|
4917
5179
|
}
|
|
4918
|
-
.grid-md--
|
|
5180
|
+
.grid-md-col--offset-6__right{
|
|
4919
5181
|
grid-column-end:7;
|
|
4920
5182
|
}
|
|
4921
|
-
.grid-md--
|
|
5183
|
+
.grid-md-col--offset-7__right{
|
|
4922
5184
|
grid-column-end:8;
|
|
4923
5185
|
}
|
|
4924
|
-
.grid-md--
|
|
5186
|
+
.grid-md-col--offset-8__right{
|
|
4925
5187
|
grid-column-end:9;
|
|
4926
5188
|
}
|
|
4927
|
-
.grid-md--
|
|
5189
|
+
.grid-md-col--offset-9__right{
|
|
4928
5190
|
grid-column-end:10;
|
|
4929
5191
|
}
|
|
4930
|
-
.grid-md--
|
|
5192
|
+
.grid-md-col--offset-10__right{
|
|
4931
5193
|
grid-column-end:11;
|
|
4932
5194
|
}
|
|
4933
|
-
.grid-md--
|
|
5195
|
+
.grid-md-col--offset-11__right{
|
|
4934
5196
|
grid-column-end:12;
|
|
4935
5197
|
}
|
|
4936
|
-
.grid-md--
|
|
5198
|
+
.grid-md-col--offset-12__right{
|
|
4937
5199
|
grid-column-end:13;
|
|
4938
5200
|
}
|
|
4939
5201
|
.m-md-auto{
|
|
@@ -7050,76 +7312,76 @@ body{
|
|
|
7050
7312
|
}}
|
|
7051
7313
|
|
|
7052
7314
|
@media (min-width:62em){
|
|
7053
|
-
.grid-lg
|
|
7315
|
+
.grid-lg-col-1{
|
|
7054
7316
|
grid-column:span 1;
|
|
7055
7317
|
}
|
|
7056
|
-
.grid-lg
|
|
7318
|
+
.grid-lg-col-2{
|
|
7057
7319
|
grid-column:span 2;
|
|
7058
7320
|
}
|
|
7059
|
-
.grid-lg
|
|
7321
|
+
.grid-lg-col-3{
|
|
7060
7322
|
grid-column:span 3;
|
|
7061
7323
|
}
|
|
7062
|
-
.grid-lg
|
|
7324
|
+
.grid-lg-col-4{
|
|
7063
7325
|
grid-column:span 4;
|
|
7064
7326
|
}
|
|
7065
|
-
.grid-lg
|
|
7327
|
+
.grid-lg-col-5{
|
|
7066
7328
|
grid-column:span 5;
|
|
7067
7329
|
}
|
|
7068
|
-
.grid-lg
|
|
7330
|
+
.grid-lg-col-6{
|
|
7069
7331
|
grid-column:span 6;
|
|
7070
7332
|
}
|
|
7071
|
-
.grid-lg
|
|
7333
|
+
.grid-lg-col-7{
|
|
7072
7334
|
grid-column:span 7;
|
|
7073
7335
|
}
|
|
7074
|
-
.grid-lg
|
|
7336
|
+
.grid-lg-col-8{
|
|
7075
7337
|
grid-column:span 8;
|
|
7076
7338
|
}
|
|
7077
|
-
.grid-lg
|
|
7339
|
+
.grid-lg-col-9{
|
|
7078
7340
|
grid-column:span 9;
|
|
7079
7341
|
}
|
|
7080
|
-
.grid-lg
|
|
7342
|
+
.grid-lg-col-10{
|
|
7081
7343
|
grid-column:span 10;
|
|
7082
7344
|
}
|
|
7083
|
-
.grid-lg
|
|
7345
|
+
.grid-lg-col-11{
|
|
7084
7346
|
grid-column:span 11;
|
|
7085
7347
|
}
|
|
7086
|
-
.grid-lg
|
|
7348
|
+
.grid-lg-col-12{
|
|
7087
7349
|
grid-column:span 12;
|
|
7088
7350
|
}
|
|
7089
|
-
.grid-lg
|
|
7351
|
+
.grid-lg-cols-1{
|
|
7090
7352
|
grid-template-columns:repeat(1, 1fr);
|
|
7091
7353
|
}
|
|
7092
|
-
.grid-lg
|
|
7354
|
+
.grid-lg-cols-2{
|
|
7093
7355
|
grid-template-columns:repeat(2, 1fr);
|
|
7094
7356
|
}
|
|
7095
|
-
.grid-lg
|
|
7357
|
+
.grid-lg-cols-3{
|
|
7096
7358
|
grid-template-columns:repeat(3, 1fr);
|
|
7097
7359
|
}
|
|
7098
|
-
.grid-lg
|
|
7360
|
+
.grid-lg-cols-4{
|
|
7099
7361
|
grid-template-columns:repeat(4, 1fr);
|
|
7100
7362
|
}
|
|
7101
|
-
.grid-lg
|
|
7363
|
+
.grid-lg-cols-5{
|
|
7102
7364
|
grid-template-columns:repeat(5, 1fr);
|
|
7103
7365
|
}
|
|
7104
|
-
.grid-lg
|
|
7366
|
+
.grid-lg-cols-6{
|
|
7105
7367
|
grid-template-columns:repeat(6, 1fr);
|
|
7106
7368
|
}
|
|
7107
|
-
.grid-lg
|
|
7369
|
+
.grid-lg-cols-7{
|
|
7108
7370
|
grid-template-columns:repeat(7, 1fr);
|
|
7109
7371
|
}
|
|
7110
|
-
.grid-lg
|
|
7372
|
+
.grid-lg-cols-8{
|
|
7111
7373
|
grid-template-columns:repeat(8, 1fr);
|
|
7112
7374
|
}
|
|
7113
|
-
.grid-lg
|
|
7375
|
+
.grid-lg-cols-9{
|
|
7114
7376
|
grid-template-columns:repeat(9, 1fr);
|
|
7115
7377
|
}
|
|
7116
|
-
.grid-lg
|
|
7378
|
+
.grid-lg-cols-10{
|
|
7117
7379
|
grid-template-columns:repeat(10, 1fr);
|
|
7118
7380
|
}
|
|
7119
|
-
.grid-lg
|
|
7381
|
+
.grid-lg-cols-11{
|
|
7120
7382
|
grid-template-columns:repeat(11, 1fr);
|
|
7121
7383
|
}
|
|
7122
|
-
.grid-lg
|
|
7384
|
+
.grid-lg-cols-12{
|
|
7123
7385
|
grid-template-columns:repeat(12, 1fr);
|
|
7124
7386
|
}
|
|
7125
7387
|
.grid-lg--gap{
|
|
@@ -7128,85 +7390,85 @@ body{
|
|
|
7128
7390
|
.grid-lg--no-gap{
|
|
7129
7391
|
gap:0;
|
|
7130
7392
|
}
|
|
7131
|
-
.grid
|
|
7393
|
+
.grid-gap,.grid-md-gap,.grid-sm-gap{
|
|
7132
7394
|
gap:var(--nappr-grid-gutter-gap-lg, 1.5rem);
|
|
7133
7395
|
}
|
|
7134
|
-
.grid-lg--
|
|
7396
|
+
.grid-lg-col--offset-0{
|
|
7135
7397
|
grid-column-start:1;
|
|
7136
7398
|
}
|
|
7137
|
-
.grid-lg--
|
|
7399
|
+
.grid-lg-col--offset-1{
|
|
7138
7400
|
grid-column-start:2;
|
|
7139
7401
|
}
|
|
7140
|
-
.grid-lg--
|
|
7402
|
+
.grid-lg-col--offset-2{
|
|
7141
7403
|
grid-column-start:3;
|
|
7142
7404
|
}
|
|
7143
|
-
.grid-lg--
|
|
7405
|
+
.grid-lg-col--offset-3{
|
|
7144
7406
|
grid-column-start:4;
|
|
7145
7407
|
}
|
|
7146
|
-
.grid-lg--
|
|
7408
|
+
.grid-lg-col--offset-4{
|
|
7147
7409
|
grid-column-start:5;
|
|
7148
7410
|
}
|
|
7149
|
-
.grid-lg--
|
|
7411
|
+
.grid-lg-col--offset-5{
|
|
7150
7412
|
grid-column-start:6;
|
|
7151
7413
|
}
|
|
7152
|
-
.grid-lg--
|
|
7414
|
+
.grid-lg-col--offset-6{
|
|
7153
7415
|
grid-column-start:7;
|
|
7154
7416
|
}
|
|
7155
|
-
.grid-lg--
|
|
7417
|
+
.grid-lg-col--offset-7{
|
|
7156
7418
|
grid-column-start:8;
|
|
7157
7419
|
}
|
|
7158
|
-
.grid-lg--
|
|
7420
|
+
.grid-lg-col--offset-8{
|
|
7159
7421
|
grid-column-start:9;
|
|
7160
7422
|
}
|
|
7161
|
-
.grid-lg--
|
|
7423
|
+
.grid-lg-col--offset-9{
|
|
7162
7424
|
grid-column-start:10;
|
|
7163
7425
|
}
|
|
7164
|
-
.grid-lg--
|
|
7426
|
+
.grid-lg-col--offset-10{
|
|
7165
7427
|
grid-column-start:11;
|
|
7166
7428
|
}
|
|
7167
|
-
.grid-lg--
|
|
7429
|
+
.grid-lg-col--offset-11{
|
|
7168
7430
|
grid-column-start:12;
|
|
7169
7431
|
}
|
|
7170
|
-
.grid-lg--
|
|
7432
|
+
.grid-lg-col--offset-12{
|
|
7171
7433
|
grid-column-start:13;
|
|
7172
7434
|
}
|
|
7173
|
-
.grid-lg--
|
|
7435
|
+
.grid-lg-col--offset-0__right{
|
|
7174
7436
|
grid-column-end:1;
|
|
7175
7437
|
}
|
|
7176
|
-
.grid-lg--
|
|
7438
|
+
.grid-lg-col--offset-1__right{
|
|
7177
7439
|
grid-column-end:2;
|
|
7178
7440
|
}
|
|
7179
|
-
.grid-lg--
|
|
7441
|
+
.grid-lg-col--offset-2__right{
|
|
7180
7442
|
grid-column-end:3;
|
|
7181
7443
|
}
|
|
7182
|
-
.grid-lg--
|
|
7444
|
+
.grid-lg-col--offset-3__right{
|
|
7183
7445
|
grid-column-end:4;
|
|
7184
7446
|
}
|
|
7185
|
-
.grid-lg--
|
|
7447
|
+
.grid-lg-col--offset-4__right{
|
|
7186
7448
|
grid-column-end:5;
|
|
7187
7449
|
}
|
|
7188
|
-
.grid-lg--
|
|
7450
|
+
.grid-lg-col--offset-5__right{
|
|
7189
7451
|
grid-column-end:6;
|
|
7190
7452
|
}
|
|
7191
|
-
.grid-lg--
|
|
7453
|
+
.grid-lg-col--offset-6__right{
|
|
7192
7454
|
grid-column-end:7;
|
|
7193
7455
|
}
|
|
7194
|
-
.grid-lg--
|
|
7456
|
+
.grid-lg-col--offset-7__right{
|
|
7195
7457
|
grid-column-end:8;
|
|
7196
7458
|
}
|
|
7197
|
-
.grid-lg--
|
|
7459
|
+
.grid-lg-col--offset-8__right{
|
|
7198
7460
|
grid-column-end:9;
|
|
7199
7461
|
}
|
|
7200
|
-
.grid-lg--
|
|
7462
|
+
.grid-lg-col--offset-9__right{
|
|
7201
7463
|
grid-column-end:10;
|
|
7202
7464
|
}
|
|
7203
|
-
.grid-lg--
|
|
7465
|
+
.grid-lg-col--offset-10__right{
|
|
7204
7466
|
grid-column-end:11;
|
|
7205
7467
|
}
|
|
7206
|
-
.grid-lg--
|
|
7468
|
+
.grid-lg-col--offset-11__right{
|
|
7207
7469
|
grid-column-end:12;
|
|
7208
7470
|
}
|
|
7209
|
-
.grid-lg--
|
|
7471
|
+
.grid-lg-col--offset-12__right{
|
|
7210
7472
|
grid-column-end:13;
|
|
7211
7473
|
}
|
|
7212
7474
|
.is-hidden-lg{
|
|
@@ -7229,6 +7491,27 @@ body{
|
|
|
7229
7491
|
width:1px;
|
|
7230
7492
|
}}
|
|
7231
7493
|
|
|
7494
|
+
@media (width >= 62em){
|
|
7495
|
+
.nav{
|
|
7496
|
+
justify-content:flex-start;
|
|
7497
|
+
}
|
|
7498
|
+
.nav .nav__list{
|
|
7499
|
+
flex-flow:row nowrap;
|
|
7500
|
+
margin:0 -1rem;
|
|
7501
|
+
max-width:calc(100% + 1rem);
|
|
7502
|
+
}
|
|
7503
|
+
.nav .nav__item{
|
|
7504
|
+
align-items:flex-start;
|
|
7505
|
+
position:static;
|
|
7506
|
+
}
|
|
7507
|
+
.nav .nav__btn,.nav .nav__link{
|
|
7508
|
+
font-size:.875rem;
|
|
7509
|
+
font-weight:400;
|
|
7510
|
+
line-height:1.5rem;
|
|
7511
|
+
min-height:3.5rem;
|
|
7512
|
+
padding:1rem;
|
|
7513
|
+
}}
|
|
7514
|
+
|
|
7232
7515
|
@media (min-width:78em){
|
|
7233
7516
|
h1{
|
|
7234
7517
|
font-size:2.5rem;
|
|
@@ -7254,76 +7537,76 @@ body{
|
|
|
7254
7537
|
font-size:1.25rem;
|
|
7255
7538
|
line-height:1.75rem;
|
|
7256
7539
|
}
|
|
7257
|
-
.grid-xl
|
|
7540
|
+
.grid-xl-col-1{
|
|
7258
7541
|
grid-column:span 1;
|
|
7259
7542
|
}
|
|
7260
|
-
.grid-xl
|
|
7543
|
+
.grid-xl-col-2{
|
|
7261
7544
|
grid-column:span 2;
|
|
7262
7545
|
}
|
|
7263
|
-
.grid-xl
|
|
7546
|
+
.grid-xl-col-3{
|
|
7264
7547
|
grid-column:span 3;
|
|
7265
7548
|
}
|
|
7266
|
-
.grid-xl
|
|
7549
|
+
.grid-xl-col-4{
|
|
7267
7550
|
grid-column:span 4;
|
|
7268
7551
|
}
|
|
7269
|
-
.grid-xl
|
|
7552
|
+
.grid-xl-col-5{
|
|
7270
7553
|
grid-column:span 5;
|
|
7271
7554
|
}
|
|
7272
|
-
.grid-xl
|
|
7555
|
+
.grid-xl-col-6{
|
|
7273
7556
|
grid-column:span 6;
|
|
7274
7557
|
}
|
|
7275
|
-
.grid-xl
|
|
7558
|
+
.grid-xl-col-7{
|
|
7276
7559
|
grid-column:span 7;
|
|
7277
7560
|
}
|
|
7278
|
-
.grid-xl
|
|
7561
|
+
.grid-xl-col-8{
|
|
7279
7562
|
grid-column:span 8;
|
|
7280
7563
|
}
|
|
7281
|
-
.grid-xl
|
|
7564
|
+
.grid-xl-col-9{
|
|
7282
7565
|
grid-column:span 9;
|
|
7283
7566
|
}
|
|
7284
|
-
.grid-xl
|
|
7567
|
+
.grid-xl-col-10{
|
|
7285
7568
|
grid-column:span 10;
|
|
7286
7569
|
}
|
|
7287
|
-
.grid-xl
|
|
7570
|
+
.grid-xl-col-11{
|
|
7288
7571
|
grid-column:span 11;
|
|
7289
7572
|
}
|
|
7290
|
-
.grid-xl
|
|
7573
|
+
.grid-xl-col-12{
|
|
7291
7574
|
grid-column:span 12;
|
|
7292
7575
|
}
|
|
7293
|
-
.grid-xl
|
|
7576
|
+
.grid-xl-cols-1{
|
|
7294
7577
|
grid-template-columns:repeat(1, 1fr);
|
|
7295
7578
|
}
|
|
7296
|
-
.grid-xl
|
|
7579
|
+
.grid-xl-cols-2{
|
|
7297
7580
|
grid-template-columns:repeat(2, 1fr);
|
|
7298
7581
|
}
|
|
7299
|
-
.grid-xl
|
|
7582
|
+
.grid-xl-cols-3{
|
|
7300
7583
|
grid-template-columns:repeat(3, 1fr);
|
|
7301
7584
|
}
|
|
7302
|
-
.grid-xl
|
|
7585
|
+
.grid-xl-cols-4{
|
|
7303
7586
|
grid-template-columns:repeat(4, 1fr);
|
|
7304
7587
|
}
|
|
7305
|
-
.grid-xl
|
|
7588
|
+
.grid-xl-cols-5{
|
|
7306
7589
|
grid-template-columns:repeat(5, 1fr);
|
|
7307
7590
|
}
|
|
7308
|
-
.grid-xl
|
|
7591
|
+
.grid-xl-cols-6{
|
|
7309
7592
|
grid-template-columns:repeat(6, 1fr);
|
|
7310
7593
|
}
|
|
7311
|
-
.grid-xl
|
|
7594
|
+
.grid-xl-cols-7{
|
|
7312
7595
|
grid-template-columns:repeat(7, 1fr);
|
|
7313
7596
|
}
|
|
7314
|
-
.grid-xl
|
|
7597
|
+
.grid-xl-cols-8{
|
|
7315
7598
|
grid-template-columns:repeat(8, 1fr);
|
|
7316
7599
|
}
|
|
7317
|
-
.grid-xl
|
|
7600
|
+
.grid-xl-cols-9{
|
|
7318
7601
|
grid-template-columns:repeat(9, 1fr);
|
|
7319
7602
|
}
|
|
7320
|
-
.grid-xl
|
|
7603
|
+
.grid-xl-cols-10{
|
|
7321
7604
|
grid-template-columns:repeat(10, 1fr);
|
|
7322
7605
|
}
|
|
7323
|
-
.grid-xl
|
|
7606
|
+
.grid-xl-cols-11{
|
|
7324
7607
|
grid-template-columns:repeat(11, 1fr);
|
|
7325
7608
|
}
|
|
7326
|
-
.grid-xl
|
|
7609
|
+
.grid-xl-cols-12{
|
|
7327
7610
|
grid-template-columns:repeat(12, 1fr);
|
|
7328
7611
|
}
|
|
7329
7612
|
.grid-xl--gap{
|
|
@@ -7332,82 +7615,82 @@ body{
|
|
|
7332
7615
|
.grid-xl--no-gap{
|
|
7333
7616
|
gap:0;
|
|
7334
7617
|
}
|
|
7335
|
-
.grid-xl--
|
|
7618
|
+
.grid-xl-col--offset-0{
|
|
7336
7619
|
grid-column-start:1;
|
|
7337
7620
|
}
|
|
7338
|
-
.grid-xl--
|
|
7621
|
+
.grid-xl-col--offset-1{
|
|
7339
7622
|
grid-column-start:2;
|
|
7340
7623
|
}
|
|
7341
|
-
.grid-xl--
|
|
7624
|
+
.grid-xl-col--offset-2{
|
|
7342
7625
|
grid-column-start:3;
|
|
7343
7626
|
}
|
|
7344
|
-
.grid-xl--
|
|
7627
|
+
.grid-xl-col--offset-3{
|
|
7345
7628
|
grid-column-start:4;
|
|
7346
7629
|
}
|
|
7347
|
-
.grid-xl--
|
|
7630
|
+
.grid-xl-col--offset-4{
|
|
7348
7631
|
grid-column-start:5;
|
|
7349
7632
|
}
|
|
7350
|
-
.grid-xl--
|
|
7633
|
+
.grid-xl-col--offset-5{
|
|
7351
7634
|
grid-column-start:6;
|
|
7352
7635
|
}
|
|
7353
|
-
.grid-xl--
|
|
7636
|
+
.grid-xl-col--offset-6{
|
|
7354
7637
|
grid-column-start:7;
|
|
7355
7638
|
}
|
|
7356
|
-
.grid-xl--
|
|
7639
|
+
.grid-xl-col--offset-7{
|
|
7357
7640
|
grid-column-start:8;
|
|
7358
7641
|
}
|
|
7359
|
-
.grid-xl--
|
|
7642
|
+
.grid-xl-col--offset-8{
|
|
7360
7643
|
grid-column-start:9;
|
|
7361
7644
|
}
|
|
7362
|
-
.grid-xl--
|
|
7645
|
+
.grid-xl-col--offset-9{
|
|
7363
7646
|
grid-column-start:10;
|
|
7364
7647
|
}
|
|
7365
|
-
.grid-xl--
|
|
7648
|
+
.grid-xl-col--offset-10{
|
|
7366
7649
|
grid-column-start:11;
|
|
7367
7650
|
}
|
|
7368
|
-
.grid-xl--
|
|
7651
|
+
.grid-xl-col--offset-11{
|
|
7369
7652
|
grid-column-start:12;
|
|
7370
7653
|
}
|
|
7371
|
-
.grid-xl--
|
|
7654
|
+
.grid-xl-col--offset-12{
|
|
7372
7655
|
grid-column-start:13;
|
|
7373
7656
|
}
|
|
7374
|
-
.grid-xl--
|
|
7657
|
+
.grid-xl-col--offset-0__right{
|
|
7375
7658
|
grid-column-end:1;
|
|
7376
7659
|
}
|
|
7377
|
-
.grid-xl--
|
|
7660
|
+
.grid-xl-col--offset-1__right{
|
|
7378
7661
|
grid-column-end:2;
|
|
7379
7662
|
}
|
|
7380
|
-
.grid-xl--
|
|
7663
|
+
.grid-xl-col--offset-2__right{
|
|
7381
7664
|
grid-column-end:3;
|
|
7382
7665
|
}
|
|
7383
|
-
.grid-xl--
|
|
7666
|
+
.grid-xl-col--offset-3__right{
|
|
7384
7667
|
grid-column-end:4;
|
|
7385
7668
|
}
|
|
7386
|
-
.grid-xl--
|
|
7669
|
+
.grid-xl-col--offset-4__right{
|
|
7387
7670
|
grid-column-end:5;
|
|
7388
7671
|
}
|
|
7389
|
-
.grid-xl--
|
|
7672
|
+
.grid-xl-col--offset-5__right{
|
|
7390
7673
|
grid-column-end:6;
|
|
7391
7674
|
}
|
|
7392
|
-
.grid-xl--
|
|
7675
|
+
.grid-xl-col--offset-6__right{
|
|
7393
7676
|
grid-column-end:7;
|
|
7394
7677
|
}
|
|
7395
|
-
.grid-xl--
|
|
7678
|
+
.grid-xl-col--offset-7__right{
|
|
7396
7679
|
grid-column-end:8;
|
|
7397
7680
|
}
|
|
7398
|
-
.grid-xl--
|
|
7681
|
+
.grid-xl-col--offset-8__right{
|
|
7399
7682
|
grid-column-end:9;
|
|
7400
7683
|
}
|
|
7401
|
-
.grid-xl--
|
|
7684
|
+
.grid-xl-col--offset-9__right{
|
|
7402
7685
|
grid-column-end:10;
|
|
7403
7686
|
}
|
|
7404
|
-
.grid-xl--
|
|
7687
|
+
.grid-xl-col--offset-10__right{
|
|
7405
7688
|
grid-column-end:11;
|
|
7406
7689
|
}
|
|
7407
|
-
.grid-xl--
|
|
7690
|
+
.grid-xl-col--offset-11__right{
|
|
7408
7691
|
grid-column-end:12;
|
|
7409
7692
|
}
|
|
7410
|
-
.grid-xl--
|
|
7693
|
+
.grid-xl-col--offset-12__right{
|
|
7411
7694
|
grid-column-end:13;
|
|
7412
7695
|
}
|
|
7413
7696
|
heading-h1{
|