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 { | 7 .documentation-example-code { |
8 border: 1px dotted black; | 8 border: 1px dotted black; |
9 border-radius: 6px; | 9 border-radius: 6px; |
10 padding: 1em; | 10 padding: 1em; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 } | 57 } |
58 | 58 |
59 .documentation-parameter-data-type { | 59 .documentation-parameter-data-type { |
60 margin-right: 0.5em; | 60 margin-right: 0.5em; |
61 } | 61 } |
62 | 62 |
63 .documentation-parameter-optional { | 63 .documentation-parameter-optional { |
64 padding: 0.7ex; | 64 padding: 0.7ex; |
65 background-color: rgb(219, 234, 249); | 65 background-color: rgb(219, 234, 249); |
66 text-decoration: none; | 66 text-decoration: none; |
67 margin-left: 1ex; | |
68 margin-top: -0.5ex; | |
69 border-radius: 5px; | 67 border-radius: 5px; |
70 } | 68 } |
71 | 69 |
72 .documentation-parameter-data-type-value { | 70 .documentation-parameter-data-type-value { |
73 margin-right: 0.5em; | |
74 padding: 0.7ex; | 71 padding: 0.7ex; |
75 background-color: rgb(254, 254, 202); | 72 background-color: rgb(254, 254, 202); |
76 text-decoration: none; | 73 text-decoration: none; |
77 margin-left: 1ex; | |
78 margin-top: -0.5ex; | |
79 border-radius: 5px; | 74 border-radius: 5px; |
80 } | 75 } |
81 | 76 |
| 77 .documentation-parameter-margin { |
| 78 margin-left: 1ex; |
| 79 margin-top: -0.5ex; |
| 80 } |
| 81 |
82 .documentation-parameter-name { | 82 .documentation-parameter-name { |
83 font-size: 115%; | 83 font-size: 115%; |
84 font-style: italic; | 84 font-style: italic; |
85 } | 85 } |
86 | 86 |
| 87 .documentation-return-type { |
| 88 padding: 0.7ex; |
| 89 background-color: rgb(213, 255, 212); |
| 90 text-decoration: none; |
| 91 border-radius: 5px; |
| 92 } |
| 93 |
87 .documentation-page-title { | 94 .documentation-page-title { |
88 font-size: 160%; | 95 font-size: 160%; |
89 font-weight: bold; | 96 font-weight: bold; |
90 padding-bottom: 0.7em; | 97 padding-bottom: 0.7em; |
91 } | 98 } |
92 | 99 |
93 .documentation-view { | 100 .documentation-view { |
94 -webkit-user-select: text; | 101 -webkit-user-select: text; |
95 padding: 1em; | 102 padding: 1em; |
96 } | 103 } |
97 | 104 |
98 .documentation-example-description-section { | 105 .documentation-example-description-section { |
99 margin-bottom: 1em; | 106 margin-bottom: 1em; |
100 } | 107 } |
101 | 108 |
102 .documentation-example-link { | 109 .documentation-example-link { |
103 float: right; | 110 float: right; |
104 padding: 0.7ex; | 111 padding: 0.7ex; |
105 background-color: rgb(241, 246, 251); | 112 background-color: rgb(241, 246, 251); |
106 text-decoration: none; | 113 text-decoration: none; |
107 margin-left: 1ex; | 114 margin-left: 1ex; |
108 margin-top: -0.5ex; | 115 margin-top: -0.5ex; |
109 border-radius: 5px; | 116 border-radius: 5px; |
110 } | 117 } |
OLD | NEW |