OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 .hidden { | 6 .hidden { |
7 display: none; | 7 display: none; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 color: #50A9D5; | 123 color: #50A9D5; |
124 } | 124 } |
125 | 125 |
126 code { | 126 code { |
127 font-size: 10pt; | 127 font-size: 10pt; |
128 } | 128 } |
129 | 129 |
130 pre { | 130 pre { |
131 font-size: 10pt; | 131 font-size: 10pt; |
132 background-color: #F5F5F5; | 132 background-color: #F5F5F5; |
133 border-top: 1px solid #DDD; | |
134 border-left: 1px solid #DDD; | |
135 margin: 1em 0 0 0; | 133 margin: 1em 0 0 0; |
136 padding: .99em; | 134 padding: .99em; |
137 overflow: auto; | 135 overflow: auto; |
138 word-wrap: break-word; | 136 word-wrap: break-word; |
139 } | 137 } |
140 | 138 |
| 139 pre a { |
| 140 text-decoration: underline!important; |
| 141 } |
| 142 |
141 pre b { | 143 pre b { |
142 background: yellow; | 144 background: yellow; |
143 } | 145 } |
144 | 146 |
145 dt { | 147 dt { |
146 font-weight: bold; | 148 font-weight: bold; |
147 margin: .75em 0 0 0; | 149 margin: .75em 0 0 0; |
148 } | 150 } |
149 | 151 |
150 dl { | 152 dl { |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 | 432 |
431 td.gsc-input { | 433 td.gsc-input { |
432 padding: 0 0; | 434 padding: 0 0; |
433 } | 435 } |
434 | 436 |
435 div.gsc-input-box { | 437 div.gsc-input-box { |
436 height: 30px; | 438 height: 30px; |
437 width: 250px; | 439 width: 250px; |
438 float: right; | 440 float: right; |
439 } | 441 } |
OLD | NEW |