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
|
body { /* top-level container */
padding-right: 16px; /* accomodate Internet Explorer scrollbar */
}
html>body { /* top-level container, hidden from IE */
padding-right: 0px; /* reverse the action taken above */
}
h1 { /* EMBOSS explorer title */
margin-bottom: 0px;
font-family: "Tahoma", sans-serif;
font-weight: normal;
font-size: 75%; /* 50% is too small in IE */
padding-bottom: 1px;
border-bottom: 1px solid black;
}
html>h1 { /* EMBOSS explorer title, hidden from IE */
font-size: 50%; /* 75% is too big elsewhere */
}
.error {
color: red;
}
#menu span.sort { /* link to toggle sort style */
display: block;
white-space: nowrap;
/*
padding: .25em;
background: #ddf;
*/
text-align: center;
font-size: 85%;
}
#menu ul { /* all menu lists */
list-style: none;
margin-left: 0px;
padding-left: 0px;
}
#menu #groups { /* top-level list with grouped applications */
margin-top: 1em;
margin-bottom: 1em;
}
#menu #apps { /* top-level list with ungrouped applications */
margin-top: 1em;
margin-bottom: 1em;
padding-right: .5em;
padding-top: .25em;
padding-bottom: .25em;
border-right: 2px solid #ddf;
text-align: right;
}
#menu li.group { /* surrounding box for each group (title and list) */
margin-top: 1em;
padding-right: .5em;
border-right: 2px solid #ddf;
text-align: right;
}
#menu span.group { /* surrounding box for each group title */
text-align: right;
font-family: "Tahoma", sans-serif;
font-weight: bold;
}
#menu ul.group { /* surrounding box for each group list */
}
#menu a { /* link to individual application */
}
#input h2 { /* application title */
margin-bottom: 0px;
font-family: "Tahoma", sans-serif;
font-weight: bold;
font-size: 200%;
}
#input p.documentation { /* application description */
margin-top: 0px;
padding-bottom: .25em;
border-bottom: 1px solid black;
font-family: serif;
font-weight: normal;
font-size: 100%;
}
#input #legend { /* required/optional legend */
}
#input form { /* input form */
margin-top: 2em;
}
#input fieldset { /* surrounding box for each section */
/*
border-top: 1px dotted gray;
border-bottom: none;
border-left: none;
border-right: none;
*/
}
#input legend { /* section title text */
color: gray;
}
#input div { /* all input fields */
margin-top: 1.5em;
}
#input div.required { /* required input fields */
padding: .25em;
background: #ddf;
}
#input div.additional { /* non-required input fields */
}
#input #submit { /* surrounding box for submit button */
text-align: center;
}
#input p { /* input field group text */
margin-top: 0px;
margin-bottom: 0px;
}
#input ol { /* input field group list */
margin-top: 0px;
margin-bottom: 0px;
}
#input span.label { /* input field label text */
}
#input span.field { /* input field itself */
}
#input span.description { /* input field description */
font-style: italic;
display: block;
margin-left: 1em;
}
#input #email span.description {
display: block;
}
#horizon { /* horizon div for vertical centering */
position: absolute;
top: 50%;
left: 0px;
width: 100%;
height: 1px;
overflow: visible;
text-align: center;
}
#running { /* EMBOSS is running div */
position: absolute;
top: -25px;
left: 50%;
width: 450px;
height: 45px;
margin-left: -225px;
text-align: center;
}
#running img { /* EMBOSS is running image */
display: block;
margin: auto;
text-align: center;
}
#running p { /* EMBOSS is running text */
margin-top: 1em;
text-align: center;
}
#output span.item {
display: block;
margin-top: 1em;
padding-top: 2px;
padding-left: .5em;
padding-bottom: 2px;
border-left: 2px solid #ddf;
}
#output dt {
}
#output dt span.type {
font-family: "Tahoma", sans-serif;
font-weight: bold;
text-transform: uppercase;
}
#output dd {
margin-left: 1em;
}
#output .error {
color: red;
}
#output dt.inline { /* inline output file label */
}
#output dd.inline { /* inline output file contents */
}
#output dt.outfile { /* output file label */
}
#output dd.outfile { /* output file contents */
}
#output dt.image { /* output image label */
}
#output dd.image { /* output image */
margin-top: 1em;
}
#output img {
border: 2px solid #def;
}
#output pre { /* inline output */
font-size: 110%;
}
html>#output pre { /* inline output, hidden from IE */
font-size: 100%;
}
|