Use tachyons
This commit is contained in:
parent
10043c66ae
commit
0c27473422
9 changed files with 33 additions and 48 deletions
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
« {{ 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 }} »
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue