| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
 | /* Common Style */
body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
a {
  color: blue;
}
/* Main Layout */
#header {
  height: 3.5em;
}
#sidebar,
#main {
  position: absolute;
  top: 3.5em;
  bottom: 0;
  margin-top: 1px;
  overflow-x: hidden;
}
#sidebar {
  width: 13.8em;
  padding: 0.8em 0em 1.5em 0.8em;
}
#main {
  left: 14.6em;
  right: 0;
  padding: 1em;
  overflow-y: scroll;
}
#api-list {
  position: absolute;
  top: 3em;
  bottom: 1em;
  overflow-y: scroll;
  padding-right: 0.8em;
}
/* App Header */
#header {
  background-color: #F2C200;
  border-bottom: 1px solid #957800;
}
#header h1 {
  font-weight: normal;
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  padding: 10px 10px;
  height: 30px;
}
#header .angular {
  font-family: "Courier New", monospace;
  font-weight: bold;
}
#header h1 a {
  color: black;
  text-decoration: none;
}
#header h1 a:hover {
  text-decoration: underline;
}
/* Main main Style */
#main h1 {
  font-family: monospace;
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #CCC;
}
#main h2 {
  margin-top: 1.8em;
}
#main h1 + h2 {
  margin-top: 1.3em;
}
#main h3 {
  margin-top: 1.5em;
}
#main ul.methods,
#main ul.properties {
  margin: 0;
  padding-left: 1em;
}
#main ul.methods > li,
#main ul.properties > li {
  list-style: none;
  padding: 0 10px 10px 10px;
  margin-top: 1.5em;
  border: 1px solid #000;
}
#main ul.methods > li > h3,
#main ul.properties > li > h3 {
  font-family: "Courier New", monospace;
  background-color: #E0E0E0;
  margin: 0 -10px 5px -10px;
  padding: .5em .5em .25em .5em;
  border-bottom: 1px solid #888;
}
#main ul.parameters li > p,
#main div.returns > p {
  display: inline; /* the top most paragraph should not cause new lines inside lists. */
}
.main-title {
  float: right;
}
/* Searchbox & Sidebar Style */
#search-box, #sidebar {
  border-right: 1px solid #DDD;
}
#sidebar {
  background-color: #EEE;
}
#search-box {
  width: 16em;
  margin-bottom: 1em;
}
#sidebar a {
  text-decoration: none;
}
#sidebar a:hover {
  text-decoration: underline;
}
#sidebar ul {
  list-style-type: none;
  /*TODO(esprehn): Can we just reset globally and not break examples?*/
  margin: 0;
  padding: 0 0.8em 0 0;
  width: 13em;
}
#sidebar ul li {
}
#sidebar ul li a {
  display: block;
  padding: 2px 2px 2px 4px;
}
#sidebar ul li.selected a {
  background-color: #DDD;
  border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #CCC;
  padding: 1px 1px 1px 3px;
}
#sidebar ul li.level-0 {
  margin-top: 0.5em;
  margin-left: 0em;
  font-weight: bold;
  font-size: 1.2em;
}
#sidebar ul li.level-0:first-child {
  margin-top: 0;
}
#sidebar ul li.level-1.level-angular {
  font-family: monospace;
  font-weight: normal;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
}
#sidebar ul li.level-1 {
  margin-left: 1em;
  margin-top: 5px;
  font-size: 1.1em;
  font-weight: bold;
}
#sidebar ul li.level-2 {
  margin-left: 2em;
  font-family: monospace;
}
#sidebar ul li.level-3 {
  margin-left: 3em;
  font-family: monospace;
}
#sidebar ul li.level-4 {
  margin-left: 4em;
  font-family: monospace;
}
/* Warning and Info Banners */
.deprecated {
  border: 2px solid red;
}
.deprecated legend {
  font-weight: bold;
  color: red;
}
.workInProgress {
  border: 2px solid orange;
}
.workInProgress legend {
  font-weight: bold;
  color: orange;
}
/* Feedback Link */
#feedback {
  float: right;
  width: 10em;
  text-align: right;
}
/* Live Example Style */
.doc-example-live table td {
  padding: 0 1.5em;
}
/* Scrollbars */
::-webkit-scrollbar{
  width:0.8em;
  margin: 0.2em 0em;
}
::-webkit-scrollbar:hover{
  background-color:#eee;
}
::-webkit-scrollbar-thumb{
  min-height:0.8em;
  min-width:0.8em;
  -webkit-border-radius:0.5em;
  background-color: #ddd;
}
::-webkit-scrollbar-thumb:hover{
  background-color: #bbb;
}
::-webkit-scrollbar-thumb:active{
  background-color:#888;
}
#sidebar::-webkit-scrollbar {
  background-color:#eee;
}
#main::-webkit-scrollbar {
  background-color:#fff;
}
/* Content */
img.right {
  float: right;
}
h1, h2, h3, h4, h5 {
  clear: both;
}
 |