jekyll-bland 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6498a0b8c31a36234bf9c3cdd25b1ef0db4d3923
4
- data.tar.gz: bbb369ec6cf6f3a20049bbb7c6a8ce2e38a575e6
3
+ metadata.gz: 9ab51752ee176a175219a9a8c9befa2a5bb04e0b
4
+ data.tar.gz: 3aba0f0a89913e9973850bff3ee79cbd1a03a475
5
5
  SHA512:
6
- metadata.gz: 06bcae5c62095b2603addbcc65e4f8b7836598c1d0175e0516ec3ff9ea2c3cda216efbef2ed24fdd6896d5a07469307c0d802e4086a40241b37db5d11a4572c4
7
- data.tar.gz: e657667b1aaeb1030f966e21c388eb0ee0fbd8b651cfea0c87b6108237f0f6f870bcbf2f11b37506fae38c8069b2a63e9255c4b5300e719bd17a4d6ffe96fbf8
6
+ metadata.gz: 4d6ca2effe7e3fcd1414c7facbbf65a67725b05fb6cb368e863330f14513536f9e228d5eb4760d0910275e37ffd6a47ce04dc42d090ebc2451b3ae448fabf3db
7
+ data.tar.gz: a14d68a43a362d244afb6248565b60c2d68e22a833b711744fc958de32785c2899f1ac2184810b3b4a25e1de843617c1fd58a65a0968250bf9ad0e3bba6ee154
data/README.md CHANGED
@@ -7,21 +7,23 @@
7
7
 
8
8
  ![bland theme preview](/screenshot.png)
9
9
 
10
+ For a preview of the theme, take a look at [jamiedavies.me](https://jamiedavies.me). It is running *bland* with only a couple of small modifications (which you can view in the [repo for the site](https://github.com/daviesjamie/jamiedavies.me)).
11
+
10
12
  ## Features
11
13
 
12
- The main feature of bland is that there are very few features. What bland offers is a very stable, clean base that you can extend further to fulful your own needs, or leave as-is for a snappy lightweight site.
14
+ The main feature of bland is that there are very few features. What bland offers is a very stable, clean base that you can extend further to fulfil your own needs, or leave as-is for a snappy lightweight site.
13
15
 
14
16
  What bland can offer you is:
15
17
  - 4 (relatively) responsive layouts for your content:
16
18
  - `page` is a layout for your pages
17
19
  - `post` is a layout for your posts
18
20
  - `listing` is a layout for listing posts
19
- - `tags` is a layout for generating a list of your posts and the tags they belong to
21
+ - `tags` is a layout for generating a list of your tags and the posts that have those tags
20
22
  - An elegant, clean look
21
23
  - Simple CSS that is easy to extend and customise
22
24
  - Nothing else!
23
25
 
24
- Want to add Google Analytics to your site? Or Disqus comments? Override the default layouts and add some includes, and *do it yourself*.
26
+ Want to add Google Analytics to your site? Or Disqus comments? Override the default layouts, add some includes, and *do it yourself*.
25
27
 
26
28
  ## Installation
27
29
 
@@ -7,8 +7,8 @@ html {
7
7
 
8
8
  // Optimise text for legibility
9
9
  text-rendering: optimizeLegibility;
10
- -moz-osx-font-smoothing: grayscale;
11
- -webkit-font-smoothing: antialiased;
10
+ -moz-osx-font-smoothing: grayscale;
11
+ -webkit-font-smoothing: antialiased;
12
12
  }
13
13
 
14
14
  body {
@@ -108,7 +108,7 @@ pre {
108
108
  code {
109
109
  background-color: $color-grey-lightest;
110
110
  border-radius: .15em;
111
- color: $color-theme;
111
+ color: $color-mono;
112
112
  font-size: 90%;
113
113
  font-style: normal;
114
114
  font-weight: normal;
@@ -213,7 +213,7 @@ figure,
213
213
  img {
214
214
  border-radius: .25rem;
215
215
  display: block;
216
- margin: 0 0 1rem;
216
+ margin: 0 auto 1rem;
217
217
  }
218
218
 
219
219
  figure > figcaption {
@@ -148,7 +148,7 @@
148
148
  }
149
149
 
150
150
  .tag .count {
151
- color: $color-theme;
151
+ color: $color-mono;
152
152
  font-size: .7rem;
153
153
  vertical-align: super;
154
154
  }
data/_sass/bland.scss CHANGED
@@ -1,27 +1,27 @@
1
1
  // Text
2
2
  $font-main: Georgia, "Times New Roman", serif !default;
3
- $font-mono: Menlo, Monaco, "Courier New", monospace !default;
3
+ $font-mono: Menlo, Monaco, Consolas, "Andale Mono", "Lucida Console", "Courier New", monospace !default;
4
4
 
5
5
  $base-font-size: 21px !default;
6
6
  $small-font-size: 16px !default;
7
7
  $base-line-height: 1.5 !default;
8
8
 
9
9
  // Colours
10
- $color-theme: #5fb3b3 !default;
11
10
  $color-background: #fff !default;
12
11
  $color-text: #444 !default;
13
12
  $color-text-dark: #222 !default;
14
13
  $color-text-light: #666 !default;
15
14
  $color-text-lighter: #999 !default;
16
- $color-link: #222 !default;
17
- $color-link-hover: #000 !default;
18
- $color-link-underline: #ddd !default;
19
- $color-date: #999 !default;
20
-
21
15
  $color-grey-light: #ddd !default;
22
16
  $color-grey-lighter: #eee !default;
23
17
  $color-grey-lightest: #f5f5f5 !default;
24
18
 
19
+ $color-link: $color-text-dark !default;
20
+ $color-link-hover: #000 !default;
21
+ $color-link-underline: $color-grey-light !default;
22
+ $color-mono: #2aa198 !default;
23
+ $color-date: $color-text-lighter !default;
24
+
25
25
  // Break points
26
26
  $screen-medium: 48rem !default;
27
27
  $screen-small: 34rem !default;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-bland
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamie Davies
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-12 00:00:00.000000000 Z
11
+ date: 2017-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll