Fix colour scheme and tweak font sizes

This commit is contained in:
Thomas Busby
2018-05-26 01:27:25 +02:00
parent ca12a19c7c
commit ad6fb2cf02
3 changed files with 28 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
title: cryptoanarchy.wiki title: cryptoanarchy.wiki
description: Arise, you have nothing to lose but your barbed wire fences! description: Arise, you have nothing to lose but your barbed wire fences!
author: cryptoanarchy.wiki author: cryptoanarchy.wiki
github: https://github.com/cryptoanarchywiki github: https://github.com/cryptoanarchywiki/cryptoanarchywiki.github.io
about: Arise, you have nothing to lose but your barbed wire fences! about: Arise, you have nothing to lose but your barbed wire fences!
disqus_shortname: stackproblems disqus_shortname: stackproblems
google_analytics: UA-XXXXXXXX-Y google_analytics: UA-XXXXXXXX-Y
@@ -18,10 +18,10 @@ collections:
social: social:
- icon: fa-twitter - icon: fa-twitter
link: "https://twitter.com/_cryptoanarchy" link: "https://twitter.com/_cryptoanarchy"
- icon: fa-github
link: "https://github.com/agusmakmun"
- icon: fa-facebook - icon: fa-facebook
link: "https://www.facebook.com/cryptoanarchy.wiki" link: "https://www.facebook.com/cryptoanarchy.wiki"
- icon: fa-github
link: "https://github.com/cryptoanarchywiki"
share: share:
twitter_username: _cryptoanarchy twitter_username: _cryptoanarchy

View File

@@ -132,7 +132,7 @@ layout: compress
<div class="col-sm-3"> <div class="col-sm-3">
<div class="fixed-condition"> <div class="fixed-condition">
<a href="/"><img class="profile-avatar" src="{{ site.avatar_url }}" height="75px" width="75px" /></a> <a href="/"><img class="profile-avatar" src="{{ site.avatar_url }}" height="75px" width="75px" /></a>
<h1 class="author-name">{{ site.author }}</h1> <h1 class="author-name"><a href="/">{{ site.author }}</a></h1>
{% if site.about %} {% if site.about %}
<div class="profile-about"> <div class="profile-about">
{{ site.about }} {{ site.about }}
@@ -165,7 +165,7 @@ layout: compress
<footer> <footer>
&copy; {{ site.author }} &copy; {{ site.author }}
{% if site.github %} {% if site.github %}
- <a href="{{ site.github }}">{{ site.github }}</a> - Powered by Jekyll. - <a href="{{ site.github }}">{{ site.github }}</a>
{% endif %} {% endif %}
</footer> </footer>
</div> </div>

View File

@@ -31,10 +31,10 @@ h2, h3 {
} }
a, a:link, a:active { a, a:link, a:active {
text-decoration: none; text-decoration: none;
color: #3fa757; color: #981ceb;
} }
a:hover { a:hover {
color: #B3B3B3; color: #a0a0a0;
text-decoration: underline; text-decoration: underline;
} }
@@ -84,11 +84,11 @@ footer {
/* Left column */ /* Left column */
div.col-sm-3 { div.col-sm-3 {
margin-top: 100px; margin-top: 100px;
font-size: 11px; font-size: 14px;
color: #666; color: #666;
} }
div.col-sm-3 strong { div.col-sm-3 strong {
font-size: 16px; font-size: 18px;
color: #4A4A4A; color: #4A4A4A;
font-weight: normal; font-weight: normal;
} }
@@ -105,6 +105,12 @@ div.col-sm-3 img.profile-avatar {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
.author-name a,
.author-name a:active,
.author-name a:hover {
color: #696969;
text-decoration: none;
}
/* Pagination */ /* Pagination */
.PageNavigation { .PageNavigation {
@@ -125,6 +131,19 @@ div.col-sm-3 img.profile-avatar {
.PageNavigation .prev { .PageNavigation .prev {
text-align: left; text-align: left;
} }
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background-color: #9943d2;
border-color: #9943d2;
}
.pagination > li > a,
.pagination > li > span {
color: #981ceb;
}
/* Social Icons */ /* Social Icons */
.social{ .social{