diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-17 20:38:31 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-17 20:38:31 -0400 |
commit | c9994190d2ba584e1eb95b6b47ff586da7b0f29f (patch) | |
tree | ff4d02327f8e988925036f7406c760dfba8791d3 /webroot/css/view.css | |
parent | 7be960630a8c0b4dab94245c73453b22db3f305e (diff) | |
parent | 2baaf56e140a06eed8fe0b1d28d744d34a537d49 (diff) | |
download | otakuhub-c9994190d2ba584e1eb95b6b47ff586da7b0f29f.tar.xz |
Merge branch 'master' of git.raylu.net:otakuhub
Diffstat (limited to 'webroot/css/view.css')
-rw-r--r-- | webroot/css/view.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/webroot/css/view.css b/webroot/css/view.css new file mode 100644 index 0000000..4b0a9a1 --- /dev/null +++ b/webroot/css/view.css @@ -0,0 +1,48 @@ +/* for viewing individual anime/manga/kdrama, rather than table.css */ + +aside#img { + float: left; + margin: 0 25px 25px 0; + width: 225px; +} + +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; +} + +p { + text-indent: 0; +} |