| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* 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 a, #add {
- padding: 4px 7px;
- border: 1px solid #aaa;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- background: #ddd;
- background: -moz-linear-gradient(top, #ddd, #bbb);
- background: -webkit-linear-gradient(top, #ddd, #bbb);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#bbbbbb');
- color: #111;
- outline: none;
- }
- section#cast a:hover, #add:hover {
- background: #eee;
- background: -moz-linear-gradient(top, #eee, #ccc);
- background: -webkit-linear-gradient(top, #eee, #ccc);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc');
- }
- section#cast table {
- table-layout: fixed;
- display: none;
- }
- section#cast tr.char {
- border-top: 1px solid #ccc;
- }
- section#cast td {
- padding: 3px;
- }
- section#cast td:nth-child(1) {
- width: 60px;
- }
- section#cast td:nth-child(2) {
- width: 300px;
- }
- section#cast td:nth-child(3) {
- width: 60px;
- }
- section#cast #castlink {
- display: none;
- }
- aside#malstats {
- float: right;
- width: 150px;
- border-left: 1px solid #ccc;
- padding-left: 15px;
- }
- aside#malstats p {
- margin-bottom: 2px;
- }
|