Add IPv6 icon to the footer
This commit is contained in:
parent
a5b107e0bb
commit
0d98914ba2
3 changed files with 34 additions and 17 deletions
|
@ -94,9 +94,9 @@ body {
|
||||||
}
|
}
|
||||||
.entry-image {
|
.entry-image {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -50%;
|
top: -50%;
|
||||||
left: -50%;
|
left: -50%;
|
||||||
width: 200%;
|
width: 200%;
|
||||||
height: 200%;
|
height: 200%;
|
||||||
min-height: 400px;
|
min-height: 400px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -110,12 +110,12 @@ body {
|
||||||
background-color: fade(@base-color,30);
|
background-color: fade(@base-color,30);
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
min-width: 50%;
|
min-width: 50%;
|
||||||
min-height: 50%;
|
min-height: 50%;
|
||||||
}
|
}
|
||||||
|
@ -290,7 +290,7 @@ body {
|
||||||
h3 {
|
h3 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
.font-rem(28);
|
.font-rem(28);
|
||||||
a {
|
a {
|
||||||
color: @primary;
|
color: @primary;
|
||||||
}
|
}
|
||||||
@media @medium {
|
@media @medium {
|
||||||
|
@ -304,11 +304,11 @@ body {
|
||||||
.list-item {
|
.list-item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
h4 {
|
h4 {
|
||||||
.font-rem(18);
|
.font-rem(18);
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
display: block;
|
display: block;
|
||||||
.font-rem(14);
|
.font-rem(14);
|
||||||
color: lighten(@base-color,50);
|
color: lighten(@base-color,50);
|
||||||
|
@ -322,7 +322,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Post Index
|
// Post Index
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
#post-index {
|
#post-index {
|
||||||
#main {
|
#main {
|
||||||
|
@ -364,6 +364,16 @@ body {
|
||||||
a {
|
a {
|
||||||
color: lighten(@text-color,20);
|
color: lighten(@text-color,20);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fancy-icons {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Social Share
|
// Social Share
|
||||||
|
@ -371,7 +381,7 @@ body {
|
||||||
.socialcount {
|
.socialcount {
|
||||||
.font-rem(16);
|
.font-rem(16);
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
li {
|
li {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ disqus_shortname: blog-kempkens-io
|
||||||
#Your site's domain goes here. Leave localhost server or blank when working locally.
|
#Your site's domain goes here. Leave localhost server or blank when working locally.
|
||||||
url: https://blog.kempkens.io
|
url: https://blog.kempkens.io
|
||||||
source_url: https://github.com/nifoc/blog.kempkens.io
|
source_url: https://github.com/nifoc/blog.kempkens.io
|
||||||
|
ipv6_enabled: true
|
||||||
|
|
||||||
# Owner/author information
|
# Owner/author information
|
||||||
owner:
|
owner:
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
<span>
|
<p>
|
||||||
© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/hpstr/">HPSTR Theme</a>.
|
© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/hpstr/">HPSTR Theme</a>.
|
||||||
{% if site.source_url %}<br><a href="{{ site.source_url }}">Source on GitHub</a>{% endif %}
|
{% if site.source_url %}<br><a href="{{ site.source_url }}">Source on GitHub</a>{% endif %}
|
||||||
</span>
|
</p>
|
||||||
|
|
||||||
|
{% if site.ipv6_enabled %}
|
||||||
|
<p class="fancy-icons">
|
||||||
|
<a href="https://en.wikipedia.org/wiki/IPv6">{% image footer/ipv6.png %}</a>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue