diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-15 22:50:25 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-15 21:59:46 +0100 |
commit | 42bef0ad5a54f9b7ee78f837ec103b6199e4f573 (patch) | |
tree | a3a02f5d18fb7ae9dfb200f0085bd769aca03100 | |
parent | 068b4517ac81c5a128a26ec10153019f1497a2a4 (diff) | |
download | website-42bef0ad5a54f9b7ee78f837ec103b6199e4f573.tar.xz |
add PT Mono for monospace
-rw-r--r-- | src/style.css | 5 | ||||
-rw-r--r-- | src/templates/journal.html | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css index 7f278dd..ff4f1d4 100644 --- a/src/style.css +++ b/src/style.css @@ -1,4 +1,5 @@ @import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700); +@import url(https://fonts.googleapis.com/css?family=PT+Mono); *, *:before, *:after { box-sizing: border-box; } html { @@ -86,6 +87,10 @@ header h1 { } } +tt.literal { + font-size: 0.75rem; +} + #index, #about { padding-bottom: 0.5rem; color: #222; diff --git a/src/templates/journal.html b/src/templates/journal.html index a4bef7f..7f5dfc4 100644 --- a/src/templates/journal.html +++ b/src/templates/journal.html @@ -20,7 +20,7 @@ by {{ entry.author }} {% endif %} </span> - | <a href="/~kyrias/{{ entry.page }}#isso-thread">comments</a> + | <a href="{{ entry.page }}#isso-thread">comments</a> </div> {{ entry.body }} |