Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
| 2 | body, html { |
| 3 | color: #666; |
| 4 | font-family: verdana, tahoma, arial; |
| 5 | text-shadow: 1px 1px rgba(255, 255, 255, 0.4); |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 6 | margin: 0; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 7 | } |
| 8 | |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 9 | #top { |
| 10 | background-color: #7ba400; |
| 11 | padding: 10pt 0 10pt 30pt; |
| 12 | position: relative; |
| 13 | height: 62.5px; |
| 14 | } |
| 15 | |
| 16 | #button-right { |
| 17 | position: absolute; |
| 18 | right: 15px; |
| 19 | top: 15px; |
| 20 | } |
| 21 | |
| 22 | input, button { |
| 23 | border: 2px solid white; |
| 24 | padding: 3px; |
| 25 | font-size: 11pt; |
| 26 | } |
| 27 | |
| 28 | form { |
| 29 | margin-left: 235px; |
| 30 | margin-top:10px |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | form input[type=search] { |
| 34 | width: 50%; |
| 35 | } |
| 36 | |
| 37 | a { |
| 38 | text-decoration: none; |
| 39 | } |
| 40 | |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 41 | p.found { |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 42 | font-size: 10pt; |
| 43 | padding: 0; |
| 44 | margin: 0; |
| 45 | } |
| 46 | |
| 47 | p.found { |
| 48 | text-align: right; |
| 49 | } |
| 50 | |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 51 | #pagination { |
| 52 | position: fixed; |
| 53 | right: 20px; |
| 54 | bottom: 10px; |
| 55 | z-index: 800; |
| 56 | } |
| 57 | |
| 58 | #pagination span { |
| 59 | display: inline-block; |
| 60 | background-color: #ddd; |
| 61 | margin: 2pt; |
| 62 | height: 1.5em; |
| 63 | padding-left: .5em; |
| 64 | padding-right: .5em; |
| 65 | line-height: 1.5em; |
| 66 | text-align: center; |
| 67 | border-width: 2px; |
| 68 | border-style: solid; |
| 69 | border-color: #999; |
| 70 | box-shadow: 3px 3px 3px rgba(0,0,0,0.3); |
| 71 | } |
| 72 | |
| 73 | #pagination a { |
| 74 | text-shadow: 1px 1px rgba(255, 255, 255, 0.9); |
| 75 | } |
| 76 | |
| 77 | #pagination a[rel=self] span { |
| 78 | border-color: #ffa500; |
| 79 | background-color: #f4eebb; |
| 80 | color: #ff8000; |
| 81 | } |
| 82 | |
| 83 | #pagination a[href] { |
| 84 | color: #7ba400; |
| 85 | } |
| 86 | |
| 87 | #pagination a[href] span:hover { |
| 88 | background-color: #7ba400; |
| 89 | border-color: #496000; |
| 90 | color: #496000; |
| 91 | text-shadow: none; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | #total-results { |
| 95 | color: #c1002b; |
| 96 | } |
| 97 | |
| 98 | code { |
| 99 | background-color: #f4eebb; |
| 100 | display: block; |
| 101 | border-style: solid; |
| 102 | border-color: #ffa500; |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 103 | font-size: 12pt; |
| 104 | padding: 2pt; |
| 105 | color: #ff8000; |
| 106 | text-shadow: 1px 1px rgba(255, 255, 255, 0.9); |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 107 | border-width: 2px; |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 108 | margin: 0; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 109 | cursor: pointer; |
| 110 | } |
| 111 | |
| 112 | code:not(.active) { |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 113 | /* |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 114 | height: 12pt; |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 115 | */ |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | code:not(.active) span { |
| 119 | padding: 2pt; |
| 120 | } |
| 121 | |
| 122 | code:not(.active) pre { |
| 123 | display: none; |
| 124 | } |
| 125 | |
| 126 | code.active pre { |
| 127 | display: block; |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 128 | padding: 20px; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | code.active span { |
| 132 | display: none; |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame^] | 133 | } |
| 134 | |
| 135 | |
| 136 | #sidebar.active { |
| 137 | margin-left: 0px; |
| 138 | left: 0; |
| 139 | top: 0; |
| 140 | } |
| 141 | |
| 142 | #sidebar { |
| 143 | color: #fff; |
| 144 | text-shadow: none; |
| 145 | transition: all .3s ease-in-out; |
| 146 | position: fixed; |
| 147 | z-index: 500; |
| 148 | height: 100%; |
| 149 | background-color: #496000; |
| 150 | width: 260px; |
| 151 | margin-left: -245px; |
| 152 | left: 0; |
| 153 | top: 0; |
| 154 | } |
| 155 | |
| 156 | #search { |
| 157 | margin-left: 30px; |
| 158 | margin-right: 15px; |
| 159 | margin-bottom: 40px; |
| 160 | } |
| 161 | |
| 162 | |
| 163 | iframe { |
| 164 | border-width: 0; |
| 165 | border-top: 1px solid #ccc; |
| 166 | border-bottom: 1px solid #ccc; |
| 167 | height: 300px; |
| 168 | width: 100%; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 169 | } |