alembic-jekyll-theme 3.0.11 → 3.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/_sass/_settings.scss +16 -16
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 96f8bf0b791d7e961bd4d3cd97e03d7ece509c68
4
- data.tar.gz: 800d6d25ed3d39c5b9282c7ace66c81aeb354cd7
3
+ metadata.gz: '00198eb845646dbd4cc791c8a8082dc1a9139fa9'
4
+ data.tar.gz: 6df5874997c771c6163ae777005d676d6758be2e
5
5
  SHA512:
6
- metadata.gz: 57d47b1836f1dc56f0068bef6141ac4d94c90a7ffe5efe9e27d37a6ae55fd3f01708e9db91d2421d2c3954cec5ef8a0e556f7f3c48e9f6d8018b0bc4c3d6a1ae
7
- data.tar.gz: 3fb4420bd4c61c6938e4945d7ae66f3870b2e31314ee8b89757a380abbb9a6b03133d893bdb3e474bbfbf233f711e4c853c3b4ecf17a6c19c178bac1d0a7d9ce
6
+ metadata.gz: c31bc05cb9be7368d51c8a29b4cd480c1033c6d318231806a69a15bad551ca8a81307c774965717f54dcd221b5b997580241a2ab4e321aa326d87935808b03ba
7
+ data.tar.gz: 15dc5c1f5f64bd79e65d90d295f0dd6eef779e8aba69d6a10c69e988a26a057b88421a501c933897ac75e37f383024c0fb140aa54a25e1408b53482d4779129b
data/README.md CHANGED
@@ -105,11 +105,11 @@ _(deprecated, not recommended)_
105
105
 
106
106
  ## Customising
107
107
 
108
- When using Alembic as a theme means you can take advantage of the file overriding method. This allows you to overwrite any file in this theme with your own custom file, simply by matching the file name and path. The most common example of this would be if you want to add your own styles or change the core style settings.
108
+ When using Alembic as a theme means you can take advantage of the file overriding method. This allows you to overwrite any file in this theme with your own custom file, by matching the file name and path. The most common example of this would be if you want to add your own styles or change the core style settings.
109
109
 
110
110
  To add your own styles copy the [`styles.scss`](https://github.com/daviddarnes/alembic/blob/master/assets/styles.scss) into your own project with the same file path (`assets/styles.scss`). From there you can add your own styles, you can even optionally ignore the theme styles by removing the `@import "alembic";` line.
111
111
 
112
- If you're just looking to set your own colours and fonts copy the [`_settings.scss`](https://github.com/daviddarnes/alembic/blob/master/_sass/_settings.scss) and main theme styles file [`alembic.scss`](https://github.com/daviddarnes/alembic/blob/master/_sass/alembic.scss) into your project at the same file path (`_sass/`) and change variables however you wish. The settings are a mixture of custom variables and settings from [Sassline](https://medium.com/@jakegiltsoff/sassline-v2-0-e424b2881e7e) - follow the link to find out how to configure the typographic settings.
112
+ If you're looking to set your own colours and fonts you can overwrite them by matching the variable names from the [`_settings.scss`](https://github.com/daviddarnes/alembic/blob/master/_sass/_settings.scss) file in your own `styles.scss`, make sure to state them before the `@import "alembic";` line so they take effect. The settings are a mixture of custom variables and settings from [Sassline](https://medium.com/@jakegiltsoff/sassline-v2-0-e424b2881e7e) - follow the link to find out how to configure the typographic settings.
113
113
 
114
114
  ## Configuration
115
115
 
@@ -1,39 +1,39 @@
1
1
  // Background colours
2
- $backgroundColour: #ffffff;
3
- $codeBackgroundColour: #fafafa;
4
- $featureBackgroundColour: #f9fafa;
2
+ $backgroundColour: #ffffff !default;
3
+ $codeBackgroundColour: #fafafa !default;
4
+ $featureBackgroundColour: #f9fafa !default;
5
5
  $accentColour: #05bf85;
6
6
 
7
7
  // Text colours
8
- $headingColour: #242e2b;
9
- $bodyColour: #384743;
10
- $linkColour: #05bf85;
11
- $hoverColour: #008000;
12
- $focusColour: #fa407a;
13
- $captionColour: #a8adac;
14
- $white: #ffffff;
8
+ $headingColour: #242e2b !default;
9
+ $bodyColour: #384743 !default;
10
+ $linkColour: #05bf85 !default;
11
+ $hoverColour: #008000 !default;
12
+ $focusColour: #fa407a !default;
13
+ $captionColour: #a8adac !default;
14
+ $white: #ffffff !default;
15
15
 
16
16
  // Typography
17
17
  $bodytype: (
18
- font-family: 'Georgia, serif',
18
+ font-family: "Georgia, serif",
19
19
  regular: 400,
20
20
  bold: 700,
21
21
  italic: italic,
22
22
  cap-height: 0.75
23
- );
23
+ ) !default;
24
24
 
25
25
  $headingtype: (
26
26
  font-family: '"Merriweather", serif',
27
27
  regular: 400,
28
28
  bold: 700,
29
29
  cap-height: 0.75
30
- );
30
+ ) !default;
31
31
 
32
32
  $monospacetype: (
33
- font-family: 'Menlo, monospace',
33
+ font-family: "Menlo, monospace",
34
34
  regular: 400,
35
35
  cap-height: 0.68
36
- );
36
+ ) !default;
37
37
 
38
38
  // Font import, if you're using a non-standard web font
39
- @import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
39
+ @import url("https://fonts.googleapis.com/css?family=Merriweather:400,700");
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alembic-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.11
4
+ version: 3.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Darnes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-06 00:00:00.000000000 Z
11
+ date: 2019-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: '0.9'
159
+ version: '0.11'
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: '0.9'
166
+ version: '0.11'
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: bundler
169
169
  requirement: !ruby/object:Gem::Requirement