Make examples index.html easier to click
authorCaio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Mon, 16 Sep 2013 22:04:53 +0000 (19:04 -0300)
committerCaio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Mon, 16 Sep 2013 22:10:02 +0000 (19:10 -0300)
examples/index.html

index f915103..851c480 100644 (file)
@@ -1,14 +1,35 @@
-<h1>Tizen-WRT Examples!</h1>
+<html>
+<head>
+<meta name="viewport" content="width=device-width">
+<style>
+div.block {
+   background-color: gainsboro;
+   text-align: center;
+   font-family: monospace;
+   font-size: 200%;
+   width: 8em;
+   height: 6em;
+   float: left;
+   display: table;
+   margin: 10px;
+}
 
+div.block div {
+   display: table-cell;
+   vertical-align: middle;
+}
+</style>
+</head>
 <body>
-<a href="tizen.html"><h5>- Tizen Test</h5></a>
-<a href="network_bearer_selection.html"><h5>- Network Bearer Selection Test</h5></a>
-<a href="notification.html"><h5>- Notification Test</h5></a>
-<a href="system_info.html"><h5>- SystemInfo Test</h5></a>
-<a href="system_setting.html"><h5>- SystemSetting Test</h5></a>
-<a href="time.html"><h5>- Time Test</h5></a>
-<a href="power.html"><h5>- Power API Test</h5></a>
-<a href="bluetooth.html"><h5>- Bluetooth Test</h5></a>
-<a href="download.html"><h5>- Download Test</h5></a>
+<h1>Tizen Extensions Crosswalk examples</h1>
+<a href="tizen.html"><div class="block"><div>tizen top namespace</div></div></a>
+<a href="network_bearer_selection.html"><div class="block"><div>network bearer selection</div></div></a>
+<a href="notification.html"><div class="block"><div>notification</div></div></a>
+<a href="system_info.html"><div class="block"><div>system info</div></div></a>
+<a href="system_setting.html"><div class="block"><div>system setting</div></div></a>
+<a href="time.html"><div class="block"><div>time</div></div></a>
+<a href="power.html"><div class="block"><div>power</div></div></a>
+<a href="bluetooth.html"><div class="block"><div>bluetooth</div></div></a>
+<a href="download.html"><div class="block"><div>download</div></div></a>
 </body>
-
+</html>
\ No newline at end of file