mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-16 02:35:54 -07:00
Update welcome page
This commit is contained in:
parent
98b9134779
commit
e5e0d6f6df
20 changed files with 792 additions and 125 deletions
|
|
@ -1,13 +1,15 @@
|
|||
@import 'partials/colors';
|
||||
@import 'partials/bootstrap-overrides';
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
@import 'bootstrap-icons/font/bootstrap-icons';
|
||||
@import 'partials/bootstrap-overrides';
|
||||
@import "@fortawesome/fontawesome-free/scss/fontawesome";
|
||||
@import "@fortawesome/fontawesome-free/scss/solid";
|
||||
@import "@fortawesome/fontawesome-free/scss/regular";
|
||||
@import "@fortawesome/fontawesome-free/scss/brands";
|
||||
@import "@fortawesome/fontawesome-free/scss/v4-shims";
|
||||
@import 'partials/layout';
|
||||
@import 'partials/typography';
|
||||
@import 'partials/links';
|
||||
@import 'partials/downloads';
|
||||
@import 'partials/icons';
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,12 +3,14 @@ $gray-1: #595959;
|
|||
$gray-2: #CECECE;
|
||||
$gray-3: #F3F3F3;
|
||||
|
||||
$primary: #7f9df6;
|
||||
$primary-lighter: #b9caff;
|
||||
$primary: #0B8D9C;
|
||||
$primary-lighter: lighten($primary, 30%);
|
||||
$primary-dark: darken($primary, 15%);
|
||||
$primary-darker: darken($primary, 30%);
|
||||
|
||||
$secondary: #ffab2b;
|
||||
$secondary-lighter: #ffcb7c;
|
||||
$secondary: #C93148;
|
||||
$secondary-lighter: darken($secondary, 30%);
|
||||
$secondary-dark: darken($secondary, 15%);
|
||||
$secondary-darker: darken($secondary, 30%);
|
||||
|
||||
$white: #FFFFFF;
|
||||
|
|
|
|||
20
app/assets/stylesheets/partials/_typography.scss
Normal file
20
app/assets/stylesheets/partials/_typography.scss
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
.nav, .nav-item, .dropdown-item {
|
||||
font-family: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero-text {
|
||||
font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.footer {
|
||||
font-family: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-weight: 700;
|
||||
line-height: 0.2em;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue