forked from vufind-org/vufind
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
fc7699a
commit 3ee4816
Showing
2 changed files
with
84 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// | ||
// Finna Base Variables for Improved SCSS Support | ||
// -------------------------------------------------- | ||
|
||
//== Colors | ||
// | ||
//## Gray and brand colors for use across Bootstrap. | ||
|
||
@gray: #2b2b2b; | ||
|
||
@gray-darker: darken(@gray, 40%); | ||
@gray-dark: darken(@gray, 10%); | ||
@gray-light: lighten(@gray, 18%); // mix(@body-bg, contrast(@body-bg), 40%) | ||
@gray-slightly-lighter: lighten(@gray, 29%); | ||
@gray-mid-light: lighten(@gray, 40%); // dark background: mix(@body-bg, contrast(@body-bg), 65%) | ||
@gray-lighter: lighten(@gray, 65%); // dark background: mix(@body-bg, contrast(@body-bg), 80%) | ||
@gray-ultralight: lighten(@gray, 80%); // dark background: mix(@body-bg, contrast(@body-bg), 95%) | ||
|
||
// Brand Colors | ||
@brand-primary: #007c90; | ||
@brand-secondary: #007c90; | ||
@brand-third: #007c90; | ||
@brand-fourth: #007c90; | ||
@brand-success: #33843B; | ||
@brand-warning: #9E943D; | ||
@brand-danger: #a94442; | ||
@brand-info: #007c90; | ||
|
||
//== Custom Finna styling | ||
@body-bg: #fff; | ||
|
||
|
||
// Extra extra small screen / phone (e.g. iPhone 5) | ||
@screen-xxs: 400px; | ||
@screen-xxs-min: @screen-xxs; | ||
@screen-xxs-max: (@screen-xs-min - 1); | ||
|
||
@screen-xlg: 1400px; | ||
@screen-xlg-min: @screen-xlg; | ||
|
||
//## Font size, line-height for content pages | ||
@content-font-size-base: 16px; |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// | ||
// Finna Base Variables for Improved SCSS Support | ||
// -------------------------------------------------- | ||
|
||
//== Colors | ||
// | ||
//## Gray and brand colors for use across Bootstrap. | ||
|
||
$gray: #2b2b2b !default; | ||
|
||
$gray-darker: darken($gray, 40%) !default; | ||
$gray-dark: darken($gray, 10%) !default; | ||
$gray-light: lighten($gray, 18%) !default; // mix($body-bg, contrast($body-bg), 40%) | ||
$gray-slightly-lighter: lighten($gray, 29%) !default; | ||
$gray-mid-light: lighten($gray, 40%) !default; // dark background: mix($body-bg, contrast($body-bg), 65%) | ||
$gray-lighter: lighten($gray, 65%) !default; // dark background: mix($body-bg, contrast($body-bg), 80%) | ||
$gray-ultralight: lighten($gray, 80%) !default; // dark background: mix($body-bg, contrast($body-bg), 95%) | ||
|
||
// Brand Colors | ||
$brand-primary: #007c90 !default; | ||
$brand-secondary: #007c90 !default; | ||
$brand-third: #007c90 !default; | ||
$brand-fourth: #007c90 !default; | ||
$brand-success: #33843B !default; | ||
$brand-warning: #9E943D !default; | ||
$brand-danger: #a94442 !default; | ||
$brand-info: #007c90 !default; | ||
|
||
//== Custom Finna styling | ||
$body-bg: #fff !default; | ||
|
||
|
||
// Extra extra small screen / phone (e.g. iPhone 5) | ||
$screen-xxs: 400px !default; | ||
$screen-xxs-min: $screen-xxs !default; | ||
$screen-xxs-max: ($screen-xs-min - 1) !default; | ||
|
||
$screen-xlg: 1400px !default; | ||
$screen-xlg-min: $screen-xlg !default; | ||
|
||
//## Font size, line-height for content pages | ||
$content-font-size-base: 16px !default; |