remove hardcoded font-family

This commit is contained in:
Set Hallstrom 2020-07-28 12:06:08 +02:00
parent dd00fbdef2
commit 35880610bb
8 changed files with 10 additions and 10 deletions

View File

@ -102,7 +102,7 @@ lang: en
</div>
</div>
<div class="content" style="font-family: monospace;font-size: 16px;margin-top:60px;">
<div class="content" style="font-size: 16px;margin-top:60px;">
{{ content }}
<p>{{ page.credits }}</p>
</div>

View File

@ -102,7 +102,7 @@
</div>
</div>
<div class="content" style="font-family: monospace;font-size: 16px;margin-top:60px;">
<div class="content" style="font-size: 16px;margin-top:60px;">
{{ content }}
<p>{{ page.credits }}</p>
</div>

View File

@ -43,7 +43,7 @@ layout: default
<!-- Content -->
<div class="content">
{% unless page.all.UNSYNCEDLYRICS == '' %}<h2>Lyrics</h2>{% endunless %}
<p style="font-family: monospace;font-size:16px;">
<p style="font-size:16px;">
{{ page.all.UNSYNCEDLYRICS | newline_to_br }}
</p>
<p>credits:

View File

@ -351,7 +351,7 @@ div.content {
flex: 1 0 250px;
margin: 0;
font-size: 12px;
font-family: monospace;
font-family: _font(family-fixed);
}
@media only screen and (max-width: 569px) {
p {

View File

@ -21,7 +21,7 @@
cursor: pointer;
display: inline-block;
font-weight: _font(weight-bold);
font-family: monospace;
font-family: _font(family-fixed);
letter-spacing: _font(kerning-alt);
text-align: center;
text-decoration: none;

View File

@ -39,7 +39,7 @@
// Font.
$font: (
family: ('Astloch', Helvetica, sans-serif),
family-fixed: ('Courier New', monospace),
family-fixed: ('Lucida Console', Monaco, monospace),
weight: 400,
weight-bold: 700,
kerning: -0.025em,

View File

@ -51,10 +51,10 @@ date: 2018-12-11 00:00:00
<p>{{ album.date | date: '%Y' }}</p>
{% for track in album.tracks %}
<p style="margin-bottom: 30px; font-family: monospace;font-size: 14px">
<p style="margin-bottom: 30px; font-size: 14px">
<strong>{{ track.common.track.no }}. {{ track.common.title }}</strong><br />
<span id="{{ track.common.title | slugify | remove: '-' }}"></span> |
<span style="font-family: monospace;font-size: 14px">{{ track.common.genre }} </span>
<span style="font-size: 14px">{{ track.common.genre }} </span>
</p>

View File

@ -39,10 +39,10 @@ image: /images/guillaume-techer-jm9p0mdpo6a-unsplash.jpg
<p>{{ album.date | date: '%Y' }}</p>
{% for track in album.tracks %}
<p style="margin-bottom: 30px; font-family: monospace;font-size: 14px">
<p style="margin-bottom: 30px;font-size: 14px">
<strong>{{ track.common.track.no }}. {{ track.common.title }}</strong><br />
<span id="{{ track.common.title | slugify | remove: '-' }}"></span> |
<span style="font-family: monospace;font-size: 14px">{{ track.common.genre }} </span>
<span style="font-size: 14px">{{ track.common.genre }} </span>
</p>