diff options
author | raylu <raylu@mixpanel.com> | 2011-07-17 17:35:41 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-17 17:35:41 -0700 |
commit | 2baaf56e140a06eed8fe0b1d28d744d34a537d49 (patch) | |
tree | 1f410c05a51bf46c8970f418c40e2660fa11bfbf /webroot/css | |
parent | 384834c9fb85d3a408c60dd38e8d1474116793ad (diff) | |
download | otakuhub-2baaf56e140a06eed8fe0b1d28d744d34a537d49.tar.xz |
cast (chars/VAs) on anime view page
there isn't yet a views/anime/cast.html.php for non-JS, but the
controller is set up for it
Diffstat (limited to 'webroot/css')
-rw-r--r-- | webroot/css/view.css | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/webroot/css/view.css b/webroot/css/view.css index c973201..4b0a9a1 100644 --- a/webroot/css/view.css +++ b/webroot/css/view.css @@ -6,11 +6,38 @@ aside#img { width: 225px; } -section { +section#info { float: left; width: 470px; } +section#cast { + float: left; + width: 620px; +} +section#cast p { + margin: 0; +} +section#cast table { + table-layout: fixed; + display: none; +} +section#cast td { + padding: 3px; +} +section#cast td:nth-child(1) { + width: 60px; +} +section#cast td:nth-child(2) { + width: 250px; +} +section#cast td:nth-child(3) { + width: 200px; +} +section#cast #castlink { + display: none; +} + aside#malstats { float: right; width: 150px; |