[rnbrowse-commits] SF.net SVN: rnbrowse:[138] branches/RNBGUI
Brought to you by:
cjsoftuk
|
From: <dav...@us...> - 2008-08-01 16:06:15
|
Revision: 138
http://rnbrowse.svn.sourceforge.net/rnbrowse/?rev=138&view=rev
Author: davidisofox
Date: 2008-08-01 16:06:11 +0000 (Fri, 01 Aug 2008)
Log Message:
-----------
Added Paths:
-----------
branches/RNBGUI/html/
branches/RNBGUI/html/index.html
branches/RNBGUI/html/onecol.css
branches/RNBGUI/html/style.css
branches/RNBGUI/html/twocol.css
Added: branches/RNBGUI/html/index.html
===================================================================
--- branches/RNBGUI/html/index.html (rev 0)
+++ branches/RNBGUI/html/index.html 2008-08-01 16:06:11 UTC (rev 138)
@@ -0,0 +1,44 @@
+<!-- English Localisation -->
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <link rel="stylesheet" type="text/css" href="style.css" />
+ <link rel="stylesheet" type="text/css" href="twocol.css" />
+ <title>
+ Remote Network Browser
+ </title>
+ <!--[if lt IE 7]>
+ <style media="screen" type="text/css">
+ .col1 {
+ width:100%;
+ }
+ </style>
+ <![endif]-->
+ </head>
+ <body>
+ <div class="header">
+ <div class="linkbar">
+ <a id="selected" class="item" name="selected">Browser</a> <a class="seperator"></a> <a href="settings.html" class="item">Settings</a> <a class="seperator"></a> <a href="about.html" class="item">About</a> <a class="seperator"></a> <a href="index.html?action=slideshow" class="item">Slideshow <!-- Do we want this here? --></a> <a href="index.html?action=logout" class="button">Logout</a>
+ </div>
+ <div class="addressbar">
+ <input id="addresstext" class="button" type="text" />
+ <a href="#go" id="go" class="button">Go</a>
+ </div>
+ </div>
+ <div class="colmask leftmenu">
+ <div class="colright">
+ <div class="col1wrap">
+ <div class="col1">
+ <div class="controls">
+ <a href="#upload" class="button">Upload</a> <span class="progressbar" id="uploadprogress" name="uploadprogress"><span class="bar"> 75% </span> </span><br />
+ <a href="#downloadall" class="button">Download All</a> <a href="#downloadsel" class="button">Download Selected</a><br />
+ <a href="#deletesel" class="button">Delete Selected</a></div>
+ </div>
+ </div>
+ </div>
+ <div class="col2">
+ col2
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
\ No newline at end of file
Added: branches/RNBGUI/html/onecol.css
===================================================================
--- branches/RNBGUI/html/onecol.css (rev 0)
+++ branches/RNBGUI/html/onecol.css 2008-08-01 16:06:11 UTC (rev 138)
@@ -0,0 +1,60 @@
+/* General styles */
+ body {
+ margin:0;
+ padding:0;
+ border:0; /* This removes the border around the viewport in old versions of IE */
+ width:100%;
+ min-width:600px; /* Minimum width of layout - remove line if not required */
+ /* The min-width property does not work in old versions of Internet Explorer */
+ }
+ /* Header styles */
+ #header {
+ clear:both;
+ float:left;
+ width:100%;
+ }
+ #header {
+ border-bottom:1px solid #000;
+ }
+ /* 'widths' sub menu */
+ #layoutdims {
+ clear:both;
+ margin:0;
+ padding:6px 15px !important;
+ text-align:right;
+ }
+ /* column container */
+ .colmask {
+ position:relative; /* This fixes the IE7 overflow hidden bug */
+ clear:both;
+ float:left;
+ width:100%; /* width of whole page */
+ overflow:hidden; /* This chops off any overhanging divs */
+ }
+ /* common column settings */
+ .colright,
+ .colmid,
+ .colleft {
+ float:left;
+ width:100%;
+ position:relative;
+ }
+ .col1,
+ .col2,
+ .col3 {
+ float:left;
+ position:relative;
+ padding:0 0 1em 0;
+ overflow:hidden;
+ }
+ /* Full page settings */
+ .fullpage .col1 {
+ width:96%; /* page width minus left and right padding */
+ left:2%; /* page left padding */
+ }
+ /* Footer styles */
+ #footer {
+ clear:both;
+ float:left;
+ width:100%;
+ }
\ No newline at end of file
Added: branches/RNBGUI/html/style.css
===================================================================
--- branches/RNBGUI/html/style.css (rev 0)
+++ branches/RNBGUI/html/style.css 2008-08-01 16:06:11 UTC (rev 138)
@@ -0,0 +1,76 @@
+body
+{
+ background-color: #CCCCCC;
+ font: 12px arial;
+}
+.progressbar
+{
+ border: 1px solid #000000;
+ background-color: #666666;
+ color: #FFFFFF;
+ font: 16px courier;
+}
+.progressbar.bar
+{
+ background-color: #009dff;
+ color: #FFFFFF;
+}
+.button
+{
+ background-color: #FFFFFF;
+ color: #000000;
+ border: 1px solid #000000;
+ padding: 1px;
+ margin: 1px;
+ text-decoration: none;
+}
+.button:hover
+{
+ border: 1px solid #009dff;
+ background-color: #CCCCCC;
+}
+.button:active
+{
+ border: 1px solid #FFFFFF;
+ background-color: #009dff;
+}
+.linkbar.item
+{
+ color: #000000;
+ padding: 1px;
+ margin: 1px;
+ text-decoration: none;
+}
+.linkbar.item:hover
+{
+ background-color: #009dff;
+}
+.linkbar.item:active
+{
+ color: #FFFFFF;
+}
+.linkbar.item#selected
+{
+ color: #000000;
+ background-color: #11aeff;
+}
+.button#go
+{
+ position: relative;
+ top: -3px;
+ left: -5px;
+ bottom: 1px;
+}
+h1
+{
+ text-align: center;
+}
+h2
+{
+ text-align: center;
+ font: 16px arial;
+}
+.controls
+{
+ line-height: 2;
+}
\ No newline at end of file
Added: branches/RNBGUI/html/twocol.css
===================================================================
--- branches/RNBGUI/html/twocol.css (rev 0)
+++ branches/RNBGUI/html/twocol.css 2008-08-01 16:06:11 UTC (rev 138)
@@ -0,0 +1,61 @@
+body {
+ margin:0;
+ padding:0;
+ border:0; /* This removes the border around the viewport in old versions of IE */
+ width:100%;
+ min-width:600px; /* Minimum width of layout - remove line if not required */
+ /* The min-width property does not work in old versions of Internet Explorer */
+ }
+ /* Header styles */
+ #header {
+ clear:both;
+ float:left;
+ width:100%;
+ }
+ /* 'widths' sub menu */
+ #layoutdims {
+ clear:both;
+ margin:0;
+ padding:6px 15px !important;
+ text-align:right;
+ }
+ /* column container */
+ .colmask {
+ position:relative; /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
+ clear:both;
+ float:left;
+ width:100%; /* width of whole page */
+ overflow:hidden; /* This chops off any overhanging divs */
+ }
+ /* 2 column left menu settings */
+ .leftmenu .colright {
+ float:left;
+ width:200%;
+ position:relative;
+ left:200px;
+ }
+ .leftmenu .col1wrap {
+ float:right;
+ width:50%;
+ position:relative;
+ right:200px;
+ padding-bottom:1em;
+ }
+ .leftmenu .col1 {
+ margin:0 15px 0 215px;
+ position:relative;
+ right:100%;
+ overflow:hidden;
+ }
+ .leftmenu .col2 {
+ float:left;
+ width:170px;
+ position:relative;
+ right:185px;
+ }
+ /* Footer styles */
+ #footer {
+ clear:both;
+ float:left;
+ width:100%;
+ }
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|