-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
// Entry point for your Sass build | ||
|
||
@import 'palette'; | ||
@import 'bootstrapVariables'; | ||
@import 'bootstrap/scss/bootstrap'; | ||
|
||
$logo-image: url(StanfordLibraries-logo-whitetext.svg); | ||
$logo-width: 200px; | ||
$logo-height: 35px; | ||
@import "palette"; | ||
@import "bootstrapVariables"; | ||
@import "bootstrap/scss/bootstrap"; | ||
|
||
$link-light-color: $stanford-white; | ||
$link-dark-color: $stanford-digital-blue; | ||
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap"); | ||
$font-family-serif: "Source Serif 4", serif; | ||
|
||
@import 'blacklight-frontend/app/assets/stylesheets/blacklight/blacklight'; | ||
@import 'arclight/app/assets/stylesheets/arclight/application'; | ||
@import 'stanfordStripe'; | ||
@import 'sulBase'; | ||
@import 'featuredItemTeasers'; | ||
@import 'sulHeader'; | ||
@import 'sulLanding'; | ||
@import 'sulCollection'; | ||
@import 'sulFooter'; | ||
@import 'sulFacets'; | ||
@import 'cards'; | ||
:root { | ||
--bs-border-radius: 0; | ||
--sul-link-color-rgb: 0, 108, 184; /* Digital blue #006CB8; */ | ||
--bs-link-color-rgb: var(--sul-link-color-rgb); | ||
--bs-link-decoration: none; | ||
--bs-link-hover-decoration: underline; | ||
} | ||
@import "blacklight-frontend/app/assets/stylesheets/blacklight/blacklight"; | ||
@import "arclight/app/assets/stylesheets/arclight/application"; | ||
@import "stanfordStripe"; | ||
@import "sulBase"; | ||
@import "featuredItemTeasers"; | ||
@import "sulHeader"; | ||
@import "sulLanding"; | ||
@import "sulCollection"; | ||
@import "sulFooter"; | ||
@import "sulFacets"; | ||
@import "cards"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,14 @@ | ||
// This file overrides variables set by Bootstrap (see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss) | ||
|
||
// Colors | ||
$primary: $stanford-cardinal; | ||
$danger: $stanford-digital-red; | ||
$info: $stanford-digital-blue; | ||
$success: $stanford-fog; | ||
$dark: $stanford-palo-alto-dark; | ||
$secondary: $stanford-palo-alto-dark; | ||
|
||
// Components | ||
$border-radius: 0; | ||
|
||
// Typography | ||
$headings-color: $stanford-white; | ||
|
||
// Fonts | ||
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"); | ||
$font-family-base: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
$font-family-base: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", | ||
Helvetica, Arial, sans-serif; | ||
|
||
// Navbar | ||
$navbar-padding-y: 0; | ||
$navbar-dark-color: white; | ||
$navbar-background-color: $stanford-black; | ||
$nav-link-padding-y: 0.3rem; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
// https://identity.stanford.edu/design-elements/color/primary-colors/ | ||
$stanford-cardinal: #8c1515; | ||
$stanford-cool-grey: #53565a; // used in SDR header (not yet added) | ||
$stanford-black: #2e2d29; // "100% black" in Stanford brand identity | ||
$tapa: #767674; // "60% black" in Stanford brand identity | ||
$silver-sand: #c0c0bf; // "30% black" in Stanford brand identity | ||
$stanford-black-20: #d5d5d4; // "20% black" in Stanford brand identity | ||
$stanford-white: #ffffff; | ||
$whisper: #eaeaea; // "10% black" in Stanford brand identity, used as modal bg color | ||
|
||
// https://identity.stanford.edu/design-elements/color/web/ | ||
$stanford-digital-blue: #006cb8; | ||
$stanford-digital-blue-dark: #00548f; | ||
$stanford-digital-green: #008566; | ||
$stanford-digital-red: #b1040e; | ||
|
||
// https://identity.stanford.edu/design-elements/color/accent-colors/ | ||
$stanford-fog: #dad7cb; | ||
$stanford-fog-light: #f4f4f4; | ||
$stanford-illuminating: #FEDD5C; | ||
$stanford-illuminating-dark: #FEC51D; | ||
$stanford-palo-alto-light: #2D716F; | ||
$stanford-illuminating: #fedd5c; | ||
$stanford-palo-alto-light: #2d716f; | ||
$stanford-palo-alto-dark: #014240; | ||
$stanford-stone: #7F7776; | ||
$stanford-stone-light: #D4D1D1; | ||
$stanford-stone: #7f7776; | ||
$stanford-stone-light: #d4d1d1; | ||
|
||
// Non-Stanford identity colors | ||
$cyan-blue-light: #f8f9fa; | ||
$gray-light: #fafafa; | ||
$green-white: #EBF5F1; | ||
$green-white: #ebf5f1; | ||
:root { | ||
--grey-lighter: #ededed; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters