OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .documentation-example-code { | |
8 border: 1px dotted black; | |
9 border-radius: 6px; | |
10 padding: 10px; | |
11 margin-bottom: 10px; | |
12 } | |
13 | |
14 .documentation-code { | 7 .documentation-code { |
15 border: 1px dotted black; | 8 border: 1px dotted black; |
16 border-radius: 6px; | 9 border-radius: 6px; |
17 padding: 10px; | 10 padding: 10px; |
18 margin-bottom: 10px; | 11 margin-bottom: 10px; |
19 } | 12 } |
20 | 13 |
21 .documentation-section-title { | 14 .documentation-section-title { |
22 font-size: 120%; | 15 font-size: 120%; |
23 padding-bottom: 4px; | 16 padding-bottom: 4px; |
(...skipping 14 matching lines...) Expand all Loading... |
38 | 31 |
39 .documentation-section { | 32 .documentation-section { |
40 margin-bottom: 15px; | 33 margin-bottom: 15px; |
41 } | 34 } |
42 | 35 |
43 .documentation-code-tag { | 36 .documentation-code-tag { |
44 font-weight: bold; | 37 font-weight: bold; |
45 } | 38 } |
46 | 39 |
47 .documentation-parameter-optional { | 40 .documentation-parameter-optional { |
48 padding: 6px; | |
49 background-color: rgb(219, 234, 249); | 41 background-color: rgb(219, 234, 249); |
50 text-decoration: none; | |
51 margin-left: 10px; | |
52 margin-top: -5px; | |
53 border-radius: 5px; | |
54 } | 42 } |
55 | 43 |
56 .documentation-parameter-data-type-value { | 44 .documentation-parameter-data-type-value { |
57 margin-right: 5px; | |
58 padding: 6px; | |
59 background-color: rgb(254, 254, 202); | 45 background-color: rgb(254, 254, 202); |
60 text-decoration: none; | |
61 margin-left: 10px; | |
62 margin-top: 5px; | |
63 border-radius: 5px; | |
64 } | 46 } |
65 | 47 |
66 .documentation-parameter-name { | 48 .documentation-parameter-name { |
67 font-size: 120%; | 49 font-size: 120%; |
68 font-style: italic; | 50 font-style: italic; |
69 } | 51 } |
70 | 52 |
71 .documentation-page-title { | 53 .documentation-page-title { |
72 font-size: 160%; | 54 font-size: 160%; |
73 font-weight: bold; | 55 font-weight: bold; |
74 padding-bottom: 7px; | 56 padding-bottom: 7px; |
75 } | 57 } |
76 | 58 |
77 .documentation-view { | 59 .documentation-view { |
78 -webkit-user-select: text; | 60 -webkit-user-select: text; |
79 padding: 10px; | 61 padding: 10px; |
80 } | 62 } |
81 | 63 |
82 .documentation-example-description-section { | 64 .documentation-example-description-section { |
83 margin-bottom: 10px; | 65 margin-bottom: 10px; |
84 } | 66 } |
85 | 67 |
86 .documentation-example-link { | 68 .documentation-example-link { |
87 float: right; | 69 float: right; |
| 70 } |
| 71 |
| 72 .documentation-box { |
88 padding: 6px; | 73 padding: 6px; |
89 background-color: rgb(241, 246, 251); | |
90 text-decoration: none; | 74 text-decoration: none; |
91 margin-left: 10px; | 75 margin-left: 10px; |
92 margin-top: 5px; | 76 margin-top: 5px; |
93 border-radius: 5px; | 77 border-radius: 5px; |
94 } | 78 } |
OLD | NEW |