spice-rack 0.3.0 → 0.4.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: 637893312a1c607d304a8d379255d7e1ceeb48f4
4
- data.tar.gz: 4c4bd494e4fa7aa8efc6b86277dcaaf82a7f58a0
3
+ metadata.gz: 32373f3e393f9f4a722d6746942038d72ea32939
4
+ data.tar.gz: 9d6c3b6128f20498f017cbae6a3037ea175194c0
5
5
  SHA512:
6
- metadata.gz: c02b615627f40a98e5c4c88ef0787a7e9eaad24a37520753fdaef9e736ba9bd5e28e3a2e615b989895d7747aeabff2c433630400b13bf370971e6e25b53e0433
7
- data.tar.gz: 45818a21a75c8a67c36a77b8ddcc8e8f6c6a6210271d345b97811d1d41b3447db3f47b2c7789587b5105e928a986e1cd4be03ed5a664ab0dff763f83517c0238
6
+ metadata.gz: 70e8002e0de918a7de30349258c008e3d8dc094968a3fccc97f571bffba20478798d232190ab8b030caf3cc194f8111b347dd7d3645bafcfc8fb3a106133f209
7
+ data.tar.gz: 62505a1aca126be2f6aab0074f78df48f4f26d2af6ebe46538da931e3c24ac2d4bf5b6dd7e73ac53670c89e71aed650b4b439a555ae2ba21192ea7349b537f9f
@@ -6,6 +6,7 @@
6
6
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
7
  <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
8
 
9
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
9
10
  <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
10
11
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
11
12
  <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
@@ -1,14 +1,16 @@
1
1
  <header>
2
2
  <div class="navigation-wrapper">
3
- <h1>Michael Anhari</h1>
4
- <nav>
5
- <ul>
6
- <li><a href="#">code</a></li>
7
- <li><a href="#">cooking</a></li>
8
- <li><a href="#">design</a></li>
9
- <li><a href="#">readings</a></li>
10
- <li><a href="#">writings</a></li>
11
- </ul>
12
- </nav>
3
+ <h1><a href="/">{{site.author}}</a></h1>
4
+ <ul>
5
+ <li>
6
+ <a href="https://github.com/{{site.github_username}}">
7
+ <i class="fa fa-github"></i>
8
+ </a>
9
+ </li>
10
+ <a href="https://twitter.com/{{site.twitter_username}}">
11
+ <i class="fa fa-twitter"></i>
12
+ </a>
13
+ </li>
14
+ </ul>
13
15
  </div>
14
16
  </header>
@@ -3,9 +3,8 @@ layout: default
3
3
  ---
4
4
  <section class="introduction">
5
5
  <div class="bio">
6
- <p>
7
- {{ content }}
8
- </p>
6
+ <p>{{site.description}}</p>
7
+ {{ content }}
9
8
  </div>
10
9
  </section>
11
10
  <section class="articles">
@@ -1,12 +1,16 @@
1
1
  header {
2
2
  @include outer-container;
3
- @include padding(null null 1em null);
3
+ @include padding(1em null 1em null);
4
4
  border-bottom: $base-border;
5
5
 
6
6
  .navigation-wrapper {
7
7
  @include span-columns(12);
8
8
  }
9
9
 
10
+ h1 {
11
+ @include margin(0 null .3em null);
12
+ }
13
+
10
14
  ul {
11
15
  text-align: center;
12
16
 
@@ -2,6 +2,7 @@
2
2
  @include margin(null .5em null null);
3
3
  @include padding(.1em .5em .1em .5em);
4
4
  background: $rose-water;
5
+ border-bottom: 1px solid $tobasco;
5
6
  border-radius: 3px;
6
7
  color: $tobasco;
7
8
  display: inline-block;
@@ -31,7 +31,7 @@ $rose-water: #faf5f5;
31
31
 
32
32
  // Font Colors
33
33
  $base-font-color: $dark-gray;
34
- $action-color: tint($tobasco, 30%);
34
+ $action-color: $tobasco;
35
35
 
36
36
  // Border
37
37
  $base-border-color: $light-gray;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spice-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Anhari