summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-05-11 16:50:05 -0400
committerBen Burwell <ben@benburwell.com>2015-05-11 16:50:05 -0400
commit4ead5d2173d31e914ae7434872270d18c23f2cbf (patch)
tree8abffb4d4a9517431c6516cdab641b3294998690
parenta2f18107337b1a627a85d55dda2c024c816151ed (diff)
make project tech text not monospaced
-rw-r--r--projects/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/projects/index.html b/projects/index.html
index a3d4f18..fd6a9a4 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -12,13 +12,16 @@ description: Projects I’ve done.
{% else %}
{{ project.name }}
{% endif %}
- <small class="light-gray monospace">{{ project.tech }}</small>
+ <small class="light-gray">{{ project.tech }}</small>
</h1>
<p>
{{ project.description }}
{% if project.github %}
- <a style="display:inline-block;margin-left:1rem;" href="https://github.com/{{ project.github }}"><i class="fa fa-github"></i> Read the code</a>
+ <a style="display:inline-block;margin-left:1rem;" href="https://github.com/{{ project.github }}">
+ <i class="fa fa-github"></i>
+ Read the code
+ </a>
{% endif %}
</p>