| | @@ -88,15 +88,54 @@ |
| 88 | 88 | div.sectionmenu>a.button, div.submenu label, |
| 89 | 89 | div.footer a { |
| 90 | 90 | padding: 0.15em 0.5em; |
| 91 | 91 | } |
| 92 | 92 | /* div.mainmenu a.active, FIXME: setting of .active is broken for some URIs */ |
| 93 | | -a:hover, a:visited:hover { |
| 93 | +a:hover, |
| 94 | +a:visited:hover { |
| 94 | 95 | background-color: #FF4500f0; |
| 95 | 96 | color: rgba(24,24,24,0.8); |
| 96 | 97 | border-radius: 0.1em; |
| 97 | 98 | } |
| 99 | +.button, |
| 100 | +button { |
| 101 | + color: #aaa; |
| 102 | + background-color: #444; |
| 103 | + border-radius: 5px; |
| 104 | + border: 0 |
| 105 | +} |
| 106 | +.button:hover, |
| 107 | +button:hover { |
| 108 | + background-color: #FF4500f0; |
| 109 | + color: rgba(24,24,24,0.8); |
| 110 | + outline: 0 |
| 111 | +} |
| 112 | +input[type=button], |
| 113 | +input[type=reset], |
| 114 | +input[type=submit] { |
| 115 | + color: #ddd; |
| 116 | + background-color: #446979; |
| 117 | + border: 0; |
| 118 | + border-radius: 5px |
| 119 | +} |
| 120 | +input[type=button]:hover, |
| 121 | +input[type=reset]:hover, |
| 122 | +input[type=submit]:hover { |
| 123 | + background-color: #FF4500f0; |
| 124 | + color: rgba(24,24,24,0.8); |
| 125 | + outline: 0 |
| 126 | +} |
| 127 | +.button:focus, |
| 128 | +button:focus, |
| 129 | +input[type=button]:focus, |
| 130 | +input[type=reset]:focus, |
| 131 | +input[type=submit]:focus { |
| 132 | + color: #333; |
| 133 | + border-color: #888; |
| 134 | + outline: 0 |
| 135 | +} |
| 136 | + |
| 98 | 137 | div.mainmenu a.active { |
| 99 | 138 | opacity: 0.8; |
| 100 | 139 | } |
| 101 | 140 | /*div.mainmenu a:hover, div.mainmenu a:visited:hover, |
| 102 | 141 | div.submenu a:hover, div.submenu a:visited:hover, |
| | @@ -473,13 +512,23 @@ |
| 473 | 512 | } |
| 474 | 513 | span.snippet>mark { |
| 475 | 514 | color: white; |
| 476 | 515 | font-weight: bold; |
| 477 | 516 | } |
| 478 | | -input, textarea { |
| 479 | | - background-color: #c8c8c8; |
| 480 | | - color: black; |
| 517 | +button, |
| 518 | +input, |
| 519 | +optgroup, |
| 520 | +select, |
| 521 | +textarea { |
| 522 | + background-color: inherit; |
| 523 | + color: inherit; |
| 524 | + font: inherit; |
| 525 | + margin: 0 |
| 526 | +} |
| 527 | +input, textarea, select { |
| 528 | + border: 1px solid rgba(127, 201, 255, 0.9); |
| 529 | + padding: 1px; |
| 481 | 530 | } |
| 482 | 531 | .capsumOff { |
| 483 | 532 | background-color: #222; |
| 484 | 533 | } |
| 485 | 534 | .capsumRead { |
| 486 | 535 | |