nichols-works 0.0.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92894032c3b6c62d9e71572df8a89824724f3a9c
4
- data.tar.gz: 12c61e3a406b4905f0edb0c02989186c3e530a93
3
+ metadata.gz: 1aa49cce292d21b22c743db11e1714cae038f05c
4
+ data.tar.gz: 4c3605da33b56237400a04075780e34aeca139e2
5
5
  SHA512:
6
- metadata.gz: 4b60a49b7f99292be2fc6844e698f65e1999545e88195d91a523b0e5fcaf59212678dada6fd24a98fd4695f014ee88ecab66448c12f17bb78e434574a80dad33
7
- data.tar.gz: 91ad7dba6ec86514cb05c72d8ff69c19c0f2a7e17ed489b1dfcda02f56b41e58e4ce2ce99f88059ddb4b7cf59dc6d8a2df19cd8abad95a9c4e3a9cd02f7ecd15
6
+ metadata.gz: 7ecf3c0df7df8f910f8fbf7154031477465c9c50557a81c2fe1cc154978c07f952e1f69a43e8d271f0dc95f633aba6f21072d8ee80ac78ce9ce29a2a44cb908a
7
+ data.tar.gz: 20bf7d99775800cfe429cb52dc6aa63bc7b5adf4c338ef9edd899097360c28f103a968705ed6bfc99a9ad7811579dead7adb28542cc1ea4cde7d85a1ba338668
@@ -3,29 +3,30 @@
3
3
  <body class="is-loading">
4
4
  <header class="panel">
5
5
  <section class="container">
6
- <div class="overlay"></div>
7
- <div class="contents">
8
- <div class="title">
9
- {{ site.subtitle }}
6
+ <div class="contents">
7
+ <div class="title">
8
+ {{ site.subtitle }}
9
+ </div>
10
+ <hr class="divider large" />
11
+ <div class="description">
12
+ {{ site.description }}
13
+ </div>
14
+ <hr class="divider small" />
15
+ <nav>
16
+ <ul>
17
+ {% if site.posts.size != 0 %}
18
+ <li class="social-link">
19
+ <a href="{{ '/blog' | relative_url }}">Blog</a>
20
+ </li>
21
+ {% endif %}
22
+ {% for social in site.social %}
23
+ <li class="social-link">
24
+ <a href="{{ social[1].uri }}"><i class="fa {{ social[1].icon }}"></i></a>
25
+ </li>
26
+ {% endfor %}
27
+ </ul>
28
+ </nav>
10
29
  </div>
11
- <hr class="divider large" />
12
- <div class="description">
13
- {{ site.description }}
14
- </div>
15
- <hr class="divider small" />
16
- <nav>
17
- <ul>
18
- <li class="social-link">
19
- <a href="{{ '/blog' | relative_url }}">Blog</a>
20
- </li>
21
- {% for social in site.social %}
22
- <li class="social-link">
23
- <a href="{{ social[1].uri }}"><i class="fa {{ social[1].icon }}"></i></a>
24
- </li>
25
- {% endfor %}
26
- </ul>
27
- </nav>
28
- </div>
29
30
  </section>
30
31
  </header>
31
32
  </body>
@@ -0,0 +1 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond|Proza+Libre');
@@ -1,6 +1,8 @@
1
1
  @import 'variables';
2
2
 
3
3
  .panel {
4
+ font-family: 'Cormorant Garamond', serif;
5
+
4
6
  display: block;
5
7
  width: 100%;
6
8
  height: 100%;
@@ -13,23 +15,30 @@
13
15
  }
14
16
 
15
17
  .container {
16
- display: block;
18
+ display: table;
17
19
  position: relative;
18
20
  width: 100%;
19
21
  height: 100%;
22
+ background: linear-gradient(-45deg, rgba(0, 0, 0, 0.7), rgba(75, 75, 75, 0.4));
20
23
  }
21
24
 
22
- .overlay {
23
- position: absolute;
24
- left: 0;
25
- top: 0;
26
- width: 100%;
27
- height: 100%;
28
- background: linear-gradient(-45deg, rgba(0, 0, 0, 0.7), rgba(75, 75, 75, 0.4));
25
+ .title {
26
+ font-weight: 600;
27
+ font-size: 4em;
28
+ }
29
+
30
+ .description {
31
+ font-weight: 500;
32
+ font-size: 1.5em;
33
+ }
34
+
35
+ hr {
36
+ border: none;
29
37
  }
30
38
 
31
39
  .divider {
32
40
  color: $secondary-font-color;
41
+ border-top: 1px solid rgba(204, 204, 204, 0.35);
33
42
 
34
43
  &.small {
35
44
  width: 25%;
@@ -41,17 +50,15 @@
41
50
  }
42
51
 
43
52
  .contents {
44
- position: absolute;
45
- left: 0;
46
- top: 0;
47
- width: 100%;
48
- height: 100%;
53
+ display: table-cell;
54
+ vertical-align: middle;
55
+ padding: 10%;
49
56
  text-align: center;
50
57
 
51
58
  .title {
52
59
  margin: 0 0 5px 0;
53
60
  font-size: 2.5em;
54
- letter-spacing: 4px;
61
+ letter-spacing: 1px;
55
62
  }
56
63
 
57
64
  .subtitle {
@@ -4,4 +4,5 @@
4
4
 
5
5
  @import 'reset';
6
6
  @import 'font-awesome/font-awesome';
7
+ @import 'base';
7
8
  @import 'components/panel';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nichols-works
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Nichols
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-18 00:00:00.000000000 Z
11
+ date: 2017-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,7 @@ files:
80
80
  - _layouts/page.html
81
81
  - _layouts/post.html
82
82
  - _sass/_animate.scss
83
+ - _sass/_base.scss
83
84
  - _sass/_reset.scss
84
85
  - _sass/_variables.scss
85
86
  - _sass/_zenburn.scss