| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* Album list */
- table#album_list{
- border-collapse: collapse;
- margin: 0.5em;
- }
- table#album_list td, th{
- border: 1px solid black;
- padding: 0.5em;
- }
- table#album_list th{
- background-color: #66aaff;
- }
- table#album_list td.album_column_title{
- width: 10%;
- }
- table#album_list td.album_column_text{
- width: 25%;
- }
- table#album_list td.album_column_text ul{
- margin: 0;
- }
- table#album_list td.album_column_text li{
- margin: 0.5em 0.1em 0 0.2em;
- font-size: 80%;
- font-style: italic;
- }
- table#album_list td.album_column_text img{
- max-width: 5em;
- max-height: 2em;
- border: 0.1em solid black;
- margin: 0.05em;
- }
- table#album_list td.album_column_details{
- font-size: 80%;
- width: 10%;
- text-align: center;
- }
- table#album_list td.album_column_translations{
- width: 10%;
- text-align: center;
- }
- table#album_list td.album_column_action{
- width: 10%;
- text-align: center;
- }
- table#album_list td.album_column_action input{
- margin: 0.05em;
- padding: 0.06em;
- font-size: 70%
- }
- table#album_list form{
- margin: 0;
- }
- table#album_list td.album_column_action input[type="button"], input[type="submit"]{
- width: 90%;
- margin-top: 0.2em;
- margin-bottom: 0.2em;
- }
- div#translate_controls{
- width: 50%;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- div#translate_controls input{
- width: 100%;
- margin-top: 1em;
- }
|