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/delicious.pngbin0 -> 1064 bytes
3 files changed, 10 insertions, 0 deletions
diff --git a/sass/parts/_header.scss b/sass/parts/_header.scss
index 12417c0..b22b1e0 100644
--- a/sass/parts/_header.scss
+++ b/sass/parts/_header.scss
@@ -213,6 +213,13 @@ header{
border: 1px solid darken(rgb(190,64,55), 10%);
}
}
+ &.delicious{
+ background: image-url('delicious.png') center no-repeat rgb(50,113,203);
+ border: 1px solid rgb(50,113,203);
+ &:hover{
+ border: 1px solid darken(rgb(50,113,203), 10%);
+ }
+ }
&.rss{
background: image-url('rss.png') center no-repeat #EF7522;
border: 1px solid #EF7522;
diff --git a/source/_includes/header.html b/source/_includes/header.html
index b0854ca..2985d7f 100644
--- a/source/_includes/header.html
+++ b/source/_includes/header.html
@@ -21,6 +21,9 @@
{% if site.pinterest_user %}
<a class="pinterest" href="https://pinterest.com/{{ site.pinterest_user }}" title="Pinterest">Pinterest</a>
{% endif %}
+ {% if site.delicious_user %}
+ <a class="delicious" href="http://delicious.com/{{ site.delicious_user }}" title="Delicious">Delicious</a>
+ {% endif %}
{% if site.subscribe_rss %}
<a class="rss" href="{{ site.subscribe_rss }}" title="RSS">RSS</a>
{% endif %}
diff --git a/source/images/delicious.png b/source/images/delicious.png
new file mode 100644
index 0000000..a936776
--- /dev/null
+++ b/source/images/delicious.png
Binary files differ