Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mattstratton/castanet
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstratton committed May 18, 2017
2 parents 56811d1 + cc8a77e commit 0475679
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ You will need to add a handful of configuration items to your `config.toml` file
- `disqusShortname` - the shortname for use in Disqus comments. Example: `"arresteddevops"`. Note: The Disqus comments will not appear if you are running on `localhost`.

- `[params]`
- `site_theme` - the color scheme for the overall site. Currently the two options are `orange` and `blue`. Optional. Example: `"blue"`. Defaults to the `orange` theme if not set.
- `site_theme` - the color scheme for the overall site. Currently the options are `orange`, `grey`, and `blue`. Optional. Example: `"blue"`. Defaults to the `orange` theme if not set.
- `site_layout` - the layout to use. The optiions are `grid` or `row`. Optional. Example `"grid"`.
- `enable_jumbo` - When using the `row` layout, will set a jumbotron at the top intead of the sidebar. Optional. Can be "true" or "false".
- `custom_css` - array of custom CSS files for over-riding theme settings or adding your own classes. Example: `["custom.css", "other_custom.css"]`. These files should be put into your `static` directory (not the `static` directory of the theme).
Expand Down
26 changes: 26 additions & 0 deletions config.codekit3
Original file line number Diff line number Diff line change
Expand Up @@ -8266,6 +8266,32 @@
"oS": 3,
"uL": 1
},
"\/static\/scss\/grey.scss": {
"aP": 1,
"bl": 0,
"dP": 10,
"dS": 0,
"ft": 4,
"ma": 0,
"oA": 0,
"oAP": "\/static\/css\/grey.css",
"oF": 0,
"oS": 3,
"uL": 1
},
"\/static\/scss\/grey_variables.scss": {
"aP": 1,
"bl": 0,
"dP": 10,
"dS": 0,
"ft": 4,
"ma": 0,
"oA": 1,
"oAP": "\/static\/css\/grey_variables.css",
"oF": 0,
"oS": 3,
"uL": 1
},
"\/static\/scss\/orange.scss": {
"aP": 1,
"bl": 0,
Expand Down
9 changes: 9 additions & 0 deletions static/css/grey.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions static/scss/grey.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "site";
@import "grey_variables";
@import "custom";
28 changes: 28 additions & 0 deletions static/scss/grey_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//** Color scheme via https://coolors.co

$brand-primary: #2A2D34;
$body-bg: lighten($brand-primary, 20%);
$castanet-main-container-bg: #BCBDC0;
$castanet-middle-container-bg: #fff;
$castanet-sidebar-bg: $brand-primary;
$link-color: $brand-primary;

//== Pagination
//
//##

$pagination-color: $link-color;
$pagination-bg: #fff;
$pagination-border: #ddd;

$pagination-hover-color: $link-hover-color;
$pagination-hover-bg: $gray-lighter;
$pagination-hover-border: #ddd;

$pagination-active-color: #fff;
$pagination-active-bg: $brand-primary;
$pagination-active-border: $brand-primary;

$pagination-disabled-color: $gray-light;
$pagination-disabled-bg: #fff;
$pagination-disabled-border: #ddd;

0 comments on commit 0475679

Please sign in to comment.