OLD | NEW |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
1 .type_name, | 6 .type_name, |
2 .variable, | 7 .variable, |
3 .property { | 8 .property { |
4 font-style: italic; | 9 font-style: italic; |
5 } | 10 } |
6 | 11 |
7 #gc-pagecontent table { | 12 #gc-pagecontent table { |
8 border-collapse: collapse; | 13 border-collapse: collapse; |
9 } | 14 } |
10 | 15 |
(...skipping 28 matching lines...) Expand all Loading... |
39 margin-left: 2em; | 44 margin-left: 2em; |
40 } | 45 } |
41 | 46 |
42 div.summary .subdued { | 47 div.summary .subdued { |
43 color: #dfc9fb; | 48 color: #dfc9fb; |
44 } | 49 } |
45 | 50 |
46 .optional { | 51 .optional { |
47 color: #7D7D7D; | 52 color: #7D7D7D; |
48 } | 53 } |
49 | |
50 #toc { | |
51 background-color: #E8EDEB; | |
52 float: right; | |
53 margin: 5px 0px 5px 20px; | |
54 padding: 5px; | |
55 width: 250px; | |
56 } | |
57 | |
58 #toc * { | |
59 padding: 0; | |
60 list-style: none; | |
61 } | |
62 | |
63 #toc h2 { | |
64 font-weight: bold; | |
65 font-size: 100%; | |
66 margin: 0; | |
67 border: none; | |
68 background-color: #E8EDEB; | |
69 padding: 0; | |
70 } | |
71 | |
72 #toc ol { | |
73 margin: 1em 0 0 0; | |
74 } | |
75 | |
76 #toc ol li { | |
77 margin: .4em 0 0 1em; | |
78 } | |
79 | |
80 #toc ol li ol { | |
81 margin: 0; | |
82 } | |
83 | |
84 #toc ol li ol li { | |
85 margin: .1em 0 0 1em; | |
86 } | |
OLD | NEW |