John Reck | bafe58a | 2011-01-11 10:26:02 -0800 | [diff] [blame] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 |
|
| 3 | <html>
|
| 4 | <head>
|
| 5 | <title><%@ string/new_tab %></title>
|
| 6 | <meta name="viewport" content="width=device-width; initial-scale=1.0;" />
|
| 7 |
|
| 8 | <style type="text/css">
|
| 9 |
|
| 10 | * {
|
| 11 | padding: 0;
|
| 12 | margin: 0;
|
| 13 | }
|
| 14 |
|
| 15 | body {
|
| 16 | text-align: center;
|
| 17 | margin: 16px auto;
|
| 18 | padding: 0 8px 0 8px;
|
| 19 | max-width: <%@ dimen/mv_max_width %>px;
|
| 20 | }
|
| 21 |
|
| 22 | #most_visited h3 {
|
| 23 | text-align: center;
|
| 24 | padding: 0;
|
| 25 | margin: 5px 0 5px 0px;
|
| 26 | }
|
| 27 |
|
| 28 | .thumbwrap li {
|
| 29 | display: inline-block;
|
| 30 | margin: 0 7px 15px 7px;
|
| 31 | padding: 0;
|
| 32 | }
|
| 33 |
|
| 34 | @media all and (orientation:portrait) {
|
| 35 | .thumbwrap li {
|
| 36 | width: <%@ dimen/mv_item_width_portrait %>px;
|
| 37 | }
|
| 38 | }
|
| 39 |
|
| 40 | @media all and (orientation:landscape) {
|
| 41 | .thumbwrap li {
|
| 42 | width: <%@ dimen/mv_item_width %>px;
|
| 43 | }
|
| 44 | }
|
| 45 |
|
| 46 | .thumbwrap a {
|
| 47 | display: block;
|
| 48 | text-decoration: none;
|
| 49 | color: #000;
|
| 50 | }
|
| 51 |
|
| 52 | .thumbwrap img {
|
| 53 | border: <%@ dimen/mv_border_width %>px solid #e0e0e0;
|
| 54 | border-radius: 5px;
|
| 55 | width: 100%;
|
| 56 | }
|
| 57 |
|
| 58 | .thumbwrap .caption {
|
| 59 | margin-top: 2px;
|
| 60 | margin-left: 4px;
|
| 61 | white-space: nowrap;
|
| 62 | overflow: hidden;
|
| 63 | text-overflow: ellipsis;
|
| 64 | display: block;
|
| 65 | font-size: .8em;
|
| 66 | text-align: left;
|
| 67 | }
|
| 68 |
|
| 69 | </style>
|
| 70 |
|
| 71 | </head>
|
| 72 | <body>
|
| 73 | <h3><%@ string/tab_most_visited %></h3>
|
| 74 | <ul class="thumbwrap">
|
| 75 | <%{ most_visited %>
|
| 76 | <li>
|
| 77 | <a href="<%= url %>">
|
| 78 | <img class="wrimg" src="<%= thumbnail %>" />
|
| 79 | <span class="caption"><%= title %></span>
|
| 80 | </a>
|
| 81 | </li>
|
| 82 | <%} most_visited %>
|
| 83 | </ul>
|
| 84 | </body>
|
| 85 | </html>
|