summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sass/parts/_header.scss7
-rw-r--r--source/_includes/header.html3
-rw-r--r--source/images/linkedin.pngbin0 -> 1371 bytes
3 files changed, 10 insertions, 0 deletions
diff --git a/sass/parts/_header.scss b/sass/parts/_header.scss
index b22b1e0..3c13875 100644
--- a/sass/parts/_header.scss
+++ b/sass/parts/_header.scss
@@ -206,6 +206,13 @@ header{
border: 1px solid darken(rgb(175,182,202), 10%);
}
}
+ &.linkedin{
+ background: image-url('linkedin.png') center no-repeat #005A87;
+ border: 1px solid #005A87;
+ &:hover{
+ border: 1px solid darken(#005A87, 10%);
+ }
+ }
&.pinterest{
background: image-url('pinterest.png') center no-repeat rgb(190,64,55);
border: 1px solid rgb(190,64,55);
diff --git a/source/_includes/header.html b/source/_includes/header.html
index 168853d..e5026c2 100644
--- a/source/_includes/header.html
+++ b/source/_includes/header.html
@@ -18,6 +18,9 @@
{% if site.github_user %}
<a class="github" href="https://github.com/{{ site.github_user }}" title="GitHub">GitHub</a>
{% endif %}
+ {% if site.linkedin_user %}
+ <a class="linkedin" href="http://www.linkedin.com/in/{{ site.linkedin_user }}">LinkedIn</a>
+ {% endif %}
{% if site.pinterest_user %}
<a class="pinterest" href="https://pinterest.com/{{ site.pinterest_user }}" title="Pinterest">Pinterest</a>
{% endif %}
diff --git a/source/images/linkedin.png b/source/images/linkedin.png
new file mode 100644
index 0000000..1a7ae91
--- /dev/null
+++ b/source/images/linkedin.png
Binary files differ