params.css 1.17 KB
Newer Older
1 2 3 4 5 6 7
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This Source Code Form is "Incompatible With Secondary Licenses", as
 * defined by the Mozilla Public License, v. 2.0.
 */
8 9

#menu {
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
  width: 10em;
  margin-top: 1em;
  margin-right: 0.5em;
  border: solid thin;
  border-spacing: 0px;
  border-collapse: collapse;
  text-align: center;
  color: black;
  background-color: #edf2f2;
  font-weight: normal;
}

#menu a:link, #menu a:visited {
  color: #039;
  background-color: transparent;
}

#menu a:hover, #menu a:active {
  color: red;
  background-color: transparent;
}

#menu td {
  border: solid thin;
  padding: 0.2em 0.5em;
}

table td {
  vertical-align: top;
}

td.selected_section {
  color: #090;
  background-color: white;
}

46 47 48 49 50
td.index {
  color: black;
  background-color: #edf;
}

51 52 53 54 55 56 57
dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1.5em;
}
58

59 60 61 62 63 64
.sortlist_separator {
    font-weight: bold;
    font-size: 80%;
    background-color: #dddddd;
}

65 66 67 68 69
.contribute {
    border: 1px dotted black;
    padding: .5em;
    font-size: small;
}