diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2008-05-07 22:49:07 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2008-05-07 22:49:07 +0000 |
| commit | 58830e9b2881a49e968fc458eae21a1a0ef12475 (patch) | |
| tree | 522855357ee364d1282917116888b3913ad06e57 /htroot/env/terminal.css | |
| parent | 9bc56a9edc0f7057c12a9af123670a243a02ad11 (diff) | |
added new terminal servlet using current visualization methods and a new one: a processing (processing.org) applet.
the new servlet can be found at
http://localhost:8080/terminal_p.html
..to be enhanced..
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4773 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/env/terminal.css')
| -rwxr-xr-x | htroot/env/terminal.css | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/htroot/env/terminal.css b/htroot/env/terminal.css new file mode 100755 index 000000000..4b80b53fd --- /dev/null +++ b/htroot/env/terminal.css @@ -0,0 +1,174 @@ +/* Hack for IE to display the margin on #right properly */
+* html #right {width:597px;}
+
+/* Body Styles */
+
+body
+{
+margin: 0px;
+background: #3d3d3d;
+font-size: 11px;
+color: #ffffff;
+line-height: 1.5em;
+font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif
+}
+
+p
+{
+margin: 5px 0 5px;
+padding: 0;
+}
+
+h1
+{
+margin: 1px 0 0 0;
+padding-bottom: 2px;
+color: #239AFF;
+font-size: 10px;
+border-bottom: 1px solid #239AFF;
+background: inherit;
+}
+
+a{color: #fff; text-decoration: none; background: inherit;}
+a:hover {color: #EA672E; text-decoration: none; background: inherit;}
+
+ul
+{
+color: #fff;
+list-style-type: none;
+padding-left: 10px;
+margin: 0 0 5px;
+background: inherit;
+}
+
+li
+{
+font-weight: normal;
+text-transform: lowercase;
+padding: 0;
+}
+
+blockquote
+{
+width: 30em;
+margin: 0 0 0 10px;
+padding: 5px;
+border-left: 1px solid #666
+}
+
+/* Main box surrounding everything*/
+
+#outer
+{
+margin: 0 auto;
+width: auto;
+overflow:auto;
+background-color: #000;
+color: #fff;
+}
+
+/* Below is everything inside of #outer*/
+
+/* The path box e.g. /root/path */
+
+#location
+{
+margin: 5px 5px 0;
+padding: 0 2px 0 2px;
+background: inherit;
+color:#666;
+font-size: 10px;
+}
+
+/* The left column (nav) */
+
+#left
+{
+margin: 5px 5px 0;
+padding: 0 2px 0 2px;
+background: inherit;
+float: left;
+width: 468px;
+}
+
+/* The right column (content) */
+
+#right
+{
+margin: 5px 5px 0;
+padding: 0 2px 0 2px;
+float: right;
+width: 680px;
+}
+
+#right a{color: #EA672E; text-decoration: none; background-color:inherit;}
+
+/* Div classes Styles */
+
+div .bars /* These are the bars that are on top of the main box and navs */
+{
+height: 3px;
+background-color: #239AFF;
+margin-top: 3px;
+margin-bottom: 3px;
+color: inherit;
+font-size: 0;
+}
+
+.navouter
+{
+width: auto;
+margin: 0;
+background-color: #000;
+border: 1px dotted #666;
+color: inherit;
+margin-bottom: 10px;
+}
+
+.navheader
+{
+background-color: #666;
+color: inherit;
+width: auto;
+padding: 2px;
+margin-bottom: 5px;
+text-align: center;
+font-weight: bold;
+}
+
+.navcontent
+{
+padding: 5px;
+margin:0 0 0 3px;
+color: #fff;
+font-size:11px;
+font-weight:bold;
+background-color: #000;
+overflow: hidden;
+}
+
+/* This is for inserting code */
+.code
+{
+margin: 0 0 0 0;
+padding: 3px;
+width: 326px;
+font-family: helvetica, monospace;
+font-size: 10px;
+line-height: 90%;
+text-transform: lowercase;
+background-color: #333;
+color: inherit;
+border: 1px dotted #666;
+}
+
+.htimeauth
+{
+display:block;
+margin: 0;
+padding: 0;
+text-align:left;
+font-size: 10px;
+color: #666;
+background-color: inherit;
+}
\ No newline at end of file |
