refactor some of the styles, start adding donation sectoin

pull/2/head
Brian Picciano 6 years ago
parent c61dcf483b
commit d1446c6d6f
  1. 2
      _config.yml
  2. 22
      _includes/header.html
  3. 8
      _layouts/post.html
  4. 45
      assets/main.css

@ -1,4 +1,4 @@
title: The Mediocre Blog
title: Mediocre Blog
author: Brian Picciano
email: mediocregopher@gmail.com
description: >-

@ -1,12 +1,12 @@
<header id="title-header" role="banner">
<div class="row">
<div class="row row-vertically-centered">
<div class="eight columns">
<h5 class="title">
<h1 class="title">
<a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
</h5>
</h1>
</div>
<div class="four columns">
<div class="four columns light">
<div class="social">
<span class="spaced">RSS/Social:</span>
<a class="spaced" href="{{ 'feed.xml' | relative_url }}">
@ -19,6 +19,20 @@
<i class="fab fa-twitter"></i>
</a>
</div>
<div class="donation">
<span>If you like what I do, consider donating!</span><br/>
<span>
<a href="https://cash.me/$mediocregopher">USD</a>
<a href="bitcoin:1KSqgPBQ7VWc5yxUT2DsB3VpsvRyahL2k8">BTC</a>
LTC
ETH
ZEC
</span>
</div>
</div>
</div>

@ -7,16 +7,16 @@ layout: default
<h1 id="post-headline" itemprop="name headline">
{{ page.title | escape }}
</h1>
<div id="post-sub-header">
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<div class="light">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ site.author }}</span>
</span>
<!-- -->
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
{{ page.date | date: "%b %-d, %Y" }}
</time>
<span itemprop="about">{{ page.description }}</span>
<span itemprop="about"><em>{{ page.description }}</em></span>
</div>
</header>

@ -2,15 +2,35 @@ ul {
list-style: circle;
}
.light {
color: #666;
}
.light a {
color: #666 !important;
}
.light a:hover {
color: #222;
}
/* for making all content within a row be vertically centered */
.row-vertically-centered .columns {
display: inline-block;
float: none;
margin-left: 0;
vertical-align: middle;
}
#title-header {
border-bottom: 1px solid #AAA;
border-bottom: 1px solid #666;
padding-top: 2rem;
padding-bottom:2rem;
}
#title-header .title {
margin-top: 2rem;
margin-bottom: 2rem;
margin-left: 0;
margin-right: 0;
margin: 0;
font-weight: bold;
}
#title-header .title a {
@ -18,18 +38,9 @@ ul {
text-decoration: none;
}
#title-header .social {
margin-top: 1rem;
}
#title-header .social .spaced {
color: #AAA;
text-decoration: none;
margin-right: 1em;
}
#title-header .social a:hover {
color: #222;
margin-right: 0.5em;
}
#posts-list {
@ -55,10 +66,6 @@ ul {
margin: 0;
}
#post-sub-header {
color: #AAA;
}
#post-content ul {
margin-left: 1em;
}

Loading…
Cancel
Save