diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-13 18:20:57 +0200 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-14 18:36:47 +0200 | 
| commit | 7c6db1a17dbede4911d2c13cd36a485272f3e5a4 (patch) | |
| tree | aa98fa5466a8daa479a9ccb4f90612560393193f /data/home.html | |
| parent | Open new tab near previous (diff) | |
| download | rekonq-7c6db1a17dbede4911d2c13cd36a485272f3e5a4.tar.xz | |
We have thumbnails! Hugh!
Diffstat (limited to 'data/home.html')
| -rw-r--r-- | data/home.html | 97 | 
1 files changed, 25 insertions, 72 deletions
| diff --git a/data/home.html b/data/home.html index d1a200cf..68ab9326 100644 --- a/data/home.html +++ b/data/home.html @@ -17,74 +17,38 @@ font-family: sans-serif;  font-size: 100%;  } -/* ------------------------------------------------------- */ - -div#container{ -margin: 0; -} - -div#header{ -margin: 0; -padding: 2px; -background-color:#00f; -color: #ff0; -text-align: center; -} - -div#footer{ -background-color:#00f; -color: #ff0; -text-align: center; +#header{ +text-align:right; +padding: 10px;  }  /* ------------------------------------------------------- */ -h2{ +h1{  color: #00f;  } -td{ -padding: 2em; -vertical-align: top; -} - -td.bookmarks{ -  border-left: 2px solid #0000FF; -  border-top-width: 0px; -  border-bottom-width: 0px; -} - -.indent { -margin-left: 2em; +.float { +  float: right; +  width: 30%; +  background-color: orange; +  border-width: 2px; +  border-style: solid; +  border-color: black; +  padding: 10px; +  margin: 8px; +  font-weight: bold; +  color: white; +  clear: right;  } -</style> -<!-- =================================================================================== --> - -<script type="text/javascript"> -function ToggleVisibility(image, element) +.thumbnail   { -    // Find the image. -    var image = document.getElementById(image) - -    // Find the element to hide/unhide. -    var element = document.getElementById(element) - -    // Check the element's current state. -    if (element.style.display == "none") -    { -        // If hidden, unhide it. -        element.style.display = "block"; -        image.src = "%1open.png"; -    } -    else -    { -        // If not hidden, hide it. -        element.style.display = "none"; -        image.src = "%1closed.png"; -    } +float:left; +width:230px; +margin:0 10px 10px 10px;  } -</script> +</style>  <!-- =================================================================================== --> @@ -93,24 +57,13 @@ function ToggleVisibility(image, element)  <body>  <div id="header"> -<h1>rekonq home page</h1> +<h1>rekonq</h1>  </div> -<table width="100%"> -<tr> -<td width="40%"><h2>History</h2></td> -<td width="60%"><h2>Bookmarks</h2></td> -</tr> -<tr> -<td>%2</td> -<td class="bookmarks">%3</td> -</tr> -</table> - -<div id="footer"> -rekonq, lightweight Web Browser for KDE based on Webkit. -</div> +<div class="float">%1</div> +<div class="float">%2</div> +<div>%3</div>  </body>  </html> | 
