diff options
author | Ben Burwell <ben@benburwell.com> | 2015-08-11 22:56:34 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-08-11 22:56:34 -0400 |
commit | b3967c83cbdba7f44c2ecef09d3e80801106ac81 (patch) | |
tree | 1dd61b9840a85ab8d3d4610bbba2f2e3aa4a00c6 /theatre/index.html | |
parent | 6b0fad5657d802603cb6f64f51b5387bbfbc2059 (diff) |
Update to Tiny CSS
Diffstat (limited to 'theatre/index.html')
-rw-r--r-- | theatre/index.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/theatre/index.html b/theatre/index.html index c10ab19..641c61f 100644 --- a/theatre/index.html +++ b/theatre/index.html @@ -6,13 +6,13 @@ description: Mostly for my own reference, here’s a list of shows I’ve worked <h1>Theatrical Credits</h1> -<table class="data-table"> - {% for show in site.data.shows %} - <tr> - <td><i>{{ show.name }}</i></td> - <td>{{ show.role }}</td> - <td>{{ show.person }}</td> - <td class="right">{{ show.date }}</td> - </tr> - {% endfor %} +<table class="fancy-table"> + {% for show in site.data.shows %} + <tr> + <td><i>{{ show.name }}</i></td> + <td>{{ show.role }}</td> + <td>{{ show.person }}</td> + <td class="text-right">{{ show.date }}</td> + </tr> + {% endfor %} </table> |