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
|
/*
* $id: rdfbrowser.css,v 1.6 2007/04/10 09:32:10 ondrej Exp $
*
* This file is part of the OpenLink Software Ajax Toolkit (OAT) project.
*
* Copyright (C) 2005-2018 OpenLink Software
*
* See LICENSE file for details.
*/
@import url("oat/styles/timeline.css");
@import url("oat/styles/webdav.css");
@import url("oat/styles/grid.css");
@import url("oat/styles/rdftabs.css");
/*@import url("menu.css");*/
/* common */
html, body {
margin: 0; padding: 0;
}
#throbber_content {
visibility: hidden;
}
#throbber {
text-align: center
}
#search {
padding: 1em;
float: left;
}
#search img {
vertical-align: middle;
margin-left: 2px;
cursor: pointer;
}
#search input {
vertical-align: middle;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9pt;
color: #5e6166;
}
h1 {
margin-top: 5px;
margin-left: 10px}
table {
font-size: 9pt}
#MD {
margin-top: 28px;
float: left;
clear: both;
width: 100%;
background: url("images/main_bkg_grad.png");
background-repeat: repeat-x;
}
#LT {
float: left;
clear: left;
width: 69%}
#RT {
float: left;
width: 30%;
background: url("images/side_box_bkg_grad.png");
background-repeat: repeat-x;
background-color: white;
border-left: 1px solid #d7e5ee;
border-bottom: 1px solid #d7e5ee}
#FT {
float: left;
clear: both;
width: 100%;
margin-top: 20px;
}
p.copyright {
font-size: 8pt;
text-align: right;
margin-right: 10px}
#browse {
position: inherit;
float: left;
clear: both;
width: 98%;
margin-left: 10px;
padding: 0
}
#rdf_tabs {
float: left;
clear: both;
width: 100%;
margin-left: 0px;
margin-top: 30px;
list-style-type: none;
text-align: center;
padding-bottom: 2px;
margin-bottom: 0px;
border-bottom: 1px solid #98bdc6}
#rdf_tabs li {
display: inline;
padding: 2px 3px;
margin-left: 0.5em;
background-color: #ddeaf2;
cursor: pointer}
#rdf_tabs li.tab_selected {
color: #fff;
background-color: #98bdc6}
#rdf_tabs.tab_signal {
background-color: #bbb;
}
li.tab:hover {
background-color: #ccc}
#rdf_cache {
float: left;
clear: left;
width: 100%;
}
#rdf_cache input,
#rdf_cache h3 {
display:none;
}
#rdf_cache input[type="text"] {
width: 70%}
#rdf_cache input {
margin-top: 5px}
#rdf_filter {
float: left;
clear: left;
width: 100%;
padding-bottom: 10px;
background: url("images/bottom_bkg_grad.png");
background-repeat: repeat-x;
background-position: bottom}
#rdf_filter a {
font-size: 80%}
#rdf_side {
float: left;
padding-left: 4px;
padding-right: 4px;}
#rdf_content {
float: left;
clear: both;
width: 100%;
_width: 95%}
.rdf_categories ul, .rdf_categories li {
margin-left: 0px;
padding-left: 0.5em
}
|