-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from wfp/release-v0.12.0
- Loading branch information
Showing
62 changed files
with
251 additions
and
288 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ title: "WFP UI Guidelines" | |
email: "[email protected]" | ||
description: "" | ||
url: "https://cdn.wfp.org" # WFP CDN | ||
version: "v0.11.0" | ||
version: "v0.12.0" | ||
quiet: true | ||
|
||
exclude: ["*.sublime-*", "*.sh", "*.yml", "*.DS_*"] | ||
|
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,4 +1,3 @@ | ||
// Mixins | ||
// Project: WFPUI Guide | ||
// Author: Matthew Morek ([email protected]) | ||
// URL: http://matthewmorek.com | ||
|
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,4 +1,4 @@ | ||
// Project Variables | ||
// Project: WFPUI Guide | ||
// Author: Matthew Morek ([email protected]) | ||
// URL: http://matthewmorek.com | ||
|
||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 +1,6 @@ | ||
// Core SCSS-only | ||
// Project: WFP UI | ||
|
||
// Dependencies | ||
@import "math.scss"; | ||
|
||
|
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,4 +1,6 @@ | ||
// Core CSS | ||
// Project: WFP UI | ||
|
||
@import "core"; | ||
@import "css/base"; | ||
@import "css/typography"; | ||
|
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,7 +1,5 @@ | ||
// Project Variables | ||
// Project: WFP UI | ||
// Author: Matthew Morek ([email protected]) | ||
// URL: http://matthewmorek.com | ||
|
||
$sans-serif-stack: "lato", -apple-system, BlinkMacSystemFont, system, sans-serif; | ||
$serif-stack: "aleo", -apple-system, BlinkMacSystemFont, system, serif; | ||
|
@@ -12,14 +10,9 @@ $small-font-size: $base-font-size * 0.875; // 14px | |
|
||
$spacing-unit: 0.25rem; | ||
|
||
$text-color: #404040 !default; | ||
$background-color: #ffffff !default; | ||
|
||
$primary: #2a93fc; | ||
$accent: #1f6ebc; | ||
|
||
$black: #000000; | ||
|
||
// Greys gradation | ||
$grey: #8c8c8c; | ||
$grey-darkest: darken($grey, 42%); | ||
|
@@ -40,12 +33,16 @@ $blue-lightest: lighten($blue, 30%); | |
|
||
$grey-contrast: #eaeaea; | ||
|
||
$black: #000000; | ||
$white: #ffffff; | ||
$red: #ff5252; | ||
$orange: #ffc759; | ||
$yellow: #fcdc5d; | ||
$green: #00a878; | ||
|
||
$text-color: transparentize($grey-darkest, 0.1) !default; | ||
$background-color: transparentize($white, 0.1) !default; | ||
|
||
// Width of the content area | ||
$content-width: 1000px !default; | ||
$max-content-width: 1200px !default; | ||
|
Oops, something went wrong.