1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
body {
margin: 0px;
padding: 0px;
background: #ffffa9 url("<?= url('img/fadetop.png') ?>") top left repeat-x;
}
body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li, input {
font-family: helvetica,arial,sans-serif;
}
body, td, td, p {font-size: 10pt;}
/* bamboo logo */
#logo {
position: absolute;
top: 0px;
right: 0px;
height: 40;
width: 180;
background: url("<?= url('img/painted.png') ?>") top left no-repeat;
z-index: 1;
}
#container {
position: absolute;
top:0px;
left:0px;
z-index: 10;
height:100%;
width:100%;
}
#leftcolumn {
background: white;
border-top: 1px solid black;
border-right: 1px solid black;
vertical-align: top;
height:100%;
}
#spacecolumn {
width: 4px;
height: 110px;
}
#rightcolumn {
background: white;
border-top: 1px solid black;
border-left: 1px solid black;
vertical-align: top;
padding: 10px;
}
hr {
border: none;
border-bottom: 1px solid #ccc;
margin-top: 5px;
margin-bottom: 5px;
padding: 0px;
}
.thinhr {
border: none;
border-bottom: 1px dotted #ddd;
margin: 0px;
padding: 0px;
}
/*** navigation tree ***/
#navtree {
font-size: 9pt;
width: 150px;
padding: 5px;
}
/*
#navtree ol {
margin: 0px;
padding: 0px;
}
#navtree li {
margin: 0px;
padding: 0px;
text-indent: 0px;
border: 0px solid #fff;
list-style-type: none;
}
*/
#navtree div:hover {
background: #ffc;
}
a.browser {
display:block;
text-decoration:none;
padding-left: 16px;
border: 1px solid #fff;
}
a.browser:hover {
border: 1px solid #99F;
}
a.quick { /* "quick" is the little >> link menus beside each page */
float: right;
position: relative;
top: -1.45em;
left: 0px;
text-decoration:none;
padding: 1px;
}
a.quick:hover {
border: 1px solid #99F;
padding: 0px;
}
div#dropmenu {
background-color: #ffc;
border: 1px solid #99f;
}
div#dropmenu a {
display: block;
text-decoration:none;
padding: 3px;
}
div#dropmenu a:hover {background-color: #eeb;}
div#dropmenu div {color: #ccc; padding: 3px;}
a.type-dir {background: url("<?= url('img/small/folder.png') ?>") center left no-repeat;}
a.type-file {background: url("<?= url('img/small/file.png') ?>") center left no-repeat;}
a.type-home {background: url("<?= url('img/small/home.png') ?>") center left no-repeat;}
a.type-up {background: url("<?= url('img/triangle-up.png') ?>") center left no-repeat;}
a.type-clip {background: url("<?= url('img/small/clip.png') ?>") center left no-repeat;}
a.type-trash {background: url("<?= url('img/small/trash.png') ?>") center left no-repeat;}
/**** tabs ****/
.tabs {
position: relative;
top: 5px;
}
.tabs table {
padding: 0px;
margin: 0px;
border: 0px;
}
.tabs a {
text-decoration: none;
font-size: 10px;
}
.tabs td {
border: 1px solid #000;
padding: 3px 6px 3px 6px;
background: #ddd;
text-align: center;
}
.tabs td:hover {
background: #ffc;
}
.tabs td.here {
border-bottom: 1px solid #fff;
background: #fff;
}
.button {
font-size: 10px;
background-color: #6AD;
color: #fff;
border: 1px solid #666;
padding: 2px;
text-decoration: none;
}
.button:hover {
background-color: #9CF;
}
.textinput {
border-width: 1px;
background: #ffc;
border-color: #000;
}
#data {
margin: 5px 0px 5px 0px;
width: 100%;
}
.box {
background-color: #ffc;
border: 1px solid black;
padding: 2px;
margin-top: 1em;
}
.section {font-weight: bold;}
.roweven {background-color: #fff;}
.rowodd {background-color: #eeb;}
.debug {
background-image: url("<?= url('img/50white.png') ?>");
position: absolute;
right: 0px;
bottom: 0px;
margin: 4px;
padding: 10px;
border: 1px dashed red;
z-index: 30;
font-size: 9px;
}
.subdebug {
float: right;
clear: both;
border: 1px dotted grey;
}
div#lang {
position: absolute;
bottom: 0px; left: 2em;
z-index: 100;
}
div#lang select {font-size: 8pt;}
|