sanguine 1.1.4 → 1.1.5

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: e0360a4704cc05ff366e5ff3d8e30853e2a836f8
4
- data.tar.gz: 8983d84d54268e67d5c26f385b35a0ade4905790
3
+ metadata.gz: 486bb11552a6e5e505f1551839bdcb65d8d6daa7
4
+ data.tar.gz: 57543cb4df7d1ae01b05a115dc410ffad0799cdc
5
5
  SHA512:
6
- metadata.gz: 7d870b61e87290242f832cd93938ab69933b05e4e2fb9e0c18c6218f215e40cad053f6bf72b8e90295b5b19f6bb094ea44b60963e88c99b4a7bf7e5ccb796e3e
7
- data.tar.gz: e26e634314cdf1f74289f5e15bbcb55307d201d6712b2a633215117e88c93dfc5619807dde2beef79c5dfaa7899aa50bd9da900303da40cbf3811b2a03535fb0
6
+ metadata.gz: d9f99aae6a97d7c5a416b0f0ded1aa480b1677d172ca67f0bfe5e604731905660e9d8d36f41126d8a5600a3ec02506c7f1524b70bdec9c28239e8f5201213128
7
+ data.tar.gz: 75c463552920e39677ddbc552f852e70771ade4031ab41e191865e1d5739a589d55d19555b3f76a7a5e1ceb92aacbfc816234b4752b9396c7de569b53d0f429c
@@ -47,7 +47,7 @@
47
47
  {% if site.image %}
48
48
  <img class="site-image" src={{site.url}}/{{site.image}}/>
49
49
  {% endif %} -->
50
- <p>{{ site.description | escape }}</p>
50
+ <p>{{ site.long_description | escape }}</p>
51
51
  <!-- </span> -->
52
52
  </div>
53
53
  </div>
data/_includes/head.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
 
6
6
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
- <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
7
+ <meta name="description" content="{{ page.excerpt | default: site.short_description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
8
 
9
9
  <link rel='shortcut icon' type='image/x-icon' href="{{"/img/favicon.ico" | relative_url }}"/>
10
10
  <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
data/_layouts/home.html CHANGED
@@ -13,7 +13,7 @@
13
13
  <div class="panel">
14
14
  <div class="summary">
15
15
  <h1>{{site.greeting}}</h1>
16
- <h4>{{site.description}}</h4>
16
+ <h4>{{site.short_description}}</h4>
17
17
  <div class="home-nav">
18
18
  {% for path in page_paths %}
19
19
  {% assign my_page = site.pages | where: "path", path | first %}
@@ -7,7 +7,7 @@ $font-color: #000000;
7
7
  $divider-color: #d9d9d9;
8
8
 
9
9
  $base-font-family: "Open Sans", Arial, sans-serif !default;
10
- $base-font-size: 16px !default;
10
+ $base-font-size: 21px !default;
11
11
  $base-font-weight: 400 !default;
12
12
  $small-font-size: $base-font-size * 0.875 !default;
13
13
  $base-line-height: 1.5 !default;
@@ -16,7 +16,7 @@ $spacing-unit: 30px !default;
16
16
 
17
17
  $text-color: #000000 !default;
18
18
  $background-color: #ffffff !default;
19
- $background-color-alt: #ffffff !default;
19
+ $background-color-alt: #292929 !default;
20
20
  $brand-color: #2a7ae2 !default;
21
21
 
22
22
  $grey-color: #828282 !default;
@@ -26,7 +26,7 @@ $grey-color-dark: darken($grey-color, 25%) !default;
26
26
  // Width of the content area
27
27
  $content-width: 800px !default;
28
28
 
29
- $on-palm: 640px !default;
29
+ $on-palm: 732px !default;
30
30
  $on-laptop: 800px !default;
31
31
 
32
32
  // Use media queries like this:
@@ -2,12 +2,11 @@
2
2
  * Site header
3
3
  */
4
4
  .site-header {
5
- background-color: $background-color-alt;
5
+ background-color: $background-color;
6
6
  min-height: $spacing-unit * 1.865;
7
7
 
8
8
  // Positioning context for the mobile navigation icon
9
9
  position: relative;
10
- border-bottom: 1px solid $divider-color;
11
10
  }
12
11
 
13
12
  .site-title {
@@ -91,6 +90,7 @@
91
90
  .page-link {
92
91
  display: block;
93
92
  padding: 5px 10px;
93
+ color: #ffffff;
94
94
 
95
95
  &:not(:last-child) {
96
96
  margin-right: 0;
@@ -106,6 +106,7 @@
106
106
  * Site footer
107
107
  */
108
108
  .site-footer {
109
+ color: #ffffff;
109
110
  background-color: $background-color-alt;
110
111
  padding: $spacing-unit 0;
111
112
  }
@@ -128,7 +129,7 @@
128
129
  }
129
130
 
130
131
  .footer-col-wrapper {
131
- @include relative-font-size(0.9375);
132
+ @include relative-font-size(0.75);
132
133
  color: $grey-color;
133
134
  margin-left: -$spacing-unit / 2;
134
135
  @extend %clearfix;
@@ -182,6 +183,7 @@
182
183
  * Page content
183
184
  */
184
185
  .page-content {
186
+ @include relative-font-size(1);
185
187
  padding: $spacing-unit 0;
186
188
  }
187
189
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sanguine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austen Madden
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-30 00:00:00.000000000 Z
11
+ date: 2017-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll