diff --git a/_layouts/default.html b/_layouts/default.html
index 2ef4c43a..8c655be1 100755
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -96,6 +96,9 @@ layout: table_wrappers
{% endif %}
{% endfor %}
{% endif %}
+
@@ -163,10 +166,10 @@ layout: table_wrappers
{% endfor %}
{% endif %}
-
+
{% capture footer_custom %}
{%- include footer_custom.html -%}
{% endcapture %}
diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss
index 826ffc35..c302c772 100755
--- a/_sass/custom/custom.scss
+++ b/_sass/custom/custom.scss
@@ -203,20 +203,23 @@ img {
// Back to top button
.top-link {
display: block;
- color: $body-text-color;
+ color: $grey-dk-000;
font-size: 2rem;
font-weight: bold;
border-width:2px;
border-style:solid;
border-color: $grey-lt-300;
border-radius: 12px;
- box-shadow: 1px 2px $grey-dk-000;
+ box-shadow: 1px 2px 3px $grey-lt-300;
padding: 0.1rem 1rem;
position: fixed;
bottom: 30px;
right: 40px;
+ z-index: 1;
&:hover {
- border-color: $body-text-color;
+ border-color: $grey-dk-000;
+ background-color: $sidebar-color;
+ color: $body-text-color;
}
}