blob: 75180b1be68e1c82c1b61963e500beec6dd14f83 [file] [log] [blame]
John Reckbafe58a2011-01-11 10:26:02 -08001<!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>
Tarun Nainani57033e32015-03-27 17:28:03 -07006<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
7<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
John Reckbafe58a2011-01-11 10:26:02 -08008
9<style type="text/css">
10
11* {
12 padding: 0;
13 margin: 0;
14}
15
16body {
17 text-align: center;
John Recke078a432011-03-18 11:36:54 -070018 margin: 0px auto;
John Reckbafe58a2011-01-11 10:26:02 -080019 padding: 0 8px 0 8px;
20 max-width: <%@ dimen/mv_max_width %>px;
21}
22
John Recke078a432011-03-18 11:36:54 -070023h3 {
John Reckbafe58a2011-01-11 10:26:02 -080024 text-align: center;
John Recke078a432011-03-18 11:36:54 -070025 margin: 5px 0 5px 0;
John Reckbafe58a2011-01-11 10:26:02 -080026}
27
28.thumbwrap li {
29 display: inline-block;
John Recke078a432011-03-18 11:36:54 -070030 margin: 0 7px 12px 7px;
John Reckbafe58a2011-01-11 10:26:02 -080031 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>