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 {
|
||||
position: relative;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
width: 200%;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
min-height: 400px;
|
||||
overflow: hidden;
|
||||
|
@ -110,12 +110,12 @@ body {
|
|||
background-color: fade(@base-color,30);
|
||||
}
|
||||
img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
min-width: 50%;
|
||||
min-height: 50%;
|
||||
}
|
||||
|
@ -290,7 +290,7 @@ body {
|
|||
h3 {
|
||||
margin: 0;
|
||||
.font-rem(28);
|
||||
a {
|
||||
a {
|
||||
color: @primary;
|
||||
}
|
||||
@media @medium {
|
||||
|
@ -304,11 +304,11 @@ body {
|
|||
.list-item {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
h4 {
|
||||
h4 {
|
||||
.font-rem(18);
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
span {
|
||||
span {
|
||||
display: block;
|
||||
.font-rem(14);
|
||||
color: lighten(@base-color,50);
|
||||
|
@ -322,7 +322,7 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
// Post Index
|
||||
// Post Index
|
||||
// --------------------------------------------------
|
||||
#post-index {
|
||||
#main {
|
||||
|
@ -364,6 +364,16 @@ body {
|
|||
a {
|
||||
color: lighten(@text-color,20);
|
||||
}
|
||||
|
||||
footer {
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.fancy-icons {
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Social Share
|
||||
|
@ -371,7 +381,7 @@ body {
|
|||
.socialcount {
|
||||
.font-rem(16);
|
||||
font-weight: 700;
|
||||
li {
|
||||
li {
|
||||
padding-left: 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.
|
||||
url: https://blog.kempkens.io
|
||||
source_url: https://github.com/nifoc/blog.kempkens.io
|
||||
ipv6_enabled: true
|
||||
|
||||
# Owner/author information
|
||||
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>.
|
||||
{% 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