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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 | 67 |
68 img { | 68 img { |
69 border: none; | 69 border: none; |
70 padding: 10px 0; | 70 padding: 10px 0; |
71 } | 71 } |
72 | 72 |
73 p img { | 73 p img { |
74 padding: 0 2px; | 74 padding: 0 2px; |
75 } | 75 } |
76 | 76 |
| 77 .code, |
77 code, | 78 code, |
78 pre { | 79 pre { |
79 font-family: monospace; | 80 font-family: monospace; |
80 color: #080; | 81 color: #080; |
81 } | 82 } |
82 | 83 |
83 code { | 84 .code, |
| 85 code{ |
84 font-size: 10pt; | 86 font-size: 10pt; |
85 } | 87 } |
86 | 88 |
87 pre { | 89 pre { |
88 font-size: 10pt; | 90 font-size: 10pt; |
89 background-color: #F5F5F5; | 91 background-color: #F5F5F5; |
90 margin: 1em 0 0 0; | 92 margin: 1em 0 0 0; |
91 padding: .99em; | 93 padding: .99em; |
92 overflow: auto; | 94 overflow: auto; |
93 word-wrap: break-word; | 95 word-wrap: break-word; |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 border: 1px solid #ccc; | 599 border: 1px solid #ccc; |
598 margin-top: -1px; | 600 margin-top: -1px; |
599 } | 601 } |
600 tabs content.unselected { | 602 tabs content.unselected { |
601 display: none; | 603 display: none; |
602 } | 604 } |
603 tabs content pre { | 605 tabs content pre { |
604 margin: 0; | 606 margin: 0; |
605 padding: 10px; | 607 padding: 10px; |
606 } | 608 } |
OLD | NEW |