sanguine 1.0.0 → 1.1.0

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: a456e7b467400fabfc4adb63f6ceb08b13b7c819
4
- data.tar.gz: 4024600abfc191b802a30f4de8780a04a8bbcedd
3
+ metadata.gz: 72da506a96c72bf3d20fccfaa977da56242dd6c1
4
+ data.tar.gz: 96e441e1fa73b3540b46885878e3667c4678e4e7
5
5
  SHA512:
6
- metadata.gz: 6e5bcd3681d4a8fe6b6a9c4712b9422c4e1e2ebe1b74fec422f916b7373c683462c3cc5ca4444b57d13afa625898e509f9445fe5e44839b18f04c2d5ae38b343
7
- data.tar.gz: ff1fcb275d1480947af467e02066584295a742f7a34ac928413d3369240dd445940d0c6b75150e7b72281837db47545054d9e5b1ceba076a19b401582380d6d3
6
+ metadata.gz: 28609c09ca8a3299142ce089168a371e4f141910eb49b8e0003937890149c1ef0abeabcbf31bc5b6d4fdeb1c8ad8e899f99fba8565a732d5c9ed260a41bb50b6
7
+ data.tar.gz: f2c7f46231da11f2b4534f4fe9b7876a2d8b0b4787a2fef8d65c2ba5842373dd250b70387a3c43c7d4cea460698bd83ed0803973565792884a608b7a028aa2bb
@@ -1,17 +1,14 @@
1
- {% if page.comments != false and jekyll.environment == "production" %}
2
-
3
- <div id="disqus_thread"></div>
4
- <script>
5
- var disqus_config = function () {
6
- this.page.url = '{{ page.url | absolute_url }}';
7
- this.page.identifier = '{{ page.url | absolute_url }}';
8
- };
9
- (function() {
10
- var d = document, s = d.createElement('script');
11
- s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
12
- s.setAttribute('data-timestamp', +new Date());
13
- (d.head || d.body).appendChild(s);
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>
@@ -43,7 +43,12 @@
43
43
  </div>
44
44
 
45
45
  <div class="footer-col footer-col-3">
46
- <p>{{ site.description | escape }}</p>
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
 
@@ -1,10 +1,10 @@
1
1
  @charset "utf-8";
2
2
 
3
- $primary-color: #e50914;
4
- $hover-color: white;
3
+ $primary-color: #ff4400;
4
+ $hover-color: #307EA9;
5
5
  $hover-background-color: $primary-color;
6
- $font-color: white;
7
- $divider-color: #3d3d3d;
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: #ffffff !default;
18
- $background-color: #000000 !default;
19
- $background-color-alt: #141414 !default;
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
+ }
@@ -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: red;
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
  }
@@ -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.0.0
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-10 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll