sanguine 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/disqus_comments.html +14 -17
- data/_includes/footer.html +6 -1
- data/_sass/sanguine/_base.scss +17 -8
- data/_sass/sanguine/_home.scss +3 -13
- data/_sass/sanguine/_layout.scss +8 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72da506a96c72bf3d20fccfaa977da56242dd6c1
|
|
4
|
+
data.tar.gz: 96e441e1fa73b3540b46885878e3667c4678e4e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28609c09ca8a3299142ce089168a371e4f141910eb49b8e0003937890149c1ef0abeabcbf31bc5b6d4fdeb1c8ad8e899f99fba8565a732d5c9ed260a41bb50b6
|
|
7
|
+
data.tar.gz: f2c7f46231da11f2b4534f4fe9b7876a2d8b0b4787a2fef8d65c2ba5842373dd250b70387a3c43c7d4cea460698bd83ed0803973565792884a608b7a028aa2bb
|
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</script>
|
|
16
|
-
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
|
|
17
|
-
{% endif %}
|
|
1
|
+
<div id="disqus_thread"></div>
|
|
2
|
+
<script>
|
|
3
|
+
var disqus_config = function () {
|
|
4
|
+
this.page.url = '{{ page.url | absolute_url }}';
|
|
5
|
+
this.page.identifier = '{{ page.url | absolute_url }}';
|
|
6
|
+
};
|
|
7
|
+
(function() {
|
|
8
|
+
var d = document, s = d.createElement('script');
|
|
9
|
+
s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
|
|
10
|
+
s.setAttribute('data-timestamp', +new Date());
|
|
11
|
+
(d.head || d.body).appendChild(s);
|
|
12
|
+
})();
|
|
13
|
+
</script>
|
|
14
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
|
data/_includes/footer.html
CHANGED
|
@@ -43,7 +43,12 @@
|
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
<div class="footer-col footer-col-3">
|
|
46
|
-
<
|
|
46
|
+
<!-- <span>
|
|
47
|
+
{% if site.image %}
|
|
48
|
+
<img class="site-image" src={{site.url}}/{{site.image}}/>
|
|
49
|
+
{% endif %} -->
|
|
50
|
+
<p>{{ site.description | escape }}</p>
|
|
51
|
+
<!-- </span> -->
|
|
47
52
|
</div>
|
|
48
53
|
</div>
|
|
49
54
|
|
data/_sass/sanguine/_base.scss
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@charset "utf-8";
|
|
2
2
|
|
|
3
|
-
$primary-color: #
|
|
4
|
-
$hover-color:
|
|
3
|
+
$primary-color: #ff4400;
|
|
4
|
+
$hover-color: #307EA9;
|
|
5
5
|
$hover-background-color: $primary-color;
|
|
6
|
-
$font-color:
|
|
7
|
-
$divider-color: #
|
|
6
|
+
$font-color: #000000;
|
|
7
|
+
$divider-color: #d9d9d9;
|
|
8
8
|
|
|
9
9
|
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
10
10
|
$base-font-size: 16px !default;
|
|
@@ -14,9 +14,9 @@ $base-line-height: 1.5 !default;
|
|
|
14
14
|
|
|
15
15
|
$spacing-unit: 30px !default;
|
|
16
16
|
|
|
17
|
-
$text-color: #
|
|
18
|
-
$background-color: #
|
|
19
|
-
$background-color-alt: #
|
|
17
|
+
$text-color: #000000 !default;
|
|
18
|
+
$background-color: #ffffff !default;
|
|
19
|
+
$background-color-alt: #ffffff !default;
|
|
20
20
|
$brand-color: #2a7ae2 !default;
|
|
21
21
|
|
|
22
22
|
$grey-color: #828282 !default;
|
|
@@ -101,10 +101,19 @@ a {
|
|
|
101
101
|
text-decoration: none;
|
|
102
102
|
|
|
103
103
|
&:hover {
|
|
104
|
-
color: $hover-color
|
|
104
|
+
color: $hover-color
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.username {
|
|
109
109
|
margin-left: 5px;
|
|
110
110
|
}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
.flex {
|
|
114
|
+
display: flex;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.panel {
|
|
118
|
+
flex: 1
|
|
119
|
+
}
|
data/_sass/sanguine/_home.scss
CHANGED
|
@@ -8,18 +8,10 @@
|
|
|
8
8
|
margin: 0;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.flex {
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
11
|
.center {
|
|
16
12
|
margin-top: 40vh;
|
|
17
13
|
}
|
|
18
14
|
|
|
19
|
-
.panel {
|
|
20
|
-
flex: 1
|
|
21
|
-
}
|
|
22
|
-
|
|
23
15
|
.unstyled {
|
|
24
16
|
padding: 0;
|
|
25
17
|
margin: 20px 0 0 0;
|
|
@@ -32,13 +24,10 @@
|
|
|
32
24
|
}
|
|
33
25
|
|
|
34
26
|
.inline li:hover {
|
|
35
|
-
background-color:
|
|
36
|
-
|
|
37
|
-
a {
|
|
38
|
-
color: $hover-color;
|
|
39
|
-
}
|
|
27
|
+
background-color: $primary-color;
|
|
40
28
|
|
|
41
29
|
i {
|
|
30
|
+
color: #ffffff;
|
|
42
31
|
transition: all .2s ease-in-out;
|
|
43
32
|
transform: translateY(-15px);
|
|
44
33
|
}
|
|
@@ -61,6 +50,7 @@
|
|
|
61
50
|
background-color: transparent;
|
|
62
51
|
|
|
63
52
|
i {
|
|
53
|
+
color: $hover-color;
|
|
64
54
|
transition: none;
|
|
65
55
|
transform: none;
|
|
66
56
|
}
|
data/_sass/sanguine/_layout.scss
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*/
|
|
4
4
|
.site-header {
|
|
5
5
|
background-color: $background-color-alt;
|
|
6
|
-
border-bottom: 1px solid $divider-color;
|
|
7
6
|
min-height: $spacing-unit * 1.865;
|
|
8
7
|
|
|
9
8
|
// Positioning context for the mobile navigation icon
|
|
10
9
|
position: relative;
|
|
10
|
+
border-bottom: 1px solid $divider-color;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.site-title {
|
|
@@ -17,15 +17,7 @@
|
|
|
17
17
|
letter-spacing: -1px;
|
|
18
18
|
margin-bottom: 0;
|
|
19
19
|
float: left;
|
|
20
|
-
|
|
21
|
-
&,
|
|
22
|
-
&:visited {
|
|
23
|
-
color: white;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&:hover {
|
|
27
|
-
border-bottom: 1px solid $primary-color;
|
|
28
|
-
}
|
|
20
|
+
color: $primary-color;
|
|
29
21
|
}
|
|
30
22
|
|
|
31
23
|
.site-nav {
|
|
@@ -115,7 +107,6 @@
|
|
|
115
107
|
*/
|
|
116
108
|
.site-footer {
|
|
117
109
|
background-color: $background-color-alt;
|
|
118
|
-
border-top: 1px solid $divider-color;
|
|
119
110
|
padding: $spacing-unit 0;
|
|
120
111
|
}
|
|
121
112
|
|
|
@@ -124,6 +115,12 @@
|
|
|
124
115
|
margin-bottom: $spacing-unit / 2;
|
|
125
116
|
}
|
|
126
117
|
|
|
118
|
+
.site-image {
|
|
119
|
+
height: 30px;
|
|
120
|
+
width: 30px;
|
|
121
|
+
border-radius: 5px;
|
|
122
|
+
}
|
|
123
|
+
|
|
127
124
|
.contact-list,
|
|
128
125
|
.social-media-list {
|
|
129
126
|
list-style: none;
|
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.
|
|
4
|
+
version: 1.1.0
|
|
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-
|
|
11
|
+
date: 2017-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|