Update welcome page

This commit is contained in:
rebuilt 2023-03-09 18:30:35 -08:00
parent 98b9134779
commit e5e0d6f6df
20 changed files with 792 additions and 125 deletions

View file

@ -1,25 +1,32 @@
@import 'colors';
.accordion-button:not(.collapsed) {
color: shade-color($primary, 50%);
color: $primary-darker;
}
.accordion-body h3 {
color: shade-color($primary, 50%);
color: $primary-darker;
}
h1 {
color: $dark-blue;
}
$spacer: 1rem;
$spacers: ();
// stylelint-disable-next-line scss/dollar-variable-default
$spacers: map-merge(
(
0: 0,
1: ($spacer * .25),
2: ($spacer * .5),
3: $spacer,
4: ($spacer * 2),
5: ($spacer * 3),
6: ($spacer * 4),
7: ($spacer * 5),
8: ($spacer * 6),
9: ($spacer * 7),
10: ($spacer * 8),
11: ($spacer * 9),
12: ($spacer * 10),
),
$spacers
);
h2 {
color: $dark-blue;
}
h3 {
color: $dark-blue;
}
h4 {
color: $dark-blue;
}