color: #13a;
}
-/* Dashed line under the header. */
+/* Dividing line under the header. */
h1 {
- border-bottom: 1px dashed black;
+ border-bottom: 1px solid black;
margin-top: 0;
overflow: auto;
}
text-decoration: underline;
}
+/* Keep help-popup links unbolded in e.g. table headings. */
+.helplink {
+ font-weight: normal;
+}
+
/* Highlight error messages in bright red. */
.error {
color: #FF0000;
td.error {
border: 1px solid red;
}
+
+/* Navigation bar. */
+.navigation {
+ padding: 0em 1em;
+ font-size: 125%;
+ font-weight: bold;
+ font-family: "Trebuchet MS", Trebuchet, Sans, sans-serif;
+}
+.navigation li {
+ display: inline;
+ padding: .2em;
+}
+
+/* Logged-in welcome message. */
+.loggedin {
+ float: right;
+}
+.loggedin .name {
+ font-weight: bold;
+}