Use tachyons

This commit is contained in:
Oliver Davies 2017-09-05 00:27:07 +01:00
parent 10043c66ae
commit 0c27473422
9 changed files with 33 additions and 48 deletions

View file

@ -11,19 +11,19 @@
About
</a>
<a href="/components/" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
<a href="/experience" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
Experience
</a>
<a href="/gallery/" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
<a href="/testimonials" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
Testimonials
</a>
<a href="/resources/" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
<a href="/talks" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dib">
Talks
</a>
<a href="http://github.com/tachyons-css/tachyons/" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dn dib-l">
<a href="/contact" class="f6 hover-blue link black-70 ml2 ml-m ml4-l dn dib-l">
Contact
</a>
</nav>

View file

@ -1,7 +1,7 @@
<div class="flex mt3">
{% if page.previous_post %}
<div class="w-50-ns">
<a href="{{ page.previous_post.url }}" class="blue1">
<a href="{{ page.previous_post.url }}" class="blue hover-blue">
&laquo; {{ page.previous_post.title }}
</a>
</div>
@ -9,7 +9,7 @@
{% if page.next_post %}
<div class="w-50-ns tr">
<a href="{{ page.next_post.url }}" class="blue1">
<a href="{{ page.next_post.url }}" class="blue hover-blue">
{{ page.next_post.title }} &raquo;
</a>
</div>

View file

@ -1,7 +1,7 @@
{% if page.tags %}
<div class="tags">
{% for tag in page.tags %}
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="tag is-light is-borderless">
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="blue">
{{- tag -}}
</a>
{% endfor %}

View file

@ -1,17 +1,17 @@
<div class="table-responsive">
<div class="w-100 overflow-x-auto overflow-y-hidden">
<table class="w-100 ba b--moon-gray">
<thead>
<tr class="striped--light-gray">
<th class="w-20 pa2 tl">Date</th>
<th class="w-20-l pa2 tl">Date</th>
{% if not talk_page %}
<th class="w-40 pa2 tl">Talk</th>
<th class="w-40-l pa2 tl">Talk</th>
{% endif %}
<th class="pa2 tl">Event</th>
{% if not upcoming %}
<th class="w-12 pa2 tl">Feedback</th>
<th class="w4 pa2 tl">Feedback</th>
{% endif %}
</tr>
</thead>
@ -61,20 +61,18 @@
</td>
{% if not upcoming %}
<td class="">
<td class="ph2">
{% if row.date.feedback %}
<a
href="{{ row.date.feedback }}"
class="bg-blue br2 pa2 white-90 no-underline dib dim"
title="Read or leave feedback for this talk"
>
title="Read or leave feedback for this talk">
<i class="fa fa-comment-o mr1"></i>
joind.in
</a>
{% endif %}
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>