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
|
body { /* top-level container */
background: #c0c0c0;
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
padding-right: 16px; /* accomodate Internet Explorer scrollbar */
}
html>body { /* top-level container, hidden from IE */
padding-right: 0px; /* reverse the action taken above */
}
a {
text-decoration: none;
font-weight: bold;
}
a:link { color: #36c }
a:active { color: #300 }
a:visited { color: #36c }
h1 {
margin-bottom: 0px;
font-family: "Helvetica", "Arial", sans-serif;
font-weight: bold;
font-size: 50%;
padding-bottom: 1px;
border-bottom: 1px solid black;
}
.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) */
border: 2px solid black;
text-align: left;
}
#menu span.group { /* surrounding box for each group title */
display: block;
padding: 4px 6px 6px 6px;
background: black;
color: white;
text-align: center;
font-family: "Tahoma", sans-serif;
font-weight: bold;
}
#menu ul.group { /* surrounding box for each group list */
background: #ccc;
padding: 2px;
}
#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-style: italic;
font-weight: normal;
font-size: 100%;
}
#input #legend { /* required/optional legend */
margin-top: .5em;
}
#input form { /* input form */
margin-top: 2em;
}
#input fieldset { /* surrounding box for each section */
margin-top: 1em;
border: 2px solid black;
background: #ccc;
padding: 0px;
}
#input legend { /* section title text */
}
#input div { /* all input fields */
}
#input div.required { /* required input fields */
padding: .25em;
}
#input div.additional { /* non-required input fields */
padding: .25em;
background: #abc;
}
#input #submit { /* surrounding box for submit button */
text-align: center;
}
#input #email span.description {
display: block;
}
#input p { /* input field group text */
margin-top: .5em;
margin-bottom: .5em;
}
#input ol { /* input field group list */
margin-top: .5em;
margin-bottom: .5em;
}
#input ol li { /* input field group item */
margin-top: 1em;
margin-bottom: 1em;
}
#input span.label { /* input field label text */
}
#input span.field { /* input field itself */
}
#input span.description { /* input field description */
font-style: italic;
}
#input ol.sequence span.field {
display: block;
margin: .5em;
}
#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: 60px;
margin-left: -225px;
text-align: center;
border: 2px solid black;
background: white;
padding: 5px;
}
#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;
border: 2px solid black;
background: #ccc;
}
#output dt {
padding: 2px;
background: black;
color: white;
font-weight: bold;
}
#output dt span.type {
text-transform: uppercase;
}
#output dd {
margin-left: 0px;
padding: .5em;
}
#output dt.inline { /* inline output file label */
}
#output dt.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 */
}
#output pre { /* inline output */
font-size: 110%;
}
html>#output pre { /* inline output, hidden from IE */
font-size: 100%;
}
|