blob: c3eb8bcd9dfd748befcb6d034320c7e399cc240b [file] [log] [blame]
Scott Maine4d8f1b2012-06-21 18:03:05 -07001/* color definitions */
2/* 16 column layout */
3/* clearfix idiom */
4/* common mixins */
5/* page layout + top-level styles */
Scott Maine4d8f1b2012-06-21 18:03:05 -07006::selection {
7 background-color: #0099cc;
8 color: #fff; }
Scott Mainb7f96372013-02-07 16:56:43 -08009::-webkit-selection {
10 background-color: #0099cc;
11 color: #fff; }
12::-moz-selection {
13 background-color: #0099cc;
14 color: #fff; }
Scott Maine4d8f1b2012-06-21 18:03:05 -070015
16html, body {
17 height: 100%;
18 margin: 0;
19 padding: 0;
20 background-color:#F9F9F9;
21 -webkit-font-smoothing: antialiased;
22 /* prevent subpixel antialiasing, which thickens the text */
23 /* text-rendering: optimizeLegibility; */
24 /* turned off ligatures due to bug 5945455 */ }
25
26body {
Scott Main9ada2262012-06-23 14:59:36 -070027 color: #222;
Scott Main6a7a66b2012-06-23 11:20:48 -070028 font: 14px/19px Roboto, sans-serif;
Scott Maine4d8f1b2012-06-21 18:03:05 -070029 font-weight: 400;
30 letter-spacing:.1;
31 padding:0 10px; }
32
33#page-container {
34 width: 940px;
35 margin: 0 40px; }
36
37#page-header {
38 height: 80px;
39 margin-bottom: 20px;
40 font-size: 48px;
41 line-height: 48px;
42 font-weight: 100;
43 padding-left: 10px; }
44 #page-header a {
45 display: block;
46 position: relative;
47 top: 20px;
48 text-decoration: none;
49 color: #555555 !important; }
50
51#main-row {
52 display: inline-block; }
53 #main-row:after {
54 content: ".";
55 display: block;
56 height: 0;
57 clear: both;
58 visibility: hidden; }
59 * html #main-row {
60 height: 1px; }
61
62#page-footer {
63 margin-left: 190px;
64 margin-top: 80px;
65 color: #999999;
66 padding-bottom: 40px;
67 font-size: 12px;
68 line-height: 15px; }
69 #page-footer a {
70 color: #777777; }
71 #page-footer #copyright {
72 margin-bottom: 10px; }
73
74#nav-container {
75 width: 160px;
76 min-height: 10px;
77 margin-right: 20px;
78 float: left; }
79
80#nav {
81 margin:0;
82 padding:0 0 30px;
83}
84
85#side-nav {
86 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
87 margin-bottom:1px;
88}
89#devdoc-nav {
90 outline:none;
91 width:auto;
92 margin: 20px 0 0; }
Scott Main98a2a712013-07-17 13:15:04 -070093
Scott Maine4d8f1b2012-06-21 18:03:05 -070094#devdoc-nav h2 {
95 border:0;
96}
97
98#devdoc-nav.fixed {
99 position: fixed;
100 margin:0;
101 top: 20px; }
Scott Main98a2a712013-07-17 13:15:04 -0700102
Scott Main6b2dc272012-09-11 14:27:34 -0700103#devdoc-nav span.small {
104 font-size:12px;
105 font-weight:normal;
106}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700107
108#content {
109 width: 760px;
110 float: left; }
111
112a:hover,
113acronym:hover {
114 color: #7aa1b0 !important; }
115
116a:focus,
117a:active {
118 color: #33b5e5 !important; }
Scott Main98a2a712013-07-17 13:15:04 -0700119
Scott Maind4cb7832012-11-28 11:10:09 -0800120a.external-link {
121 background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
122 padding-right:16px;
123}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700124
125img {
126 border: none; }
127#jd-content img {
128 margin-bottom:15px;
129}
130
131ul {
132 margin: 0;
133 padding: 0; }
134
135strong {
136 font-weight: 500; }
137
138em {
139 font-style: italic; }
140
Scott Maindb3678b2012-10-23 14:13:41 -0700141acronym,
142.tooltip-link {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700143 border-bottom: 1px dotted #555555;
144 cursor: help; }
145
Scott Maindb3678b2012-10-23 14:13:41 -0700146acronym:hover,
147.tooltip-link:hover {
148 color: #7aa1b0;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700149 border-bottom-color: #7aa1b0; }
150
151img.with-shadow,
152video.with-shadow {
153 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
154
155/* disclosures mixin */
156/* content layout */
157.layout-content-row {
158 display: inline-block;
159 margin-bottom: 10px; }
160 .layout-content-row:after {
161 content: ".";
162 display: block;
163 height: 0;
164 clear: both;
165 visibility: hidden; }
166 * html .layout-content-row {
167 height: 1px; }
168
169.layout-content-col {
170 float: left;
171 margin-left: 20px; }
172 .layout-content-col:first-child {
173 margin-left: 0; }
174 .layout-content-col h3,
175 .layout-content-col h4 {
176 margin-top:0; }
177
178.layout-content-col.span-1 {
179 width: 40px; }
180
181.layout-content-col.span-2 {
182 width: 100px; }
183
184.layout-content-col.span-3 {
185 width: 160px; }
186
187.layout-content-col.span-4 {
188 width: 220px; }
189
190.layout-content-col.span-5 {
191 width: 280px; }
192
193.layout-content-col.span-6 {
194 width: 340px; }
195
196.layout-content-col.span-7 {
197 width: 400px; }
198
199.layout-content-col.span-8 {
200 width: 460px; }
201
202.layout-content-col.span-9 {
203 width: 520px; }
204
205.layout-content-col.span-10 {
206 width: 580px; }
207
208.layout-content-col.span-11 {
209 width: 640px; }
210
211.layout-content-col.span-12 {
212 width: 700px; }
213
214.layout-content-col.span-13 {
215 width: 760px; }
216
217.vspace.size-1 {
218 height: 10px; }
219
220.vspace.size-2 {
221 height: 20px; }
222
223.vspace.size-3 {
224 height: 30px; }
225
226.vspace.size-4 {
227 height: 40px; }
228
229.vspace.size-5 {
230 height: 50px; }
231
232.vspace.size-6 {
233 height: 60px; }
234
235.vspace.size-7 {
236 height: 70px; }
237
238.vspace.size-8 {
239 height: 80px; }
240
241.vspace.size-9 {
242 height: 90px; }
243
244.vspace.size-10 {
245 height: 100px; }
246
247.vspace.size-11 {
248 height: 110px; }
249
250.vspace.size-12 {
251 height: 120px; }
252
253.vspace.size-13 {
254 height: 130px; }
255
256.vspace.size-14 {
257 height: 140px; }
258
259.vspace.size-15 {
260 height: 150px; }
261
262.vspace.size-16 {
263 height: 160px; }
264
265/* nav */
266#nav {
267 /* section header divs */
268 /* expanded section header divs */
269 /* sublinks */ }
270 #nav li {
271 list-style-type: none;
272 font-size: 14px;
273 margin:0;
274 padding:0;
275 line-height: 15px; }
276 #nav a {
277 color: #555555;
Scott Mainab4daf42012-11-30 11:27:17 -0800278 text-decoration: none;
279 word-wrap:break-word; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700280 #nav .nav-section-header {
281 position: relative;
282 margin-bottom: 1px;
283 padding: 0 30px 0 0; }
284 #nav li.selected a, #nav li.selected > .nav-section-header > a {
285 color: #09C;
286 }
287 #nav li.selected ul li a {
288 /* don't highlight child items */
289 color: #555555; }
290 #nav .nav-section .nav-section .nav-section-header {
291 /* no white line between second level sections */
292 margin-bottom: 0; }
293 /* section header links */
294 #nav > li > div > a {
295 display: block;
296 color: #333333;
297 font-weight: 500;
298 padding: 10px 0 10px 10px; }
299 #nav .nav-section-header:after {
300 content: '';
301 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
302 width: 34px;
303 height: 34px;
304 display: block;
305 position: absolute;
306 top: 0;
307 right: 0; }
Scott Mainad08f072013-08-20 16:49:57 -0700308 #nav .nav-section-header.empty {
309 padding:0; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700310 #nav .nav-section-header.empty:after {
311 display: none; }
312 /* nested nav headers */
313 #nav .nav-section .nav-section {
314 position: relative;
315 padding: 0;
316 margin: 0; }
317 #nav .nav-section li a {
318 /* first gen child (2nd level li) */
319 display:block;
320 font-weight: normal;
321 text-transform: none;
322 padding: 7px 5px 7px 10px;
323 }
324 #nav .nav-section li li a {
325 /* second gen child (3rd level li) */
326 padding: 5px 5px 5px 10px;
327 }
328 #nav li.expanded .nav-section-header {
329 background:#e9e9e9;
330 background: rgba(0, 0, 0, 0.05); }
331 #nav li.expanded li .nav-section-header {
332 background: transparent; }
333 #nav li.expanded li ul {
334 /* 3rd level ul */
Scott Main502c9392012-11-27 15:00:40 -0800335 padding:0 0 0 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700336 }
337 #nav li.expanded > .nav-section-header:after {
338 content: '';
339 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
340 width: 34px;
341 height: 34px; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800342 #nav li.expanded li ul.tree-list-children {
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -0700343 padding: 0;
Scott Mainac71b2b2012-11-30 14:40:58 -0800344 }
345 #nav li.expanded li ul.tree-list-children .tree-list-children {
Scott Main98a2a712013-07-17 13:15:04 -0700346 padding:0 0 0 10px;
Scott Mainac71b2b2012-11-30 14:40:58 -0800347 }
348 #nav li span.tree-list-subtitle {
349 display:inline-block;
350 padding:5px 0 0 10px;
351 color:#555;
352 text-transform:uppercase;
353 font-size:12px;
354 }
355 #nav li span.tree-list-subtitle:before {
356 content: '—';
357 }
358 #nav li span.tree-list-subtitle:after {
359 content: '—';
360 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700361 #nav li ul {
362 display:none;
363 overflow: hidden;
364 margin: 0; }
365 #nav li ul.animate-height-in {
366 -webkit-transition: height 0.25s ease-in;
367 -moz-transition: height 0.25s ease-in;
368 transition: height 0.25s ease-in; }
369 #nav li ul.animate-height-out {
370 -webkit-transition: height 0.25s ease-out;
371 -moz-transition: height 0.25s ease-out;
372 transition: height 0.25s ease-out; }
373 #nav li ul li {
374 padding: 0; }
375 #nav li li li {
376 padding: 0; }
377 #nav li.expanded ul {
378 }
379 #nav li ul > li {
380 padding:0;
381 }
382 #nav li ul > li:last-child {
383 padding-bottom:5px;
384 }
Scott Mainac71b2b2012-11-30 14:40:58 -0800385 #nav li ul.tree-list-children > li:last-child {
386 padding-bottom:0;
387 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700388 #nav li.expanded ul > li {
389 background:#efefef;
390 background: rgba(0, 0, 0, 0.03); }
391 #nav li.expanded ul > li li {
392 background:inherit; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800393 #nav li ul.tree-list-children ul {
394 display:block; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700395
Scott Main70557ee2013-10-30 14:47:40 -0700396#nav.samples-nav li li li {
397 font-size:13px;
398}
399#nav.samples-nav li li li a {
400 padding-top:3px;
401 padding-bottom:3px;
402}
403#nav.samples-nav li li ul > li:last-child {
404 padding-bottom:3px;
405}
406
Scott Maine4d8f1b2012-06-21 18:03:05 -0700407.new,
408.new-child {
409 font-size: .78em;
410 font-weight: bold;
411 color: #ff3d3d;
412 vertical-align:top;
413 white-space:nowrap;
414}
415
416/* content header */
417.content-header {
418 height: 30px;
419 margin:20px 0 25px;
420 padding:0 0 10px;}
421.content-header.just-links {
422 margin-bottom:0;
423 padding-bottom:0;}
Scott Main98a2a712013-07-17 13:15:04 -0700424
Scott Maine4d8f1b2012-06-21 18:03:05 -0700425.content-header h1 {
426 color:#000;
427 margin:0;
428 border-bottom:0;
429 padding:0;
430}
431
432.content-footer {
433 border-top: 1px solid #ccc;
434 margin-top: 10px;
435 padding-top:10px;
436 height: 30px; }
437
438.content-footer .col-9 {
439 margin-left:0;
440}
441.content-footer .col-4 {
442 margin-right:0;
443}
444.content-footer.wrap {
445 width:940px;
446}
447
448.paging-links {
449 position: relative; }
450 .paging-links a {
451 position: absolute; }
452 .paging-links a,
453 .training-nav-top a {
454 font-size: 14px;
455 line-height: 30px;
456 color: #555555;
457 text-decoration: none;
458 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700459 .paging-links .prev-page-link:before,
460 .training-nav-top .prev-page-link:before {
461 content: '';
462 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
463 width: 10px;
464 height: 10px;
465 display: inline-block;
466 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700467 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700468 .training-nav-top .start-class-link,
469 .training-nav-top .start-course-link {
470 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700471 .paging-links .prev-page-link {
472 left: -15px; }
473 .paging-links .next-page-link {
474 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700475 .next-page-link:after,
476 .start-class-link:after,
477 .start-course-link:after,
Scott Main0b2db162013-05-15 01:15:50 -0700478 .next-class-link:after,
479 .go-link:after {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700480 content: '';
481 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
482 width: 10px;
483 height: 10px;
484 display: inline-block;
485 margin-left: 5px; }
Scott Main25c89dd2013-10-07 14:17:55 -0700486 .prev-page-link.inline:before {
487 content: none; }
488 .next-page-link.inline:after {
489 content: none; }
Scott Main98a2a712013-07-17 13:15:04 -0700490
491
Scott Maine4d8f1b2012-06-21 18:03:05 -0700492 .training-nav-top a {
493 display:block;
494 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700495 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700496 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700497 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700498 line-height:28px;
499 text-align:center;
500 border:1px solid #DADADA;
501 border-bottom:0;
502 }
Scott Main5a1123e2012-09-26 12:51:28 -0700503
Scott Maine4d8f1b2012-06-21 18:03:05 -0700504 .training-nav-top a.next-page-link {
505 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700506 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700507 }
Scott Main98a2a712013-07-17 13:15:04 -0700508
Scott Main5a1123e2012-09-26 12:51:28 -0700509 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700510 .training-nav-top a.disabled,
511 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700512 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700513 }
Scott Main98a2a712013-07-17 13:15:04 -0700514
Scott Main5a1123e2012-09-26 12:51:28 -0700515 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700516 .training-nav-top a.disabled:hover,
517 .content-footer a.disabled:hover {
518 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700519 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700520 }
Scott Main98a2a712013-07-17 13:15:04 -0700521
Scott Maine4d8f1b2012-06-21 18:03:05 -0700522 .training-nav-top a.start-class-link,
523 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700524 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700525 }
Scott Main98a2a712013-07-17 13:15:04 -0700526
Scott Main5a1123e2012-09-26 12:51:28 -0700527 /* list of classes on course landing page */
528 ol.class-list {
529 list-style:none;
530 margin-left:0;
531 }
532 ol.class-list>li {
533 margin:0 0 15px;
534 padding:5px 0 0;
535 overflow:hidden;
536 border-top:1px solid #ccc;
537 }
538 ol.class-list li a.title {
539 font-size:16px;
540 margin:0;
541 clear:left;
542 display:block;
543 height:32px;
544 padding:0 4px;
545 }
546 ol.class-list li a.title h2 {
547 color:inherit;
548 margin:0 0 10px;
549 display:block;
550 float:left;
551 width:675px;
552 }
553 ol.class-list li a.title span {
554 display:none;
555 float:left;
556 font-size:18px;
557 font-weight:bold;
558 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
559 width: 10px;
560 height: 32px;
561 }
562 ol.class-list li a.title:hover {
563 background:#ddd;
564 color:#258AAF !important;
565 }
566 ol.class-list li a.title:hover span {
567 display:block;
568 }
Scott Main98a2a712013-07-17 13:15:04 -0700569
Scott Main5a1123e2012-09-26 12:51:28 -0700570 #jd-content
571 ol.class-list li img {
572 float:left;
573 clear:left;
574 width:64px;
575 margin:0 20px 0 0;
576 }
577 ol.class-list li p.description {
578 float:left;
579 display:block;
580 width:250px;
581 margin:0;
582 }
583 ol.class-list li p.description.article {
584 width: 550px;
585 }
586 ol.class-list ol {
587 float:left;
588 width:320px;
589 margin:0 0 0 30px;
590 list-style:none;
591 margin:0 0 0 20px;
592 }
593 ol.class-list div.lessons li {
594 margin:0 0 6px;
595 line-height:16px;
596 }
Scott Main98a2a712013-07-17 13:15:04 -0700597
598
Scott Maine4d8f1b2012-06-21 18:03:05 -0700599 .hide {
600 display:none !important;
601 }
Scott Main98a2a712013-07-17 13:15:04 -0700602
Scott Maine4d8f1b2012-06-21 18:03:05 -0700603 .content-footer.next-class {
604 display:block;
605 border:0;
606 margin-top:0;
607 padding-top:0;
608 }
Scott Main98a2a712013-07-17 13:15:04 -0700609
Scott Maine4d8f1b2012-06-21 18:03:05 -0700610 .content-footer.next-class a.next-class-link {
611 display:block;
612 float:right;
613 text-transform:uppercase;
614 }
Scott Main98a2a712013-07-17 13:15:04 -0700615
616
617
Scott Mainbbffb4b2012-11-13 07:40:16 -0800618 /* inner-doc tabs w/ title */
Scott Main98a2a712013-07-17 13:15:04 -0700619
Scott Mainbbffb4b2012-11-13 07:40:16 -0800620div#title-tabs-wrapper {
621 border-bottom:1px solid #ccc;
622 margin:20px 0 30px;
623}
624h1.with-title-tabs {
625 display:inline-block;
626 margin:0 0 -1px 0;
627 padding:0 60px 0 0;
628 border-bottom:1px solid #F9F9F9;
629}
630ul#title-tabs {
631 list-style:none;
632 padding:0;
633 height:29px;
634 margin:0;
635 font-size:16px;
636 line-height:26px;
637 display:inline-block;
638 vertical-align:bottom;
639}
640ul#title-tabs li {
641 display:block;
642 float:left;
643 margin-right:40px;
644 border-bottom: 3px solid transparent;
645}
646ul#title-tabs li.selected {
647 border-bottom: 3px solid #93C;
648}
649ul#title-tabs li a {
650 color:#333;
651}
652ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800653ul#title-tabs li a:active {
654 color:#93C !important;
655}
656
657
Scott Maine4d8f1b2012-06-21 18:03:05 -0700658
659/* content body */
660@-webkit-keyframes glowheader {
661 from {
662 background-color: #33b5e5;
663 color: #000;
664 border-bottom-color: #000; }
665
666 to {
667 background-color: transparent;
668 color: #33b5e5;
669 border-bottom-color: #33b5e5; } }
670
671@-moz-keyframes glowheader {
672 from {
673 background-color: #33b5e5;
674 color: #000;
675 border-bottom-color: #000; }
676
677 to {
678 background-color: transparent;
679 color: #33b5e5;
680 border-bottom-color: #33b5e5; } }
681
682@keyframes glowheader {
683 from {
684 background-color: #33b5e5;
685 color: #000;
686 border-bottom-color: #000; }
687
688 to {
689 background-color: transparent;
690 color: #33b5e5;
691 border-bottom-color: #33b5e5; } }
692
693h2:target,
694h3:target {
695 -webkit-animation-name: glowheader;
696 -moz-animation-name: glowheader;
697 animation-name: glowheader;
698 -webkit-animation-duration: 0.7s;
699 -moz-animation-duration: 0.7s;
700 animation-duration: 0.7s;
701 -webkit-animation-timing-function: ease-out;
702 -moz-animation-timing-function: ease-out;
703 animation-timing-function: ease-out; }
704
705.design ol h4 {
706 margin-bottom:0;
707}
708.design ol {
709 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700710 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700711 font-size: 14px;
712 line-height: 20px;
713 list-style-type: none;
714 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700715 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700716 content: counter(item) ". ";
717 counter-increment: item;
718 position: absolute;
719 left: -20px;
720 top: 0; }
721 .design ol li.value-1:before {
722 content: "1. "; }
723 .design ol li.value-2:before {
724 content: "2. "; }
725 .design ol li.value-3:before {
726 content: "3. "; }
727 .design ol li.value-4:before {
728 content: "4. "; }
729 .design ol li.value-5:before {
730 content: "5. "; }
731 .design ol li.value-6:before {
732 content: "6. "; }
733 .design ol li.value-7:before {
734 content: "7. "; }
735 .design ol li.value-8:before {
736 content: "8. "; }
737 .design ol li.value-9:before {
738 content: "9. "; }
739 .design ol li.value-10:before {
740 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700741.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700742 list-style-position: inside;
743 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700744 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700745 display: inline;
746 left: -20px;
747 float: left;
748 width: 17px;
749 color: #33b5e5;
750 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700751.design .with-callouts ul>li {
752 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700753
754/* special list items */
755li.no-bullet {
756 list-style-type: none !important; }
757li.no-bullet *{
758 margin:0; }
759
760.design li.with-icon {
761 position: relative;
762 margin-left: 20px;
763 min-height: 30px; }
764 .design li.with-icon p {
765 margin-left: 0 !important; }
766 .design li.with-icon:before {
767 position: absolute;
768 left: -40px;
769 top: 0;
770 content: '';
771 width: 30px;
772 height: 30px; }
773 .design li.with-icon.tablet:before {
774 background-image: url(../images/styles/ico_phone_tablet.png); }
775 .design li.with-icon.web:before {
776 background-image: url(../images/styles/ico_web.png); }
777 .design li.with-icon.action:before {
778 background-image: url(../images/styles/ico_action.png); }
779 .design li.with-icon.use:before {
780 background-image: url(../images/styles/ico_use.png); }
781
782/* figures and callouts */
783.figure {
784 position: relative; }
785 .figure.pad-below {
786 margin-bottom: 20px; }
787 .figure .figure-callout {
788 position: absolute;
789 color: #fff;
790 font-weight: 500;
791 font-size: 16px;
792 line-height: 23px;
793 text-align: center;
794 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
795 padding-right: 2px;
796 width: 30px;
797 height: 29px;
798 z-index: 1000; }
799 .figure .figure-callout.top {
800 top: -9px; }
801 .figure .figure-callout.right {
802 right: -5px; }
803
804.figure-caption {
805 margin: 0 10px 20px 0;
806 font-size: 14px;
807 line-height: 20px;
808 font-style: italic; }
809
810/* rows of figures */
811.figure-row {
812 font-size: 0;
813 line-height: 0;
814 /* to prevent space between figures */ }
815 .figure-row .figure {
816 display: inline-block;
817 vertical-align: top; }
818 .figure-row .figure + .figure {
819 margin-left: 10px;
820 /* reintroduce space between figures */ }
821
822/* video containers */
823.framed-galaxynexus-land-span-13 {
824 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
825scroll top left;
826 padding: 42px 122px 62px 126px;
827 overflow: hidden; }
828 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
829.framed-galaxynexus-land-span-13 img {
830 width: 512px;
831 height: 286px; }
832
Robert Lyd78354d2012-11-01 17:09:52 -0700833
834.framed-galaxynexus-land-span-8{
835 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
836scroll top left;
837 padding: 26px 68px 38px 72px;
838 overflow: hidden; }
839 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
840.framed-galaxynexus-land-span-8 img {
841 width: 320px;
842 height: 180px; }
843
Scott Maine4d8f1b2012-06-21 18:03:05 -0700844.framed-galaxynexus-port-span-9 {
845 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
846scroll top left;
847 padding: 95px 122px 107px 124px;
848 overflow: hidden; }
849 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
850.framed-galaxynexus-port-span-9 img {
851 width: 274px;
852 height: 488px; }
853
854.framed-galaxynexus-port-span-5 {
855 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
856scroll top left;
857 padding: 75px 31px 76px 33px;
858 overflow: hidden; }
859 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
860.framed-galaxynexus-port-span-5 img {
861 width: 216px;
862 height: 384px; }
863
Scott Main27403b82013-07-10 16:36:05 -0700864.framed-nexus4-port-216 {
865 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
866scroll top left;
867 background-size:240px 465px;
868 padding: 52px 12px 52px 12px;
869 overflow: hidden; }
870 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
871 .framed-nexus4-port-216 img {
872 width: 216px;
873 height: 360px; }
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700874
875.framed-nexus5-port-span-5 {
876 background: transparent url(../images/styles/device_nexus5_blank_port_span5.png) no-repeat
877 scroll top left;
878 padding: 52px 33px 69px 31px;
879 overflow: hidden;
880}
Scott Main27403b82013-07-10 16:36:05 -0700881
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700882.framed-nexus5-port-span-5,
883.framed-nexus5-port-span-5 video,
884.framed-nexus5-port-span-5 img {
885 width: 216px;
886 height: 384px;
887}
Scott Main27403b82013-07-10 16:36:05 -0700888
Dirk Doughertyca1858a2013-10-29 16:25:00 -0700889.framed-nexus5-land-span-13 {
890 background: transparent url(../images/styles/device_nexus5_blank_land_span13.png) no-repeat scroll top left;
891 padding: 36px 119px 54px 108px;
892 overflow: hidden;
893}
894
895.framed-nexus5-land-span-13,
896.framed-nexus5-land-span-13 video,
897.framed-nexus5-land-span-13 img {
898 width: 533px;
899 height: 300px;
900}
901
902.framed-nexus5-port-span-5,
903.framed-nexus5-port-span-5 video,
904.framed-nexus5-port-span-5 img {
905 width: 216px;
906 height: 384px;
907}
908
Scott Maine4d8f1b2012-06-21 18:03:05 -0700909/* landing page disclosures */
910.landing-page-link {
911 text-decoration: none;
912 font-weight: 500;
913 color: #333333; }
914 .landing-page-link:after {
915 content: '';
916 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
917 width: 10px;
918 height: 10px;
919 display: inline-block;
920 margin-left: 5px; }
921
922/* tooltips */
923.tooltip-box {
924 position: absolute;
925 background-color: rgba(0, 0, 0, 0.9);
926 border-radius: 2px;
927 font-size: 14px;
928 line-height: 20px;
929 color: #fff;
930 padding: 6px 10px;
931 max-width: 250px;
932 z-index: 10000; }
933 .tooltip-box.below:after {
934 position: absolute;
935 content: '';
936 line-height: 0;
937 display: block;
938 top: -10px;
939 left: 5px;
940 border: 5px solid transparent;
941 border-bottom-color: rgba(0, 0, 0, 0.9); }
942
943/* video note */
944.video-instructions {
945 margin-top: 10px;
946 margin-bottom: 10px; }
947 .video-instructions:before {
948 content: '';
949 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
950 display: inline-block;
951 width: 12px;
952 height: 12px;
953 margin-right: 8px; }
954 .video-instructions:after {
955 content: 'Click device screen to replay movie.'; }
956
957/* download buttons */
958.download-button {
959 display: block;
960 margin-bottom: 5px;
961 text-decoration: none;
962 background-color: #33b5e5;
963 color: #fff !important;
964 font-weight: 500;
965 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
966 padding: 6px 12px;
967 border-radius: 2px; }
968 .download-button:hover, .download-button:focus {
969 background-color: #0099cc;
970 color: #fff !important; }
971 .download-button:active {
972 background-color: #006699; }
973
974/* UI tables and other things found in Writing style and Settings pattern */
975.ui-table {
976 width: 100%;
977 background-color: #282828;
978 color: #fff;
979 border-radius: 2px;
980 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
981 border-collapse: separate; }
982 .ui-table th,
983 .ui-table td {
984 padding: 5px 10px;
Scott Main98a2a712013-07-17 13:15:04 -0700985 background-color: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700986 border:0;}
987 .ui-table thead th {
988 font-weight: bold; }
989 .ui-table tfoot td {
990 border-top: 1px solid #494949;
991 border-right: 1px solid #494949;
992 text-align: center; }
993 .ui-table tfoot td:last-child {
994 border-right: 0; }
995
996.layout-with-list-item-margins {
997 margin-left: 30px !important; }
998
999.emulate-content-left-padding {
1000 margin-left: 10px; }
1001
1002.do-dont-label {
1003 margin-bottom: 10px;
1004 padding-left: 20px;
1005 background: transparent none no-repeat scroll 0px 3px; }
1006 .do-dont-label.bad {
1007 background-image: url(../images/styles/ico_wrong.png); }
1008 .do-dont-label.good {
1009 background-image: url(../images/styles/ico_good.png); }
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07001010
Scott Maine4d8f1b2012-06-21 18:03:05 -07001011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029/***** PREVIOUSLY style.css ******************/
1030
1031
1032
1033
1034
1035@media screen, projection, print {
1036[dir='rtl'] {
1037 direction: rtl;
1038}
1039html {
1040 line-height: 20px;
1041}
1042pre, table, input, textarea, code {
1043 font-size: 1em;
1044}
1045address, abbr, cite {
1046 font-style: normal;
1047}
1048[dir='rtl'] th {
1049 text-align: right;
1050}
1051html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1052html[lang^=zh] blockquote, html[lang^=zh] q {
1053 font-style: normal;
1054}
1055q {
1056 font-style: italic;
1057}
1058fieldset, iframe, img {
1059 border: 0;
1060}
Scott Main98a2a712013-07-17 13:15:04 -07001061img {
Scott Mainb7f96372013-02-07 16:56:43 -08001062 -ms-interpolation-mode: bicubic;
1063 vertical-align: middle;
1064 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001065}
1066q {
1067 quotes: none;
1068}
1069sup, sub {
1070 font-size: 11px;
1071 line-height: 0;
1072}
1073}
1074
1075@media screen, projection {
1076
1077table, fieldset {
1078 margin: 0;
1079}
1080h1 {
1081 color:#333;
1082 font-size: 22px;
1083 margin: 20px 0 20px;
1084 padding:0 0 10px;
1085}
1086h1, h2 {
1087 line-height: 32px;
1088}
1089h1.short {
1090 margin-right:320px;
1091}
1092h1.short {
1093 margin-right:320px;
1094}
1095h1.super {
Scott Main98a2a712013-07-17 13:15:04 -07001096 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001097}
1098h2 {
1099 color:#333;
1100 font-size: 20px;
1101 margin: 20px 0 20px;
1102 padding:0;
1103}
1104h3 {
1105 color:#333;
1106 font-size: 18px;
1107}
1108h3, h4 {
1109 color:#333;
1110 line-height: 20px;
1111 margin: 10px 0;
1112}
1113h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001114 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001115}
1116h5 {
Scott Main98a2a712013-07-17 13:15:04 -07001117 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001118}
1119h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001120 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001121}
1122h6 {
Scott Main98a2a712013-07-17 13:15:04 -07001123 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001124}
1125hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001126 height: 1px;
1127 margin: 5px 0 20px;
1128 border: 0;
1129 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001130}
1131p, pre, table, form {
1132 margin: 0 0 15px;
1133}
1134small {
Scott Mainb7f96372013-02-07 16:56:43 -08001135 font-size: 11.5px;
1136 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001137}
1138ul, ol {
1139 margin: 0 0 15px 18px;
1140 padding: 0;
1141}
1142[dir='rtl'] ul, [dir='rtl'] ol {
1143 margin: 10px 30px 10px 10px;
1144}
1145ul ul, ul ol, ol ul, ol ol {
1146 margin-bottom: 0;
1147 margin-top: 0;
1148}
1149li {
Scott Main52948fc2012-09-18 11:27:59 -07001150 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001151}
1152dd {
1153 margin:0 0 10px 30px;
1154}
Scott Maina07be8e2013-03-06 12:12:21 -08001155dd p,
1156dd pre,
1157dd ul,
1158dd ol,
1159dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001160 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001161}
Scott Maindb3678b2012-10-23 14:13:41 -07001162li p,
1163li pre,
1164li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001165li ol,
1166li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001167 margin-top:5px;
1168 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001169}
Scott Main13cd8f12013-11-12 11:50:59 -08001170dl dd dl:first-child {
1171 margin-top:0;
1172}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001173pre strong, pre b, a strong, a b, a code {
1174 color: inherit;
1175}
1176pre, code {
1177 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001178 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001179}
1180code {
1181 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001182 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001183}
1184
1185legend {
1186 display: none;
1187}
1188a:link, a:visited {
1189 color: #258aaf;
1190 text-decoration: none;
1191}
1192a:focus, a:hover, a:active {
1193 color: #33B5E5;
1194 text-decoration: none;
1195}
1196strong, b {
1197 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001198 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001199}
1200table {
1201 border-collapse: collapse;
1202 border-spacing: 0;
1203 border:0;
1204 margin: .5em 1em 1em 0;
1205 width:100%; /* consistent table widths; within IE's quirks */
1206 background-color:#f7f7f7;
1207}
1208th, td {
1209 padding: 4px 12px;
1210 vertical-align: top;
1211 text-align: left;
1212}
1213td {
1214 background-color:inherit;
1215 border:solid 1px #DDD;
1216}
Scott Maineb410352013-01-14 19:03:40 -08001217td *:last-child {
1218 margin-bottom:0;
1219}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001220th {
1221 background-color: #999;
1222 color: #fff;
1223 border:solid 1px #DDD;
1224 font-weight: normal;
1225}
1226tr:first-of-type th:first-of-type:empty {
1227 visibility: hidden;
1228}
1229/* --------------------------------------------------------------------------
1230Footer
1231*/
1232.line {
1233 clear: both;
1234 background: #acbc00;
1235 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1236 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1237color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1238 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1239 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1240 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1241 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1242 height: 2px;
1243 margin-top: 150px;
1244 position: relative;
1245 z-index: 11;
1246}
1247#footer {
1248 font-size:11px;
1249 clear: both;
1250 color: #999;
1251 padding: 15px 0;
1252 margin-top:10px;
1253 width:auto;
1254}
1255#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001256 list-style: none;
1257 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001258}
1259#footer-local li {
1260 display: inline;
1261}
1262#footer-local li+li:before {
1263 content: '|';
1264 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001265 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001266}
1267#footer-global {
1268 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001269 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001270}
1271#footer-global {
1272 border-top: 1px solid #ebebeb;
1273 font-size: 11.5px;
1274 line-height: 1.8;
1275 list-style: none;
1276}
1277#footer-global ul {
1278 margin: 0;
1279}
1280#footer-global li {
1281 display: inline;
1282 font-weight: bold;
1283}
1284#footer-global li+li:before {
1285 content: '¬?';
1286 padding: 0 3px;
1287}
1288* html #footer-global li {
1289 margin: 0 13px 0 0;
1290}
1291* [dir='rtl'] #footer-global li {
1292 margin: 0 0 0 13px;
1293}
1294*+html #footer-global li {
1295 margin: 0 13px 0 0;
1296}
1297*+[dir='rtl'] #footer-global li {
1298 margin: 0 0 0 13px;
1299}
1300#footer-global li a {
1301 font-weight: normal;
1302}
1303.locales {
1304 margin: 10px 0 0 0px;
1305}
1306[dir='rtl'] .locales {
1307 background-position: right center;
1308 float: left;
1309 padding: 0 24px 0 0;
1310}
1311.locales form {
Scott Main98a2a712013-07-17 13:15:04 -07001312 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001313}
1314.locales select, .sites select {
1315 line-height: 3.08;
1316 margin: 0px 0;
1317 border: solid 1px #EBEBEB;
1318 -webkit-appearance: none;
1319 background: white url('../images/arrows-up-down.png') right center no-repeat;
1320 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001321 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001322 line-height: normal;
1323 padding: 5px;
1324 width: 230px;
1325}
1326}
1327
1328/* =============================================================================
1329 Print Only
1330 ========================================================================== */
1331@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001332 /* configure printed page */
1333 @page {
1334 margin: 0.75in 1in;
1335 widows: 4;
1336 orphans: 4;
1337 }
1338
1339 /* reset spacing metrics */
1340 html, body, .wrap {
1341 margin: 0 !important;
1342 padding: 0 !important;
1343 width: auto !important;
1344 }
1345
1346 /* leave enough space on the left for bullets */
1347 body {
1348 padding-left: 20px !important;
1349 }
1350 #doc-col {
1351 margin-left: 0;
1352 }
1353
1354 /* hide a bunch of non-content elements */
1355 #header, #footer, #nav-x, #side-nav,
1356 .training-nav-top, .training-nav-bottom,
1357 #doc-col .content-footer,
1358 .nav-x, .nav-y,
1359 .paging-links,
1360 a.totop {
1361 display: none !important;
1362 }
1363
1364 /* remove extra space above page titles */
1365 #doc-col .content-header {
1366 margin-top: 0;
1367 }
1368
1369 /* bump up spacing above subheadings */
1370 h2 {
1371 margin-top: 40px !important;
1372 }
1373
1374 /* print link URLs where possible and give links default text color */
1375 p a:after {
1376 content: " (" attr(href) ")";
1377 font-size: 80%;
1378 }
1379 p a {
1380 word-wrap: break-word;
1381 }
1382 a {
1383 color: inherit;
1384 }
1385
1386 /* syntax highlighting rules */
1387 .str { color: #060; }
1388 .kwd { color: #006; font-weight: bold; }
1389 .com { color: #600; font-style: italic; }
1390 .typ { color: #404; font-weight: bold; }
1391 .lit { color: #044; }
1392 .pun { color: #440; }
1393 .pln { color: #000; }
1394 .tag { color: #006; font-weight: bold; }
1395 .atn { color: #404; }
1396 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001397}
1398
1399/* =============================================================================
1400 Columns
1401 ========================================================================== */
1402
1403@media screen, projection, print {
1404.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001405 padding: 2.5em 0;
1406 border-top: solid 1px #ddd;
1407 border-bottom: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07001408 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001409}
1410.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001411 margin: 0 auto;
1412 width: 940px;
1413 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001414}
1415.cols {
1416 height: 1%;
1417 margin: 0 -1.533742331288343558282%;
1418 width: 103.06748466257669%}
1419*+html .cols {
1420 margin-bottom: 20px;
1421}
1422.cols:after {
1423 clear: both;
1424 content: ' ';
1425 display: block;
1426 height: 0;
1427 visibility: hidden;
1428}
1429.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1430.col-13, .col-14, .col-15, .col-16 {
1431 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001432 float: left;
1433 margin-left: 10px;
1434 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001435}
1436/*
1437* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1438.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1439 margin: 0;
1440 padding: 0 1.4% 20px;
1441}
1442[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1443[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1444[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1445 float: right;
1446}
1447*/
1448.col-1 { width: 40px }
1449.col-2 { width: 100px }
1450.col-3 { width: 160px }
1451.col-4 { width: 220px }
1452.col-5 { width: 280px }
1453.col-6 { width: 340px }
1454.col-7 { width: 400px }
1455.col-8 { width: 460px }
1456.col-9 { width: 520px }
1457.col-10 { width: 580px }
1458.col-11 { width: 640px }
1459.col-12 { width: 700px }
1460.col-13 { width: 760px }
1461.col-14 { width: 820px }
1462.col-15 { width: 880px }
1463.col-16 { width: 940px }
1464}
1465
1466.col-right {
1467 margin-right:0px;
1468}
1469
1470@media screen and (max-width:772px) {
1471.col-5, .col-6, .col-7 {
1472 clear: both;
1473 width: 97.0238096%}
1474}
1475
1476/* =============================================================================
1477 Layout
1478 ========================================================================== */
1479@media screen, projection, print {
1480
1481/* --------------------------------------------------------------------------
1482Header, Login, Nav-X, Search
1483*/
1484#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001485 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001486}
1487#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001488 content: "";
1489 display: table;
1490 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001491}
1492.logo, .nav-x {
1493 float: left;
1494}
1495.nav-x {
1496 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001497 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001498}
1499.nav-x a {
1500 color: #333;
1501 font-size: 16px;
1502}
1503.design a.selected {
1504 color: #33b5e5;
1505}
1506.develop a.selected {
1507 color: #F80;
1508}
1509.distribute a.selected {
1510 color: #9C0;
1511}
1512
1513
1514
1515.nav-x li {
1516 display: inline;
1517 margin-right: 45px;
1518}
1519.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001520 float: right;
1521 position: relative;
1522 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001523}
1524.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001525 position: absolute;
1526 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001527}
1528.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001529 width: 220px;
1530 height: 1px;
1531 top: 24px;
1532 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001533}
Scott Main98a2a712013-07-17 13:15:04 -07001534.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001535 height: 5px;
1536 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001537}
Scott Mainb7f96372013-02-07 16:56:43 -08001538.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001539.search .right { top: 19px; right: 0 }
1540.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001541 float: left;
1542 margin-top: 2px;
1543 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001544}
1545.search .close,
1546#player-frame .close {
1547 position: absolute;
1548 right: 8px;
1549 bottom: 4px;
1550 width: 16px;
1551 height: 16px;
1552 margin: 0;
1553 text-indent: -1000em;
1554 background: url(../images/close.png) no-repeat 0 0;
1555 z-index:9999;
1556}
1557.search .close:hover, .search .close:focus,
1558#player-frame .close:hover, #player-frame .close:focus {
1559 background-position: -16px 0;
1560 cursor:pointer;
1561}
1562#player-frame .close {
1563 top: 6px;
1564}
1565.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001566 color: #999;
1567 font-size: 1em;
1568 width: inherit;
1569 border: none;
1570 margin: 0;
1571 padding:0 0 0 6px;
1572 z-index: 1500;
1573 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001574}
1575.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001576 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001577}
1578.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001579 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001580}
1581.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001582 color: #222;
1583 font-weight: bold;
1584 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001585}
1586/* Search Dropdown */
1587.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001588 padding: 15px;
1589 width: 192px;
1590 border: solid 1px #c5c5c5;
1591 background: #fff;
1592 position: absolute;
1593 top: 35px;
1594 left: 0;
1595 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1596 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1597 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001598}
1599.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001600 list-style-type: none;
1601 margin: 0;
1602 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001603}
1604.search-dropdown ul li {
Scott Main98a2a712013-07-17 13:15:04 -07001605 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001606}
1607.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001608 float: left;
1609 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001610}
1611.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001612 color: #222;
1613 margin: 0;
1614 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001615}
1616.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001617 color: #999;
1618 font-size: 11.5px;
1619 line-height: normal;
1620 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001621}
1622.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001623 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001624}
1625/* --------------------------------------------------------------------------
1626Buttons
1627*/
1628.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001629 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001630 -webkit-border-radius: 2px;
1631 -moz-border-radius: 2px;
1632 border-radius: 2px;
1633 cursor: pointer;
1634}
1635.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001636 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001637 background-color: #09c;
1638 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1639 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1640 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1641 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1642 background-image: -o-linear-gradient(top, #2faddb, #09c);
1643 background-image: linear-gradient(top, #2faddb, #09c);
1644 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1645 border: 1px solid #3990ab;
1646 color: #fff;
1647}
1648.button-secondary, a.button-secondary {
1649 background-color: #f3f3f3;
1650 border: 1px solid #dcdcdc;
1651 color: #444;
1652}
1653a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001654 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001655 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001656 min-width: 54px;
1657 outline: 0;
1658 padding: 8px 15px;
1659 text-align: center;
1660}
1661.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001662 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001663 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001664 min-width: 54px;
1665 outline: 0;
1666 padding: 0 15px;
1667 text-align: center;
1668}
1669.button:hover, a.button:hover {
1670 border-color: #09c;
1671 background-color: #4cadcb;
1672 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1673 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1674 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1675 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1676 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1677 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1678 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1679EndColorStr='#4cadcb',GradientType=0);
1680 color: #fff !important;
1681}
1682.button:active, a.button:active {
1683 background-color: #1e799a;
1684 background-image: none;
1685 border-color: #30b7e6;
1686}
Scott Maindb3678b2012-10-23 14:13:41 -07001687a.button.big.subtitle {
1688 line-height:18px;
1689}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001690.button-secondary:hover, a.button-secondary:hover {
1691 border-color: #dbdbdb;
1692 background-color: #f3f3f3;
1693 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1694 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1695 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1696 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1697 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1698 background-image: linear-gradient(top, #f9f9f9, #ececec);
1699 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1700EndColorStr='#ececec');
1701 color: #33B5E5 !important;
1702}
1703.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001704 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001705 background: #ebebeb; /* Old browsers */
1706 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1707 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001708url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1709Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1710eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1711CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1712eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1713YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1714CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1715CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1716CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1717CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1718R3JhZGllbnQ+
1719CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1720Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001721 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001722#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001723 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001724color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1725/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001726 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700172790%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001728 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001729100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001730 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001731100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001732 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001733100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001734 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001735endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001736 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1737 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Main98a2a712013-07-17 13:15:04 -07001738 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Mainb7f96372013-02-07 16:56:43 -08001739 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001740}
1741.button.big {
1742 font-size:20px;
1743 display:inline-block;
1744}
Scott Maindb3678b2012-10-23 14:13:41 -07001745.button.big span.small {
1746 font-size:14px;
1747}
1748.button-caption {
1749 margin-top:10px;
1750 font-size:12px;
1751 font-style:italic;
1752}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001753
1754.button.disabled,
1755.button.disabled:hover,
1756.button.disabled:active {
1757 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001758 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001759 border-color:#999;
1760 cursor:default;
1761}
1762
1763.training-nav-top a.button-secondary,
1764.training-nav-bottom a.button-secondary {
1765 display:block;
1766 float:left;
1767 margin:0;
1768 width:130px;
1769 text-transform:uppercase;
1770 font-weight:bold;
Scott Main98a2a712013-07-17 13:15:04 -07001771
Scott Maine4d8f1b2012-06-21 18:03:05 -07001772 background-color: #f3f3f3;
1773 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1774 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1775 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1776 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1777 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1778 background-image: linear-gradient(top, #f9f9f9, #ececec);
1779 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1780EndColorStr='#ececec');
1781 color: #33B5E5;
1782}
1783
1784.training-nav-top a.button-secondary:hover,
1785.training-nav-bottom a.button-secondary:hover {
1786 background-color: #09c;
1787 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1788 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1789 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1790 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1791 background-image: -o-linear-gradient(top, #2faddb, #09c);
1792 background-image: linear-gradient(top, #2faddb, #09c);
1793 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1794 border: 1px solid #3990ab;
1795 color: #fff !important;
1796}
1797
1798.training-nav-top a.button-secondary.last,
1799.training-nav-bottom a.button-secondary.last {
1800 border-left:0;
1801}
1802
1803.training-nav-top a.button-secondary.double-size,
1804.training-nav-bottom a.button-secondary.double-size {
1805 width:291px;
1806}
1807
1808.training-nav-top,
1809.training-nav-bottom {
1810 float:right;
1811 margin:0 0 0 20px;
1812}
1813
1814.training-nav-bottom {
1815 padding:0 0 20px;
1816}
1817
1818#tb-wrapper,
1819#qv-wrapper {
1820 float:right;
1821 clear:right;
Scott Maincef39242013-06-19 20:25:34 -07001822 margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maine4d8f1b2012-06-21 18:03:05 -07001823 padding:0 0 20px;
1824}
1825
Scott Maincef39242013-06-19 20:25:34 -07001826#tb-wrapper {
1827 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1828}
1829
Scott Maine4d8f1b2012-06-21 18:03:05 -07001830#tb,
1831#qv {
1832 font-size:13px;
1833 line-height:18px;
1834 width:238px;
1835 border:1px solid #ccc;
1836 float:right;
1837}
1838
1839#tb {
1840 width:278px;
1841}
1842
1843#tb h2,
1844#qv h2 {
1845 margin:10px 15px;
1846 padding:0;
1847 text-transform:uppercase;
1848 border-bottom:1px solid gainsboro;
1849}
1850
1851#tb *,
1852#qv * {
1853 font-size:inherit;
1854}
1855
Scott Main8c0f5b32013-07-08 15:12:02 -07001856#tb .download-box,
1857#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001858 padding:0 0 0 15px;
1859}
1860
Scott Main8c0f5b32013-07-08 15:12:02 -07001861#tb .download-box .filename,
1862#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001863 font-size:11px;
1864 margin:4px 4px 10px;
1865 color:#666;
1866}
1867
1868
1869/* Dev guide quicknav */
1870
1871.sidebox-wrapper {
1872 float:right;
1873 clear:right;
1874 margin:0 0 0 20px;
1875 padding:0 0 20px;
1876}
1877
1878.sidebox {
1879 width:226px;
1880 font-size:13px;
1881 line-height:18px;
1882 border-left:4px solid #99CC00;
1883 float:right;
1884 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001885 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001886}
1887
1888.sidebox h2,
1889.sidebox h3,
1890.sidebox h4,
1891.sidebox h5 {
1892 font-weight:bold;
1893 margin:0 0 10px;
1894}
1895
1896.sidebox * {
1897 font-size:inherit;
1898}
1899
Scott Mainafc4db32013-11-20 16:53:12 -08001900.sidebox > *:last-child {
1901 margin-bottom:0;
1902}
1903
Scott Maine4d8f1b2012-06-21 18:03:05 -07001904#tb ol,
1905#tb ul,
1906#qv ul {
1907 margin:0 15px 10px 35px;
1908}
1909
1910#qv ol {
1911 list-style:none;
1912 margin:0 15px 15px;
1913 font-size:inherit;
1914 line-height:inherit;
1915}
1916
1917#tb ol ol,
1918#tb ul ul,
1919#qv ol ol,
1920#qv ul ul,
1921.sidebox ol ol,
1922.sidebox ul ul {
1923 margin-bottom:0;
1924}
1925
1926#qv ol ol {
1927 margin:3px 0 3px 15px;
1928}
1929
1930.sidebox p,
1931#qv p,
1932#tb p {
1933 margin: 0 0 10px;
1934}
1935
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001936/* related resources blocks in checklists */
1937
1938.rel-resources {
1939 margin:10px 0px;
1940 border:1px solid #ccc;
1941 background-color:rgba(0, 0, 0, 0.027451);
1942 border:1px solid #ccc;
1943 font-size:13px;
1944 color:#6f6f6f;
1945}
1946
1947.rel-resources ul {
1948padding: .5em 1em 0 1em;
1949}
1950
1951.rel-resources a {
1952font-weight:500;
1953}
1954
1955.rel-resources h3 {
1956 margin:4px 15px 0px 15px;
1957 font-size:13px;
1958 font-weight:600;
1959 text-transform:uppercase;
1960}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001961
1962/* --------------------------------------------------------------------------
1963Form
1964*/
1965.article form {
1966 margin: 0 0 20px;
1967}
1968.article form .form-required {
1969 color: #dd4b39;
1970}
1971.article form fieldset {
1972 margin: 0 0 20px;
1973 padding: 0;
1974}
1975.article form legend {
1976 display: block;
1977 line-height: 1.5;
1978 margin: 0;
1979 padding: 0;
1980}
1981/*
1982.article form ol, .article form ul {
1983 margin: 0 0 0 1em;
1984 padding: 0 0 0 1em;
1985}
1986[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1987 margin: 0 1em 0 0;
1988 padding: 0 1em 0 0;
1989}
1990.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1991ul ul {
1992 list-style: none;
1993 margin: 0;
1994 padding: 0;
1995}
1996.article form li {
1997 margin: 0 0 20px;
1998}
1999.article form li li {
2000 margin: 0 0 5px;
2001}
2002*/
2003.article form label {
2004 display: block;
2005 margin: 0 0 5px;
2006 padding: 0;
2007}
2008.article form input[type='text'], .article form select, .article form textarea, .article form
2009.checkbox-group, .article form .radio-group {
2010 margin-bottom: 15px;
2011}
2012.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08002013 width: 13px;
2014 height: 13px;
2015 background: #fff;
2016 border: solid 1px #c6c6c6;
2017 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002018}
2019.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08002020 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07002021}
2022.article form select {
2023 border: solid 1px #ebebeb;
2024 border-top-color: #ddd;
2025 -webkit-appearance: none;
2026 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2027 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07002028 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002029 line-height: normal;
2030 padding: 5px;
2031 width: 130px;
2032}
Scott Main98a2a712013-07-17 13:15:04 -07002033
Scott Maine4d8f1b2012-06-21 18:03:05 -07002034.article form .browse .browse-msg {
Scott Main98a2a712013-07-17 13:15:04 -07002035 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002036}
2037.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08002038 height: auto;
2039 line-height: 25px;
2040 font-size: 11px;
2041 padding: 0 8px;
2042 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002043}
2044.article form input[type='text'], .article form textarea {
2045 border: 1px solid #ebebeb;
2046 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07002047 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002048 line-height: normal;
2049 padding: 6px 10px;
Scott Main98a2a712013-07-17 13:15:04 -07002050 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002051}
2052.article form textarea {
2053 height: 150px;
2054}
2055.article form input[type='text']:focus, .article form textarea:focus {
2056 border-color: #33B5E5;
2057 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2058 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2059 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2060 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2061 outline: 0;
2062}
2063.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2064 color: #999;
2065}
2066.article form input[type='text'][disabled], .article form textarea[disabled] {
2067 background-color: #ebebeb;
2068}
2069form .form-error input[type='text'], form .form-error textarea {
2070 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002071 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002072}
2073.aside {
2074 -moz-border-radius: 2px;
2075 -webkit-border-radius: 2px;
2076 border-radius: 2px;
2077 margin: 10px 0;
2078 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002079 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002080 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002081 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002082}
2083/*
2084.aside, .notification, .promo {
2085 -moz-border-radius: 2px;
2086 -webkit-border-radius: 2px;
2087 border-radius: 2px;
2088 margin: 10px 0;
2089 padding: 10px;
2090 position: relative;
2091}
2092.aside>:first-child, .notification>:first-child, .promo>:first-child {
2093 margin-top: 0;
2094}
2095.aside>:last-child, .notification>:last-child, .promo>:last-child {
2096 margin-bottom: 0;
2097}
2098.aside {
2099 background: #f9f9f9;
2100}
2101.notification {
2102 background: #fffbe4;
2103 border-color: #f8f6e6;
2104}
2105.promo {
2106 background: #f6f9ff;
2107 border-color: #eff2f9;
2108}
2109*/
Scott Maindb3678b2012-10-23 14:13:41 -07002110
2111/* SDK TOS styles */
2112
2113div.sdk-terms {
2114 white-space: pre-wrap;
2115 word-wrap: break-word;
2116 font-family: inherit;
2117 font-size: inherit;
2118 padding: 10px;
2119 height: 370px;
2120 width: 738px;
2121 border: 1px solid #444;
2122 background: transparent;
2123 overflow:auto;
2124 margin:0 0 10px;
2125}
2126
2127div.sdk-terms.fullsize {
2128 padding: 0;
2129 height: auto;
2130 width: auto;
2131 border:none;
2132}
2133
2134div.sdk-terms h3,
2135div.sdk-terms h2 {
2136 margin:0;
2137}
2138
2139div#sdk-terms-form {
2140 padding:0 0 0 10px;
2141}
2142
Scott Main11ac05b2012-11-15 14:57:44 -08002143div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002144 display:inline;
2145 margin:4px 4px 4px 0;
2146}
2147
2148
Scott Maine4d8f1b2012-06-21 18:03:05 -07002149/* --------------------------------------------------------------------------
2150Code Style
2151*/
2152pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002153 margin:0 0 1em 0;
2154 padding: 1em;
2155 overflow: auto;
2156 border: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07002157 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002158}
Scott Main70557ee2013-10-30 14:47:40 -07002159.str { color: #800; } /* Code string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002160.kwd { color: #008; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07002161.typ { color: #606; }
2162.lit { color: #066; }
2163.pun { color: #660; }
2164.pln { color: #000; }
2165.tag { color: #008; }
2166.atn { color: #828; }
Scott Main70557ee2013-10-30 14:47:40 -07002167.atv { color: #800; } /* XML string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002168.dec { color: #606; }
2169
2170/* --------------------------------------------------------------------------
2171Three-Pane
2172*/
2173/* Package Nav & Classes Nav */
2174.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002175 position: relative;
2176 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002177}
2178#packages-nav .js-pane,
2179#classes-nav .js-pane {
2180 overflow:visible;
2181}
2182#packages-nav {
2183 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002184 max-height: inherit;
2185 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002186 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002187}
2188#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002189 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002190 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002191}
2192#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002193 list-style-type: none;
2194 margin: 10px 0 20px 0;
Scott Main98a2a712013-07-17 13:15:04 -07002195 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002196}
2197#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002198 font-weight: bold;
2199 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002200}
2201#packages-nav li,
2202#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002203 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002204}
2205#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2206#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002207 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002208}
2209#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2210#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2211#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002212 color: #222;
Scott Main98a2a712013-07-17 13:15:04 -07002213 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002214}
2215#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2216#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002217 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002218}
2219#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2220a:visited,
2221#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2222a:visited,
2223#nav-tree li div.selected {
2224 font-weight: 500;
2225 color: #0099cc;
2226 background-color:#fff; }
2227 #packages-nav li.selected ul li a,
2228 #classes-nav li.selected ul li a {
2229 /* don't highlight child items */
2230 color: #555555; }
2231#nav-tree li div.selected a {
2232 font-weight: 500;
2233 color: #0099cc;
2234}
2235#nav-swap {
2236 height:30px;
2237 border-top:1px solid #ccc;
2238}
2239#nav-swap a {
2240 display:inline-block;
2241 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002242 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002243 font-size: 12px;
2244 padding: 5px 0 5px 5px;
2245}
2246
2247#nav-swap .fullscreen {
2248 float: right;
2249 width: 24px;
2250 height: 24px;
2251 text-indent: -1000em;
2252 padding:0;
2253 margin:3px 5px 0;
2254 background: url(../images/fullscreen.png) no-repeat -24px 0;
2255}
2256#nav-swap .fullscreen.disabled {
2257 background-position: 0 0;
2258}
Scott Main98a2a712013-07-17 13:15:04 -07002259#nav-swap .fullscreen:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002260#nav-swap .fullscreen:focus {
2261 cursor:pointer;
2262}
2263
2264
2265/* nav tree */
Scott Main42d6e582013-11-20 19:30:41 -08002266#side-nav, #swapper,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002267#nav-tree, #tree-list {
2268 overflow:hidden;
2269 margin-left:0;
2270}
2271
Scott Main42d6e582013-11-20 19:30:41 -08002272#devdoc-nav {
2273 overflow:visible !important; /* To keep the "to top" button visible */
2274}
2275
Scott Maine4d8f1b2012-06-21 18:03:05 -07002276#nav-tree ul {
2277 list-style:none;
2278 padding:0;
2279 margin:10px 0;
2280}
2281
2282#nav-tree ul li div {
2283 padding:0 0 0 4px;
2284}
2285
2286#side-nav #nav-tree ul li a,
2287#side-nav #nav-tree ul li span.no-children {
2288 padding: 0;
2289 margin: 0;
2290}
2291
2292#nav-tree .plus {
2293 margin: 0 3px 0 0;
2294}
2295
2296#nav-tree ul ul {
2297 list-style: none;
2298 margin: 0;
2299 padding: 0 0 0 0;
2300}
2301
2302#nav-tree ul li {
2303 margin: 0;
2304 padding: 0 0 0 0;
2305 white-space: nowrap;
2306}
2307
2308#nav-tree .children_ul {
2309 padding:0;
2310 margin:0;
2311}
2312#nav-tree .children_ul li div {
2313 padding:0 0 0 10px;
2314}
2315#nav-tree .children_ul .children_ul li div {
2316 padding:0 0 0 20px;
2317}
2318
2319#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002320 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002321 text-decoration: none;
2322}
2323
2324#nav-tree span.label {
2325 width: 100%;
2326}
2327
2328#nav-tree {
2329 overflow-x: auto;
2330 overflow-y: scroll;
2331 outline:0;
2332}
2333
2334
2335/* Content */
2336#doc-col {
2337 margin-right:0;
2338}
2339#doc-content-container {
Scott Main98a2a712013-07-17 13:15:04 -07002340 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002341}
2342#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002343 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002344}
2345#doc-header {
Scott Main98a2a712013-07-17 13:15:04 -07002346 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002347}
2348#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002349 line-height: 0;
2350 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002351}
2352#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002353 float: right;
2354 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002355}
2356#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002357 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002358}
2359#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002360 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002361}
2362#api-nav-header {
2363 height:19px; /* plus 16px padding = 35; same as #nav li */
2364 font-size:14px;
2365 padding: 8px 0;
2366 margin: 0;
2367 border-bottom: 1px solid #CCC;
2368 background:#e9e9e9;
2369 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2370
2371}
2372#api-nav-title {
2373 padding:0 5px;
2374 white-space:nowrap;
2375}
2376
2377#api-level-toggle {
2378 float:right;
2379 padding:0 5px;
2380}
2381
2382#api-level-toggle label {
2383 margin:0;
2384 vertical-align:top;
2385 line-height: 19px;
2386 font-size:13px;
2387 height: 19px;
2388}
2389
2390#api-level-toggle .select-wrapper {
2391 width: 35px;
2392 display: inline-block;
2393 overflow: hidden;
2394}
2395#api-level-toggle select {
2396 border: 0;
2397 appearance:none;
2398 -moz-appearance:none;
2399 -webkit-appearance: none;
2400 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002401 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002402 height: 19px;
2403 line-height: 19px;
2404 padding: 0;
2405 margin:1px 0 0 0;
2406 width:150%;
2407 font-size:13px;
2408 vertical-align:top;
2409 outline:0;
2410}
2411
2412
2413/* Toggle for revision notes and stuff */
2414div.toggle-content.closed .toggle-content-toggleme {
2415 display:none;
2416}
2417
2418#jd-content img.toggle-content-img {
2419 margin:0 5px 5px 0;
2420}
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002421
Scott Main220c3442012-07-16 15:40:17 -07002422div.toggle-content-toggleme {
2423 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002424}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002425
2426
2427/* API LEVEL FILTERED MEMBERS */
2428
2429.absent,
2430.absent a:link,
2431.absent a:visited,
2432.absent a:hover,
2433.absent * {
2434 color:#bbb !important;
2435 cursor:default !important;
2436 text-decoration:none !important;
2437}
2438#devdoc-nav li.absent.selected,
2439#devdoc-nav li.absent.selected *,
2440#devdoc-nav div.label.absent.selected,
2441#devdoc-nav div.label.absent.selected * {
2442 background-color:#eaeaea !important;
2443}
2444.absent h4.jd-details-title,
2445.absent h4.jd-details-title * {
2446 background-color:#f6f6f6 !important;
2447}
2448.absent img {
2449 opacity: .3;
2450 filter: alpha(opacity=30);
2451 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2452}
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462/* JQUERY RESIZABLE STYLES */
2463.ui-resizable { position: relative; }
2464.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2465.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2466/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2467body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2468.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2469border-bottom: solid 1px #ededed;
2470 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2471/*
Scott Main98a2a712013-07-17 13:15:04 -07002472.ui-resizable-e {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002473cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24741px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2475*/
2476
2477/* --------------------------------------------------------------------------
2478Lightbox
2479*/
Scott Main98a2a712013-07-17 13:15:04 -07002480.lightbox {
Scott Mainb7f96372013-02-07 16:56:43 -08002481 width: 769px;
2482 padding: 1.5em;
2483 margin: 0 auto;
2484 border: solid 1px #dcdcdc;
2485 background: #fff;
2486 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2487 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2488 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002489}
2490.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002491 float: left;
2492 width: 720px;
Scott Main98a2a712013-07-17 13:15:04 -07002493 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002494}
2495.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002496 float: right;
2497 width: 10px;
2498 height: 10px;
2499 margin: -10px -10px 10px 0;
2500 text-indent: -1000em;
2501 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002502}
2503.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002504 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002505}
2506
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002507/* --------------------------------------------------------------------------
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002508Styles for samples browser
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002509*/
2510
Scott Main498d7102013-08-21 15:47:38 -07002511#codesample-wrapper {
Scott Main70557ee2013-10-30 14:47:40 -07002512 width:100000px; /* super wide to contain floats, but doesn't cause scroll */
Scott Main498d7102013-08-21 15:47:38 -07002513 overflow:visible;
2514}
2515pre#codesample-block {
2516 float:left;
2517 overflow:visible;
2518 background:transparent;
2519 border:none;
2520}
Scott Mainf1435b72013-10-30 16:27:38 -07002521pre#codesample-block a.number {
2522 display:none;
2523}
Scott Main498d7102013-08-21 15:47:38 -07002524pre#codesample-block .code-line:hover {
2525 background:#e7e7e7;
2526}
2527pre#codesample-line-numbers {
2528 float:left;
2529 width:2em;
2530 background:transparent;
2531 border:none;
2532 border-right:1px solid #ccc;
2533 padding-left:0;
2534 font-family:monospace;
2535 text-align:right;
2536 -webkit-touch-callout: none;
2537 -webkit-user-select: none;
2538 -khtml-user-select: none;
2539 -moz-user-select: -moz-none;
2540 -ms-user-select: none;
2541 user-select: none;
2542}
2543pre#codesample-line-numbers a {
2544 color:#999;
2545}
2546pre#codesample-line-numbers.hidden {
2547 display:none;
2548}
2549pre#codesample-block span.code-line {
2550 width:100%;
2551 display:inline-block;
2552}
2553
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002554/*
2555Styles for displaying image or video resources in samples browser.
2556Resources are marked as no-display if they exceed the size limit.
2557*/
2558div#codesample-resource img, div#codesample-resource video {
2559 border: 1px solid #ececec;
2560}
2561
2562div#codesample-resource.noDisplay div {
2563 border: 1px solid #ececec;
2564 width:120px;
2565 margin-bottom:4px;
2566 padding:20px;
2567}
2568
2569div#codesample-resource .noDisplay-message:after {
2570 font-style:italic;
2571 font-size:12px;
2572 content: 'This resource is not available for browsing. To view it, please download the project.';
2573}
2574
2575/*
2576Styles for project structure (treeview) page
2577*/
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002578.structure-dir {
2579background-image:url(../../assets/images/folder.png);
2580background-repeat:no-repeat;
2581background-position:16px 2px;
2582 margin:.25em 0 0 0;
2583 padding:0 0 0 0;
2584}
2585
2586.structure-toggleme {
2587 margin:0 0 0 3em;
2588 padding:0 0 0 0;
2589 text-decoration:none;
2590}
2591
2592.structure-java{
2593background-image:url(../../assets/images/file-java.png);
2594background-repeat:no-repeat;
2595background-position:0px 2px;
2596 margin:.3em 0 0 0;
2597 padding:.3em 0 .3em 22px;
2598}
2599
2600.structure-file {
2601background-image:url(../../assets/images/file-generic.png);
2602background-repeat:no-repeat;
2603background-position:0px 2px;
2604 margin:.3em 0 0 0;
2605 padding:.3em 0 .3em 22px;
2606}
2607
2608.structure-xml {
2609background-image:url(../../assets/images/file-xml.png);
2610background-repeat:no-repeat;
2611background-position:0px 2px;
2612 margin:.3em 0 0 0;
2613 padding:.3em 0 .25em 22px;
2614}
2615
2616.structure-img {
2617background-image:url(../../assets/images/file-image.png);
2618background-repeat:no-repeat;
2619background-position:0px 2px;
2620 margin:.3em 0 0 0;
2621 padding:.3em 0 .25em 22px;
2622}
2623
2624.structure-manifest {
2625background-image:url(../../assets/images/file-manifest.png);
2626background-repeat:no-repeat;
2627 margin:.0 0 0 1.25em;
2628 padding:0 0 0 22px;
2629 text-decoration:none;
2630}
2631
2632#jd-content .structure-toggle-img {
2633 margin:.5em 0 0 0;
2634padding-right:2.1em;
2635}
2636
2637.dirInfo {
2638 margin-left:2em;
2639}
2640
2641.structure-dir a {
2642 text-decoration:none;
2643}
2644
2645.structure-manifest a {
2646 text-decoration: none;
2647}
2648.structure-file a {
2649 text-decoration: none;
2650}
2651
2652.sampleEmbed {
2653 background-color:rgb(249, 249, 249);
2654}
2655
2656.sampleEmbed ol.lineNumbers {
2657 list-style-type: decimal;
2658 padding-left:1em;
2659}
2660
2661.sampleEmbed ol.lineNumbers li {
2662border-left:1px solid #ddd;
2663border-right:1px solid #ddd;
2664color:gray;
2665background-color:#f7f7f7;
2666margin:0 0 0 24px;
2667padding: 2px 2px 2px 6px;
2668}
2669
2670.sampleEmbed ol.lineNumbers li:hover {
2671background: #efefef;
2672}
2673
Scott Main0ad622b2013-09-04 21:14:06 -07002674.samples-nav li a {
2675 overflow: hidden;
2676 text-overflow: ellipsis;
2677 white-space: nowrap;
2678}
2679
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002680/* --------------------------------------------------------------------------
2681Styles for raw formatted line numbers (not used with listformatted version)
2682div.sampleLine div.lineNumber {
2683 display: inline;
2684}
2685div.sampleLine div.lineCode {
2686 display: inline;
2687 padding-left:6px;
2688}
2689div.sampleLine {
2690 padding:0;
2691 margin:0;
2692}*/
2693
Scott Maine4d8f1b2012-06-21 18:03:05 -07002694/* --------------------------------------------------------------------------
Dirk Dougherty4c2dfcf2013-07-08 16:05:05 -07002695Butterbar
2696*/
2697#butterbar-wrapper {
2698 position:absolute;
2699 top:0;
2700 left:0;
2701 width:100%;
2702}
2703#butterbar {
2704 width:940px;
2705 margin:0 auto;
2706}
2707#butterbar-message {
2708 background-color:#f80;
2709 float:right;
2710 font-size:12px;
2711 font-weight:bold;
2712 padding:0 10px;
2713 border-radius: 0 0 5px 5px;
2714}
2715#butterbar-message a {color:#fff !important}
2716#butterbar-message a:hover {text-decoration:underline;}
2717
2718/* --------------------------------------------------------------------------
Scott Maine4d8f1b2012-06-21 18:03:05 -07002719Misc
2720*/
2721
2722
2723.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002724 content: "";
2725 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002726}
2727.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002728 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002729}
2730.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002731 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002732}
2733table.blank th, table.blank td {
2734 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002735 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002736}
2737.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002738 margin: 0.5em 0 2em 0;
2739 color: #000;
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002740 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002741}
2742
Scott Main25c89dd2013-10-07 14:17:55 -07002743.nolist, .nolist ul, .nolist ol {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002744 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002745 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002746}
Scott Main5747d382012-11-30 12:02:42 -08002747#tb .nolist {
2748 margin-left:15px;
2749}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002750
Scott Main8aa725e2013-04-25 10:00:32 -07002751dl.xml>dt {
2752 text-transform:uppercase;
2753}
2754dl.xml dl.attr {
2755 margin-top:0;
2756}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002757
2758pre.classic {
2759 background-color:transparent;
2760 border:none;
2761 padding:0;
2762}
2763
2764p.img-caption {
2765 margin: -10px 0 20px;
2766 font-size:13px;
2767 color:#666;
2768}
2769
Scott Main48dd7f22013-02-21 10:52:02 -08002770div.figure,
2771div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002772 float:right;
2773 clear:right;
2774 margin:10px 0 0 0;
2775 padding:0 0 0 20px;
2776 /* width must be defined w/ an inline style matching the image width */
2777}
2778
Scott Main48dd7f22013-02-21 10:52:02 -08002779div.figure-left {
2780 float:left;
2781 clear:left;
2782 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002783 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002784 /* width must be defined w/ an inline style matching the image width */
2785}
2786
2787img.frame {
2788 border:1px solid #DDD;
2789 padding:4px;
2790}
2791
Scott Maine4d8f1b2012-06-21 18:03:05 -07002792p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002793 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002794 font-size:13px;
2795 color:#666;
2796}
2797
Scott Main24bbcd52012-09-21 14:33:43 -07002798p.code-caption {
Scott Main98a2a712013-07-17 13:15:04 -07002799 margin-bottom: 4px;
Scott Maina07be8e2013-03-06 12:12:21 -08002800 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002801 color:#666;
2802}
2803
Scott Main98a2a712013-07-17 13:15:04 -07002804div.note,
2805div.caution,
Scott Main54d2a9b2012-07-24 14:54:32 -07002806div.warning {
2807 margin: 0 0 15px;
2808}
2809
Scott Main98a2a712013-07-17 13:15:04 -07002810p.note, div.note,
2811p.caution, div.caution,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002812p.warning, div.warning {
2813 padding: 0 0 0 10px;
2814 border-left: 4px solid;
2815}
2816
Scott Main24bbcd52012-09-21 14:33:43 -07002817p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002818 border-color: #258AAF;
2819}
2820
Scott Main24bbcd52012-09-21 14:33:43 -07002821p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002822 border-color: #FF8800;
2823}
2824
Scott Main24bbcd52012-09-21 14:33:43 -07002825p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002826 border-color: #ff4443;
2827}
2828
Scott Main412eaf22012-06-22 14:36:33 -07002829div.note.design {
2830 border-left: 4px solid #33B5E5;
2831}
2832
2833div.note.develop {
2834 border-left: 4px solid #F80;
2835}
2836
2837div.note.distribute {
2838 border-left: 4px solid #9C0;
2839}
2840
2841.note p, .caution p, .warning p {
2842 margin:0 0 5px;
2843}
2844
2845.note p:last-child, .caution p:last-child, .warning p:last-child {
2846 margin-bottom:0;
2847}
2848
Scott Main5b5ff1a2012-09-12 10:29:45 -07002849body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002850 display:block;
2851 float:right;
2852 width:280px;
2853 font-size:20px;
2854 font-style:italic;
2855 line-height:24px;
2856 color:#33B5E5;
2857 margin:0 0 20px 30px;
2858}
2859
Scott Maine4d8f1b2012-06-21 18:03:05 -07002860div.design-announce p {
2861 margin:0 0 10px;
2862}
2863
2864#devdoc-nav a.totop {
2865 display:block;
2866 top:0;
2867 width:inherit;
2868 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2869 text-indent:-9999em;
2870}
2871#devdoc-nav a.totop {
2872 position:fixed;
2873 display:none;
2874}
2875#devdoc-nav a.totop:hover {
2876 background-color:#33B5E5;
2877}
2878
2879.content-footer a.totop {
2880 text-transform:uppercase;
2881 line-height:30px;
2882}
2883
Scott Maindb3678b2012-10-23 14:13:41 -07002884.expandable {
2885 height:34px;
2886 padding-left:20px;
2887 position:relative;
2888}
2889.expandable:before {
2890 content: '';
2891 background-image: url(../images/styles/disclosure_down.png);
2892 background-repeat:no-repeat;
2893 background-position: -12px -9px;
2894 width: 20px;
2895 height: 20px;
2896 display: inline-block;
2897 position: absolute;
2898 top: 0;
2899 left: 0; }
2900}
2901.expandable.expanded:before {
2902 background-image: url(../images/styles/disclosure_up.png);
2903}
2904
Scott Mainaaf76642013-06-19 18:04:30 -07002905/* notice box for cross links between Design/Develop docs */
Scott Main13cd8f12013-11-12 11:50:59 -08002906a.notice-developers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002907a.notice-developers,
Scott Main13cd8f12013-11-12 11:50:59 -08002908a.notice-designers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002909a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002910 float:right;
Scott Maine80ddbe2013-07-12 19:22:24 -07002911 clear:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002912 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002913 min-height:50px;
2914 margin:0 0 20px 20px;
2915 border:1px solid #ddd;
2916}
Scott Main13cd8f12013-11-12 11:50:59 -08002917a.notice-developers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002918a.notice-developers.wide,
Scott Main13cd8f12013-11-12 11:50:59 -08002919a.notice-designers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002920a.notice-designers.wide {
2921 width:278px;
2922}
Scott Main13cd8f12013-11-12 11:50:59 -08002923a.notice-developers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002924a.notice-developers div,
Scott Main13cd8f12013-11-12 11:50:59 -08002925a.notice-designers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002926a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002927 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002928 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2929 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002930 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002931}
Scott Mainaaf76642013-06-19 18:04:30 -07002932a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002933 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2934 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002935}
Scott Main13cd8f12013-11-12 11:50:59 -08002936a.notice-designers-video div {
2937 background:url('../images/styles/notice-designers-video@2x.png') no-repeat 10px 10px;
2938 background-size:40px 40px;
2939}
2940a.notice-developers-video div {
2941 background:url('../images/styles/notice-developers-video@2x.png') no-repeat 10px 10px;
2942 background-size:40px 40px;
2943}
2944a.notice-developers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002945a.notice-developers:hover,
Scott Main13cd8f12013-11-12 11:50:59 -08002946a.notice-designers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002947a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002948 background:#eee;
2949}
Scott Main13cd8f12013-11-12 11:50:59 -08002950a.notice-developers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002951a.notice-developers h3,
Scott Main13cd8f12013-11-12 11:50:59 -08002952a.notice-designers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002953a.notice-designers h3 {
Scott Main4e5b39d2013-11-13 16:49:22 -08002954 font-size:13px;
2955 line-height:18px;
2956 font-weight:bold;
Scott Maind2af6d22013-05-13 18:39:06 -07002957 text-transform:uppercase;
2958 color:#000 !important;
Scott Main4e5b39d2013-11-13 16:49:22 -08002959 margin:0 0 1px;
Scott Maind2af6d22013-05-13 18:39:06 -07002960}
Scott Main13cd8f12013-11-12 11:50:59 -08002961a.notice-developers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002962a.notice-developers p,
Scott Main13cd8f12013-11-12 11:50:59 -08002963a.notice-designers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002964a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002965 margin:0;
Scott Main4e5b39d2013-11-13 16:49:22 -08002966 line-height:14px;
Scott Main9bfcd732013-05-14 09:14:35 -07002967}
Scott Main13cd8f12013-11-12 11:50:59 -08002968a.notice-developers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002969a.notice-developers.left,
Scott Main13cd8f12013-11-12 11:50:59 -08002970a.notice-designers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002971a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002972 margin-left:0;
2973 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002974}
2975
2976
Scott Maind7026f72013-06-17 15:08:49 -07002977/* hide nested list items; companion to hideNestedLists() */
2978.hide-nested li ol,
2979.hide-nested li ul {
2980 display:none;
2981}
2982
2983a.header-toggle {
2984 display:block;
2985 float:right;
2986 text-transform:uppercase;
2987 font-size:.8em !important;
2988 font-weight:normal;
2989 margin-top:2px;
2990}
2991
2992
Dirk Doughertybec14292013-04-10 20:23:40 -07002993/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07002994good/bad example containers
Dirk Doughertybec14292013-04-10 20:23:40 -07002995*/
Scott Maindb3678b2012-10-23 14:13:41 -07002996
Dirk Doughertybec14292013-04-10 20:23:40 -07002997div.example-block {
2998 background-repeat: no-repeat;
Scott Main98a2a712013-07-17 13:15:04 -07002999 background-position:10px 8px;
Dirk Doughertybec14292013-04-10 20:23:40 -07003000 background-color:#ccc;
3001 padding:4px;
3002 margin:.8em auto 1.5em 2em;
3003 width:260px;
3004 float:right;
3005}
3006/* red container */
3007.example-block.bad {
3008 background-image: url(/images/example-bad.png);
3009 background-color:#f4cccc;
3010}
3011/* green container */
3012.example-block.good {
3013 background-image: url(/images/example-good.png);
3014 background-color:#d9ead3;
3015}
3016/* container heading div */
3017#jd-content .example-block .heading {
3018 font-weight:bold;
3019 margin:6px 0 9px 36px;
3020 padding:6px auto;
3021}
3022/* container image (if any) */
3023#jd-content .example-block img {
3024 margin:0;
3025 padding:0px;
3026}
3027
3028.example-block table {
3029 margin:0;
3030}
Scott Maindb3678b2012-10-23 14:13:41 -07003031
Scott Maine4d8f1b2012-06-21 18:03:05 -07003032/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003033Dialog box for popup messages
Scott Maine4d8f1b2012-06-21 18:03:05 -07003034*/
3035
3036div.dialog {
3037 height:0;
3038 margin:0 auto;
3039}
3040
3041div.dialog>div {
3042 z-index:99;
3043 position:fixed;
3044 margin:70px 0;
3045 width: 391px;
3046 height: 200px;
3047 background: #F7F7F7;
3048-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3049-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3050box-shadow: 0 0 15px rgba(0,0,0,0.5);
3051}
3052/* IE6 can't position fixed */
3053* html div.dialog div { position:absolute; }
3054
3055
3056div#deprecatedSticker {
3057 display:none;
3058 z-index:99;
3059 position:fixed;
3060 right:15px;
3061 top:114px;
3062 margin:0;
3063 padding:1em;
3064 background:#FFF;
3065 border:1px solid #dddd00;
3066 box-shadow:-5px 5px 10px #ccc;
3067 -moz-box-shadow:-5px 5px 10px #ccc;
3068 -webkit-box-shadow:-5px 5px 10px #ccc;
3069}
3070
3071div#naMessage {
3072 display:none;
3073 width:555px;
3074 height:0;
3075 margin:0 auto;
3076}
3077
3078div#naMessage div {
3079 z-index:99;
3080 width:450px;
3081 position:fixed;
3082 margin:50px 0;
3083 padding:4em 4em 3em;
3084 background:#FFF;
3085 border:1px solid #999;
3086 box-shadow:-10px 10px 40px #888;
3087 -moz-box-shadow:-10px 10px 40px #888;
3088 -webkit-box-shadow:-10px 10px 40px #888;
3089}
3090/* IE6 can't position fixed */
3091* html div#naMessage div { position:absolute; }
3092
3093div#naMessage strong {
3094 font-size:1.1em;
3095}
3096
3097
3098/* --------------------------------------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003099Slideshow Controls & Next/Prev
Scott Maine4d8f1b2012-06-21 18:03:05 -07003100*/
Scott Main98a2a712013-07-17 13:15:04 -07003101.slideshow-next, .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08003102 width: 20px;
3103 height: 36px;
3104 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003105}
3106.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08003107 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003108}
3109.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003110 content: "";
3111 display: table;
3112 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003113}
3114a.slideshow-next, a.slideshow-next:visited {
3115
Scott Mainb7f96372013-02-07 16:56:43 -08003116 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003117
Scott Mainb7f96372013-02-07 16:56:43 -08003118 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003119
3120}
3121
3122a.slideshow-prev, a.slideshow-prev:visited {
3123
Scott Main98a2a712013-07-17 13:15:04 -07003124 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003125
Scott Mainb7f96372013-02-07 16:56:43 -08003126 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003127
3128}
3129
3130.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3131
Scott Main98a2a712013-07-17 13:15:04 -07003132 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003133
3134}
3135
3136.slideshow-next:active, .slideshow-prev:active {
3137
Scott Main98a2a712013-07-17 13:15:04 -07003138 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003139
3140}
3141.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08003142 width: 74px;
Scott Main98a2a712013-07-17 13:15:04 -07003143 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003144}
3145.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003146 display: inline-block;
3147 width: 12px;
3148 height: 12px;
3149 margin: 0 2px 20px 2px;
3150 background: #ccc;
3151 -webkit-border-radius: 50%;
3152 -moz-border-radius: 50%;
3153 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003154}
3155.slideshow-nav a:hover, .slideshow-nav a:focus {
3156
Scott Mainb7f96372013-02-07 16:56:43 -08003157 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003158}
3159
3160.slideshow-nav a:active {
3161
Scott Mainb7f96372013-02-07 16:56:43 -08003162 background: #1e799a;
Scott Main98a2a712013-07-17 13:15:04 -07003163 background: #ebebeb;
Scott Mainb7f96372013-02-07 16:56:43 -08003164 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3165 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3166 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07003167}
3168.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003169 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003170}
3171/* --------------------------------------------------------------------------
3172Tabs
3173*/
3174ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08003175 padding: 0;
Scott Main98a2a712013-07-17 13:15:04 -07003176 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003177}
3178ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003179 content: "";
3180 display: table;
3181 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003182}
3183ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08003184 list-style-type: none;
Scott Main98a2a712013-07-17 13:15:04 -07003185 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003186}
3187ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003188 display: block;
3189 height: 36px;
3190 line-height: 36px;
3191 padding: 0 15px;
3192 margin-right: 2px;
3193 color: #222;
3194 -moz-border-radius-topleft: 2px;
3195 -moz-border-radius-topright: 2px;
3196 -moz-border-radius-bottomright: px;
3197 -moz-border-radius-bottomleft: px;
3198 -webkit-border-radius: 2px 2px px px;
Scott Main98a2a712013-07-17 13:15:04 -07003199 border-radius: 2px 2px px px;
Scott Mainb7f96372013-02-07 16:56:43 -08003200 border-top: solid 1px #ebebeb;
3201 border-left: solid 1px #ebebeb;
3202 border-right: solid 1px #ebebeb;
3203 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003204 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3205 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3206 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3207 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3208 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3209 background-image: linear-gradient(top, #ffffff, #fafafa);
3210 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3211EndColorStr='#fafafa');
3212}
3213ul.tabs li a:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003214 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003215}
3216ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08003217 height: 37px;
3218 color: #33B5E5;
3219 background-color: #f7f7f7;
3220 background-image: none;
3221 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003222}
3223.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08003224 padding: 1.2em;
3225 margin: -1px 0 2em 0;
3226 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003227 -moz-border-radius: 2px;
3228 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08003229 border: solid 1px #ddd;
3230 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003231}
3232/* --------------------------------------------------------------------------
3233Feature Boxes
3234*/
3235.feature-box {
3236 width: 291px;
3237 height: 200px;
3238 position: relative;
3239 background: #F7F7F7;
3240}
3241.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003242 z-index: 100;
3243 position: absolute;
3244 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003245}
3246.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003247 width: 291px;
3248 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003249}
3250.dialog .box-border .top,
3251.dialog .box-border .bottom { width:391px; }
3252
Scott Main98a2a712013-07-17 13:15:04 -07003253.box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003254 width: 1px;
Scott Main98a2a712013-07-17 13:15:04 -07003255 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003256}
3257.box-border .top { top: 0; left: 0 }
3258.box-border .top .left { top: 1px; left: 0 }
3259.box-border .top .right { top: 1px; right: 0 }
3260.box-border .bottom .left { top: -8px; left: 0 }
3261.box-border .bottom { top: 200px; left: 0 }
3262.box-border .bottom .right { top: -8px; right: 0 }
3263
3264.feature-box h4,
3265.dialog h4 {
3266 margin: 15px 18px 10px;
3267 padding:0;
3268}
3269
3270.feature-box p,
3271.dialog p {
3272 margin: 10px 18px;
3273 padding:0;
3274}
3275.feature-box .link,
3276.dialog .link {
3277 border-top: 1px solid #dedede;
3278 bottom: 0;
3279 position: absolute;
3280 width: inherit;
3281}
3282.feature-box a, .feature-box h4,
3283.dialog a, .dialog h4 {
3284 -webkit-transition: color .4s ease;
3285 -moz-transition: color .4s ease;
3286 -o-transition: color .4s ease;
3287 transition: color .4s ease;
3288}
3289.feature-box:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003290 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003291}
3292.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Main98a2a712013-07-17 13:15:04 -07003293.left, .feature-box:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003294 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003295}
3296.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08003297 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003298}
3299/* --------------------------------------------------------------------------
3300Page-Specific Styles
3301*/
Scott Main98a2a712013-07-17 13:15:04 -07003302.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08003303 position: relative;
3304 float: left;
3305 width: 92px;
3306 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003307}
3308.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08003309 color: #fff;
3310 font-size: 11.5px;
3311 width: 82px;
3312 height: 82px;
3313 margin-top:-30px;
3314 line-height: 82px;
3315 text-align: center;
3316 border: solid 5px #fff;
3317 -webkit-border-radius: 50%;
3318 -moz-border-radius: 50%;
3319 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003320}
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335/* ########### REFERENCE DOCS ################## */
3336
3337#packages-nav h2,
3338#classes-nav h2 {
3339 font-size:18px;
3340 margin:0;
3341 padding:0 0 0 4px;
3342}
3343
3344#jd-header {
3345 padding: 0 0 5px;
3346 margin: 20px 0 10px;
3347 font-size:13px;
3348 border-bottom:solid 1px #ccc;
3349}
3350
3351#jd-header h1 {
3352 margin:0;
3353 padding:0;
3354}
3355
3356/* page-top-right container for reference pages (holds
3357links to summary tables) */
3358#api-info-block {
3359 font-size:13px;
3360 margin:20px 0 0;
3361 padding:0 10px 6px;
3362 font-weight:normal;
3363 float:right;
3364 text-align:right;
3365 color:#999;
3366 max-width:70%;
3367}
3368
3369#api-info-block div.api-level {
3370 font-weight:bold;
3371 font-size:inherit;
3372 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003373 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003374 padding:0;
3375 margin:0;
3376}
3377
3378/* inheritance table */
3379.jd-inheritance-table {
3380 border-spacing:0;
3381 margin:0;
3382 padding:0;
3383 font-size:13px;
3384 background-color:transparent;
3385}
3386.jd-inheritance-table tr td {
3387 border: none;
3388 margin: 0;
3389 padding: 0;
3390 background-color:transparent;
3391}
3392.jd-inheritance-table .jd-inheritance-space {
3393 font-weight:bold;
3394 width:1em;
3395}
3396.jd-inheritance-table .jd-inheritance-interface-cell {
3397 padding-left: 17px;
3398}
3399
3400
3401
3402.jd-sumtable a {
3403 text-decoration:none;
3404}
3405
3406.jd-sumtable a:hover {
3407 text-decoration:underline;
3408}
3409
3410/* the link inside a sumtable for "Show All/Hide All" */
3411.toggle-all {
3412 display:block;
3413 float:right;
3414 font-weight:normal;
3415 font-size:0.9em;
3416}
3417
3418/* adjustments for in/direct subclasses tables */
3419.jd-sumtable.jd-sumtable-subclasses {
3420 margin: 1em 0 0 0;
3421 max-width:968px;
3422 background-color:transparent;
3423 font-size:13px;
3424}
3425
3426/* extra space between end of method name and open-paren */
3427.sympad {
3428 margin-right: 2px;
3429}
3430
3431/* right alignment for the return type in sumtable */
3432.jd-sumtable .jd-typecol {
3433 text-align:right;
3434}
3435
3436/* adjustments for the expando table-in-table */
3437.jd-sumtable-expando {
3438 margin:.5em 0;
3439 padding:0;
3440}
3441
3442/* a div that holds a short description */
3443.jd-descrdiv {
3444 padding:3px 1em 0 1em;
3445 margin:0;
3446 border:0;
3447}
3448
3449#jd-content img.jd-expando-trigger-img {
3450 padding:0 4px 4px 0;
3451 margin:0;
3452}
3453
3454.jd-sumtable-subclasses div#subclasses-direct,
3455.jd-sumtable-subclasses div#subclasses-indirect {
3456 margin:0 0 0 13px;
3457}
3458
3459
3460
3461/********* MEMBER REF *************/
3462
3463
3464.jd-details {
3465/* border:1px solid #669999;
3466 padding:4px; */
3467 margin:0 0 1em;
3468}
3469
3470/* API reference: a container for the
3471.tagdata blocks that make up the detailed
3472description */
3473.jd-details-descr {
3474 padding:0;
3475 margin:.5em .25em;
3476}
3477
3478/* API reference: a block containing
3479a detailed description, a params table,
3480seealso list, etc */
3481.jd-tagdata {
3482 margin:.5em 1em;
3483}
3484
3485.jd-tagdata p {
3486 margin:0 0 1em 1em;
3487}
3488
3489/* API reference: adjustments to
3490the detailed description block */
3491.jd-tagdescr {
3492 margin:.25em 0 .75em 0;
3493}
3494
3495.jd-tagdescr ol,
3496.jd-tagdescr ul {
3497 margin:0 2.5em;
3498 padding:0;
3499}
3500
3501.jd-tagdescr table,
3502.jd-tagdescr img {
3503 margin:.25em 1em;
3504}
3505
3506.jd-tagdescr li {
3507margin:0 0 .25em 0;
3508padding:0;
3509}
3510
3511/* API reference: heading marking
3512the details section for constants,
3513attrs, methods, etc. */
3514h4.jd-details-title {
3515 font-size:1.15em;
3516 background-color: #E2E2E2;
3517 margin:1.5em 0 .6em;
3518 padding:3px 95px 3px 3px; /* room for api-level */
3519}
Scott Mainab4daf42012-11-30 11:27:17 -08003520body.google h4.jd-details-title {
3521 background-color: #FFF;
3522 padding-top:5px;
3523 border-top: 1px solid #ccc;
3524}
3525body.google table.jd-sumtable th {
3526 background-color: #FFF;
3527 color:#000;
3528}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003529
3530h4.jd-tagtitle {
3531 margin:0;
3532}
3533
3534h4 .normal {
3535 font-weight:normal;
3536}
3537
3538/* API reference: heading for "Parameters", "See Also", etc.,
3539in details sections */
3540h5.jd-tagtitle {
3541 margin:0 0 .25em 0;
3542 font-size:1em;
3543}
3544
3545.jd-tagtable {
3546 margin:0;
3547 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003548 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003549}
3550
3551.jd-tagtable td,
3552.jd-tagtable th {
3553 border:none;
3554 background-color:#fff;
3555 vertical-align:top;
3556 font-weight:normal;
3557 padding:2px 10px;
3558}
3559
3560.jd-tagtable th {
3561 font-style:italic;
3562}
3563
3564/* Inline api level indicator for methods */
3565div.api-level {
3566 font-size:.8em;
3567 font-weight:normal;
3568 color:#999;
3569 float:right;
3570 padding:0 8px 0;
3571 margin-top:-30px;
3572}
3573
3574table.jd-tagtable td,
3575table.jd-tagtable th {
3576 background-color:transparent;
3577}
3578
3579table.jd-tagtable th {
3580 color:inherit;
3581}
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605/* SEARCH FILTER */
3606
Scott Main0e76e7e2013-03-12 10:24:07 -07003607.menu-container {
3608 position:relative;
3609}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003610#search_autocomplete {
3611 font-weight:normal;
3612}
3613
Scott Main0e76e7e2013-03-12 10:24:07 -07003614.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003615 width: 193px;
3616 float: right;
3617}
Scott Main0e76e7e2013-03-12 10:24:07 -07003618.search_filtered_wrapper.docs {
3619 width:875px;
3620 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003621 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003622 top:26px;
3623 right:66px;
3624}
3625.suggest-card {
3626 position:relative;
3627 width:170px;
3628 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003629 padding:5px;
3630 border: solid 1px #C5C5C5;
3631 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003632 top: 15px;
3633 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003634 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3635 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3636 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3637}
Scott Main0e76e7e2013-03-12 10:24:07 -07003638.suggest-card.reference {
3639 position:absolute;
3640 z-index:999;
3641 min-width:171px; /* +padding and border makes this match input width */
3642 min-height:93px; /* add 3px because this has 1 not 4px top border */
3643 width:auto;
3644 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003645 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003646}
3647.suggest-card.develop {
3648 z-index:997;
3649 border-top: solid 4px #F80;
3650 float:right;
3651}
3652.suggest-card.design {
3653 z-index:996;
3654 border-top: solid 4px #33b5e5;
3655 float:right;
3656}
3657.suggest-card.distribute {
3658 z-index:995;
3659 border-top: solid 4px #9C0;
3660 float:right;
3661}
3662.child-card {
3663 width:100%;
3664}
3665.suggest-card.dummy {
3666 width:172px;
3667 float:right;
3668 border:0;
3669 background:transparent;
3670 -moz-box-shadow: none;
3671 -webkit-box-shadow: none;
3672 box-shadow: none;
3673}
3674
3675ul.search_filtered {
3676 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003677 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003678 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003679 padding: 0;
3680}
Scott Main0e76e7e2013-03-12 10:24:07 -07003681.search_filtered .jd-selected {
3682 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003683 cursor:pointer;
3684}
Scott Main0e76e7e2013-03-12 10:24:07 -07003685.search_filtered .jd-selected,
3686.search_filtered .jd-selected a {
3687 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003688}
3689
3690.no-display {
3691 display: none;
3692}
3693
Scott Main0e76e7e2013-03-12 10:24:07 -07003694.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003695 font-size: 0.81em;
3696 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003697 margin: 0 0 2px;
3698 padding: 0;
3699 line-height:1.5em;
3700}
3701
Scott Main0e76e7e2013-03-12 10:24:07 -07003702.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003703 padding:0 5px;
3704 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003705 display:inline-block;
3706 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003707}
3708
Scott Main0e76e7e2013-03-12 10:24:07 -07003709.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003710 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003711 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003712 border: none;
3713 margin: 8px 0 2px;
3714 padding:1px 5px;
3715 line-height:1.5em;
3716}
Scott Main0e76e7e2013-03-12 10:24:07 -07003717.search_filtered li.header.small {
3718 font-size:0.85em;
3719}
Scott Main7e447ed2013-02-19 17:22:37 -08003720
Scott Main98a2a712013-07-17 13:15:04 -07003721.suggest-card.reference
Scott Main0e76e7e2013-03-12 10:24:07 -07003722.search_filtered li.header {
3723 color:#aaa;
3724 font-size: 0.81em;
3725}
3726
3727.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003728 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003729}
3730
3731.show-item {
3732 display: table-row;
3733}
3734.hide-item {
3735 display: hidden;
3736}
3737
3738
3739
3740
3741
3742/* SEARCH RESULTS */
3743
Scott Maine4d8f1b2012-06-21 18:03:05 -07003744
3745#leftSearchControl .gsc-twiddle {
3746 background-image : none;
3747}
3748
3749#leftSearchControl td, #searchForm td {
3750 border: 0px solid #000;
3751 padding:0;
3752}
3753
3754#leftSearchControl .gsc-resultsHeader .gsc-title {
3755 padding-left : 0px;
3756 font-weight : bold;
3757 font-size : 13px;
3758 color:#006699;
3759 display : none;
3760}
3761
3762#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3763 display : none;
3764}
3765
3766#leftSearchControl .gsc-resultsRoot {
3767 padding-top : 6px;
3768}
3769
3770#leftSearchControl div.gs-visibleUrl-long {
3771 display : block;
3772 color:#006699;
3773}
3774
3775#leftSearchControl .gsc-webResult {
3776 padding:0 0 20px 0;
3777}
3778
3779.gsc-webResult div.gs-visibleUrl-short,
3780table.gsc-branding,
3781.gsc-clear-button {
3782 display : none;
3783}
3784
3785.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3786.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3787#leftSearchControl a,
3788#leftSearchControl a b {
3789 color:#006699;
3790}
3791
3792.gsc-resultsHeader {
3793 display: none;
3794}
3795
3796/* Disable built in search forms */
3797.gsc-control form.gsc-search-box {
3798 display : none;
3799}
3800table.gsc-search-box {
3801 margin:6px 0 0 0;
3802 border-collapse:collapse;
3803}
3804
3805td.gsc-input {
3806 padding:0 2px;
3807 width:100%;
3808 vertical-align:middle;
3809}
3810
3811input.gsc-input {
3812 border:1px solid #BCCDF0;
3813 width:99%;
3814 padding-left:2px;
3815 font-size:.95em;
3816}
3817
3818td.gsc-search-button {
3819 text-align: right;
3820 padding:0;
3821 vertical-align:top;
3822}
3823
3824
3825#searchResults {
3826 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3827(it doesn't) */
3828 height:auto;
3829}
3830
3831#searchResults .gsc-control {
3832 position:relative;
3833 width:auto;
3834 padding:0 0 10px;
3835}
3836
3837#searchResults .gsc-tabsArea {
3838 position:relative;
3839 white-space:nowrap;
3840 float:left;
3841 width:200px;
3842}
3843
3844#searchResults .gsc-above-wrapper-area {
3845 display:none;
3846}
3847
3848#searchResults .gsc-resultsbox-visible {
3849 float:left;
3850 width:720px;
3851 margin-left:20px;
3852}
3853
3854#searchResults .gsc-tabHeader {
3855 padding: 3px 6px;
3856 position:relative;
3857 width:auto;
3858 display:block;
3859}
3860
3861#searchResults h2#searchTitle {
3862 padding:0;
3863 margin:5px 0;
3864 border:none;
3865}
3866
3867#searchResults h2#searchTitle em {
3868 font-style:normal;
3869 color:#33B5E5;
3870}
3871
3872#searchResults .gsc-table-result {
3873 margin:5px 0 10px 0;
3874 background-color:transparent;
3875}
3876#searchResults .gs-web-image-box, .gs-promotion-image-box {
3877 width:120px;
3878}
3879#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3880 max-width:120px;
3881}
3882
3883#searchResults .gsc-table-result .gsc-thumbnail {
3884 padding:0 20px 0 0;
3885}
3886
3887#searchResults td {
3888 background-color:transparent;
3889}
3890
3891#searchResults .gsc-expansionArea {
3892 position:relative;
3893}
3894#searchResults .gsc-tabsArea .gsc-cursor-box {
3895 width:200px;
3896 padding:20px 0 0 1px;
3897}
3898#searchResults .gsc-cursor-page {
3899 display:inline-block;
3900 float:left;
3901 margin:-1px 0 0 -1px;
3902 padding:0;
3903 height:27px;
3904 width:27px;
3905 text-align:center;
3906 line-height:2;
3907}
3908
3909#searchResults .gsc-tabHeader.gsc-tabhInactive,
3910#searchResults .gsc-cursor-page {
3911 text-decoration:none;
3912 color:#258AAF;
3913 border: solid 1px #DADADA;
3914}
3915
3916#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3917#searchResults .gsc-cursor-page:hover {
3918 border-color: #DBDBDB;
3919 background-color: #F3F3F3;
3920 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3921 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3922 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3923 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3924 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3925 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3926 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3927EndColorStr='#ececec');
3928 color: #33B5E5;
3929}
3930
3931#searchResults .gsc-tabHeader.gsc-tabhActive,
3932#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3933#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3934#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3935 color:#fff;
3936 background-color: #09C;
3937 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3938 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3939 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3940 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3941 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3942 background-image: linear-gradient(top, #2FADDB, #09C);
3943 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3944 border: 1px solid #3990AB;
3945 z-index:100;
3946}
3947
3948}
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962/*********** PREVIOUSLY dac-styles.css ***************/
3963
3964
Scott Maine4d8f1b2012-06-21 18:03:05 -07003965#header {
3966 border-bottom:0;
3967}
3968
3969#header .wrap {
3970 max-width:940px;
3971 height:41px;
3972 border-bottom:1px solid;
3973 border-color: #ccc;
3974 position:relative;
3975}
3976
3977.about #header .wrap {
3978 border-color: #9933CC;
3979}
3980
3981.design #header .wrap {
3982 border-color: #33b5e5;
3983}
3984
3985.develop #header .wrap {
3986 border-color: #F80;
3987}
3988
3989.distribute #header .wrap {
3990 border-color: #9C0;
3991}
3992
3993.logo a {
3994 width:123px;
3995 float:left;
3996}
3997
3998#header .logo {
3999 margin-top: -6px;
4000 margin-left: 0px;
4001 margin-bottom:0px;
4002 width: 160px;
4003 padding-right:10px;
4004}
4005
4006.search {
4007 height:25px;
4008 margin-top: -3px;
4009 margin-bottom: 0px;
4010}
4011
4012
4013
4014/* Quicknav */
4015.btn-quicknav {
4016 width:20px;
4017 height:28px;
4018 float:left;
4019 margin-left:6px;
4020 padding-right:10px;
4021 position:relative;
4022 cursor:pointer;
4023 border-right:1px solid #CCC;
4024}
4025
4026.btn-quicknav a {
4027 zoom:1;
4028 position:absolute;
4029 top:13px;
4030 left:5px;
4031 display:block;
4032 text-indent:-9999em;
4033 width:10px;
4034 height:5px;
4035 background:url(../images/quicknav_arrow.png) no-repeat;
4036}
4037
4038.btn-quicknav a.arrow-active {
4039 background-position: 0 -5px;
4040 display:none;
4041}
4042
4043#header-wrap.quicknav a.arrow-inactive {
4044 display:none;
4045}
4046
4047.btn-quicknav.active a.arrow-active {
4048 display:block;
4049}
4050
4051.nav-x li {
4052 display:block;
4053 float:left;
4054 margin-right:45px;
4055 -webkit-transition: all 0.25s linear;
4056 -moz-transition: all 0.25s linear;
4057 -ms-transition: all 0.25s linear;
4058 -o-transition: all 0.25s linear;
4059 transition: all 0.25s linear;
4060}
4061
4062#header-wrap.quicknav .nav-x li {
4063 min-width:160px;
4064 margin-right:20px;
4065}
4066
4067#header-wrap.quicknav li.last {
4068 margin-right:0px;
4069}
4070
4071#quicknav {
Scott Main98a2a712013-07-17 13:15:04 -07004072 float:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004073 clear:both;
4074 margin-left:180px;
4075 margin-top:-30px;
4076 display:none;
4077 overflow:hidden;
4078}
4079
4080#header-wrap.quicknav #quicknav {
4081
4082}
4083
4084#quicknav ul {
4085 margin:10px 0;
4086 padding:0;
4087}
4088
4089#quicknav ul li.design {
4090 border-top:1px solid #33b5e5;
4091}
4092
4093#quicknav ul li.develop {
4094 border-top:1px solid #FF8800;
4095}
4096
4097#quicknav ul li.distribute {
4098 border-top:1px solid #99cc00;
4099}
4100
4101#quicknav ul li {
4102 display:block;
4103 float:left;
4104 margin:0 20px 0 0;
4105 min-width:140px;
4106}
4107
4108#quicknav ul li.last {
4109 margin-right:0px;
4110}
4111
4112#quicknav ul li ul li {
4113 float:none;
4114}
4115
4116#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07004117 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004118}
4119
4120#quicknav ul li li ul,
4121#quicknav ul li li ul li {
4122 margin:0;
4123}
4124
4125#quicknav ul li li ul li:before {
4126 content:"\21B3";
4127}
4128
4129#header-wrap {
4130 -webkit-transition: all 0.25s ease-out;
4131 -moz-transition: all 0.25s ease-out;
4132 -ms-transition: all 0.25s ease-out;
4133 -o-transition: all 0.25s ease-out;
4134 transition: all 0.25s ease-out;
4135
4136}
4137
4138#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07004139 height:196px;
Scott Main98a2a712013-07-17 13:15:04 -07004140
Scott Maine4d8f1b2012-06-21 18:03:05 -07004141}
4142
4143/* SEARCH AND MORE */
4144.search {
4145 position: absolute;
4146 width: 50px;
4147 height:28px;
4148 display: block;
4149 margin-top:-3px;
4150 margin-bottom:7px;
4151 overflow:hidden;
4152 z-index:100;
4153 right:54px;
4154 -webkit-transition: width 0.4s ease;
4155 -moz-transition: width 0.4s ease;
4156 -o-transition: width 0.4s ease;
4157 transition: width 0.4s ease;
4158}
4159
4160.search #search-btn {
4161 width:50px;
4162 height:28px;
4163 background:url(../images/icon_search.png) no-repeat;
4164 float:left;
4165}
4166
4167.search-inner {
4168 width:245px;
4169}
4170
4171.search:hover, .search.active {
4172 width:245px;
4173}
4174
4175.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004176 position: absolute;
4177 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07004178}
4179
4180.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08004181 width: 214px;
4182 height: 1px;
4183 top: 24px;
4184 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07004185}
4186
Scott Main98a2a712013-07-17 13:15:04 -07004187.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004188 height: 5px;
4189 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004190}
4191
4192.search .left {
4193 top: 22px;
4194 left: 56px;
4195 background-color:#CCC;
4196}
4197
4198.search .right {
4199 top: 22px;
4200 left: 238px;
4201 background-color:#CCC;
4202}
4203
4204.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08004205 margin-top: 2px;
4206 width: 162px;
4207 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004208}
4209
4210.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08004211 color: #2f2f2f;
4212 font-size: 0.95em;
Scott Main98a2a712013-07-17 13:15:04 -07004213 width: 178px;
Scott Mainb7f96372013-02-07 16:56:43 -08004214 border: none;
Scott Main98a2a712013-07-17 13:15:04 -07004215 margin-left: 6px;
4216 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004217 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08004218 background-color: transparent;
4219 border-bottom:1px solid #CCC;
4220 padding:0 0 0 4px;
4221 outline:none;
4222 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004223}
4224
4225.search:hover form input {
4226 border-bottom:1px solid #33B5E5;
4227}
4228
4229.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004230 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004231}
4232
4233.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08004234 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004235}
4236
4237.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08004238 color: #222;
4239 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07004240}
4241
4242.moremenu {
4243 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08004244 position: relative;
4245 width: 50px;
4246 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004247 display: block;
4248 margin-top:-3px;
4249 margin-bottom:7px;
4250 overflow:hidden;
4251 -webkit-transition: width 0.25s ease;
4252 -moz-transition: width 0.25s ease;
4253 -o-transition: width 0.25s ease;
4254 transition: width 0.25s ease;
4255}
4256
4257.moremenu #more-btn {
4258 width:40px;
4259 height:28px;
4260 background:url(../images/icon_more.png) no-repeat;
4261 border-left:1px solid #CCC;
4262 float:left;
4263 cursor:pointer;
4264}
4265
4266.moremenu:hover #more-btn {
4267 background-position:0 -28px;
4268}
4269
4270.morehover {
4271 position:absolute;
4272 right:6px;
4273 top:-9px;
4274 width:40px;
4275 height:35px;
4276 z-index:99;
4277 overflow:hidden;
4278
4279 -webkit-opacity:0;
4280 -moz-opacity:0;
4281 -o-opacity:0;
4282 opacity:0;
4283
4284 -webkit-transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004285 -moz-transform-origin:100% 0%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004286 -o-transform-origin:100% 0%;
4287 transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004288
Scott Maine4d8f1b2012-06-21 18:03:05 -07004289 -webkit-transition-property: -webkit-opacity;
4290 -webkit-transition-duration: .25s;
4291 -webkit-transition-timing-function:ease;
4292
Scott Main0e76e7e2013-03-12 10:24:07 -07004293 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004294 -moz-transition-duration: .25s;
4295 -moz-transition-timing-function:ease;
4296
Scott Main0e76e7e2013-03-12 10:24:07 -07004297 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004298 -o-transition-duration: .25s;
4299 -o-transition-timing-function:ease;
Scott Main98a2a712013-07-17 13:15:04 -07004300
Scott Main0e76e7e2013-03-12 10:24:07 -07004301 transition-property: opacity;
4302 transition-duration: .25s;
4303 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004304}
4305
Scott Maine05e6f92013-01-29 13:34:17 -08004306.morehover:hover,
4307.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004308 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07004309 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004310 width:268px;
4311 -webkit-transition-property:height, -webkit-opacity;
4312}
4313
4314.morehover .top {
4315 width:268px;
4316 height:39px;
4317 background:url(../images/more_top.png) no-repeat;
4318}
4319
4320.morehover .mid {
4321 width:228px;
4322 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004323 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004324}
4325
4326.morehover .mid .header {
4327 border-bottom:1px solid #ccc;
4328 font-weight:bold;
4329}
4330
4331.morehover .bottom {
4332 width:268px;
4333 height:6px;
4334 background:url(../images/more_bottom.png) no-repeat;
4335}
4336
4337.morehover ul {
4338 margin:10px 10px 20px 0;
4339}
4340
4341.morehover ul li {
4342 list-style:none;
4343}
4344
4345.morehover ul li.active a,
4346.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004347 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004348}
4349
4350.morehover ul li.active img {
4351 margin-right:4px;
4352}
4353
4354
4355
4356
4357/* MARQUEE */
4358.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004359 width:100%;
4360 overflow:hidden;
4361 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004362}
4363.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004364 position:absolute;
4365 top:50%;
4366 left:0px;
4367 margin-top:-36px;
4368 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004369}
4370.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004371 position:absolute;
4372 top:50%;
4373 margin-top:-36px;
4374 z-index:99;
4375 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004376}
4377
4378.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004379 position:absolute;
4380 bottom:20px;
4381 width:100%;
4382 text-align:center;
4383 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004384}
4385.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004386 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004387}
4388.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004389 display: inline-block;
4390 width:12px;
4391 height:12px;
4392 text-indent:-8000px;
4393 list-style:none;
4394 margin: 0 2px;
4395 border-radius:6px;
4396 background-color:#ccc;
4397 cursor:pointer;
Scott Main98a2a712013-07-17 13:15:04 -07004398 -webkit-transition:color .5s ease-in;
4399 -moz-transition:color .5s ease-in;
4400 -o-transition:color .5s ease-in;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004401 transition:color .5s ease-in;
4402}
4403.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004404 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004405}
4406.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004407 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004408}
4409.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004410 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004411}
4412.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004413 display:inline;
4414 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004415}
4416
4417
4418
4419
4420a.download-sdk {
4421 float:right;
4422 margin:-10px 0;
4423 height:30px;
4424 padding-top:4px;
4425 padding-bottom:0px;
4426}
4427
4428#nav-x {
4429 padding-top: 14px;
4430}
4431
Scott Main1d62fa82012-07-17 13:15:12 -07004432#nav-x .wrap {
4433 min-height:34px;
4434}
4435
Scott Maine4d8f1b2012-06-21 18:03:05 -07004436#nav-x .wrap,
4437#searchResults.wrap {
4438 max-width:940px;
4439 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004440}
4441
Scott Maina214d842012-07-16 17:14:40 -07004442#searchResults.wrap #leftSearchControl {
4443 min-height:700px
4444}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004445.nav-x {
4446 margin-left:0;
4447 margin-bottom:0;
4448}
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459/*
4460 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4461 */
4462
4463.jspContainer {
4464 overflow: hidden;
4465 position: relative;
4466}
4467
4468.jspPane {
4469 position: absolute;
Scott Main2d967c62013-03-11 09:21:07 -07004470 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004471}
4472
4473.jspVerticalBar {
4474 position: absolute;
4475 top: 0;
4476 right: 0;
4477 width: 4px;
4478 height: 100%;
4479 background: #f5f5f5;
4480}
4481
4482.jspHorizontalBar {
4483 position: absolute;
4484 bottom: 0;
4485 left: 0;
4486 width: 100%;
4487 height: 4px;
4488 background: #f5f5f5;
4489}
4490
4491.jspVerticalBar *,
4492.jspHorizontalBar * {
4493 margin: 0;
4494 padding: 0;
4495}
4496.jspCap {
4497 display: block;
4498}
4499
4500.jspVerticalBar .jspCap {
4501 height: 4px;
4502}
4503
4504.jspHorizontalBar .jspCap {
4505 width: 0;
4506 height: 100%;
4507}
4508
4509.jspHorizontalBar .jspCap {
4510 float: left;
4511}
4512
4513.jspTrack {
4514 position: relative;
4515}
4516
4517.jspDrag {
4518 background: #bbb;
4519 position: relative;
4520 top: 0;
4521 left: 0;
4522 cursor: pointer;
4523}
4524
4525.jspDrag:hover,
4526.jspDrag:active {
4527 border-color: #09c;
4528 background-color: #4cadcb;
4529 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4530 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4531 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4532 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4533 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4534 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Main98a2a712013-07-17 13:15:04 -07004535 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004536}
4537
4538.jspHorizontalBar .jspTrack,
4539.jspHorizontalBar .jspDrag {
4540 float: left;
4541 height: 100%;
4542}
4543
4544.jspArrow {
4545 background: #999;
4546 text-indent: -20000px;
4547 display: block;
4548 cursor: pointer;
4549}
4550
4551.jspArrow.jspDisabled {
4552 cursor: default;
4553 background: #ccc;
4554}
4555
4556.jspVerticalBar .jspArrow {
4557 height: 16px;
4558}
4559
4560.jspHorizontalBar .jspArrow {
4561 width: 16px;
4562 float: left;
4563 height: 100%;
4564}
4565
4566.jspVerticalBar .jspArrow:focus {
4567 outline: none;
4568}
4569
4570.jspCorner {
4571 float: left;
4572 height: 100%;
4573}
4574
4575/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4576* html .jspCorner {
4577 margin: 0 -3px 0 0;
4578}
4579/******* end of jscrollpane *********/
4580
4581
4582
4583
4584
4585/************ DEVELOP HOMEPAGE ******************/
4586
4587/* Slideshow */
4588.slideshow-develop {
4589 height: 300px;
4590 width: 940px;
4591 position: relative;
4592 overflow:hidden;
4593}
4594.slideshow-develop .frame {
4595 width: 940px;
4596 height: 300px;
4597}
4598.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004599 max-width:350px;
4600 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004601 margin:20px 0 0 90px;
4602 -webkit-transform: perspective(800px ) rotateY( 35deg );
4603 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4604 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4605 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4606}
4607.slideshow-develop img.play.no-shadow {
4608 box-shadow: none;
4609 -moz-box-shadow: none;
4610 -webkit-box-shadow: none;
4611}
4612.slideshow-develop img.play.no-transform {
4613 -webkit-transform: none;
4614}
4615.slideshow-develop a.slideshow-next {
4616 background: url(../images/arrow-right-develop.png);
4617}
4618.slideshow-develop a.slideshow-prev {
4619 background: url(../images/arrow-left-develop.png);
4620}
4621.slideshow-develop .content-right {
4622 float: left;
4623}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004624.slideshow-develop .content-right h2 {
4625 padding:0;
4626 margin-bottom:10px;
4627 border:none;
4628}
4629.slideshow-develop .item {
4630 height: 300px;
4631 width: 940px;
4632}
4633.slideshow-develop .pagination ul li.active {
4634 background-color: #F80;
4635}
4636.slideshow-develop .pagination ul li.active:hover {
4637 background-color: #F80;
4638}
Scott Main0e585702012-10-22 20:30:22 -07004639.slideshow-develop .item hr {
4640 margin:5px 0 10px;
4641}
4642.slideshow-develop .item p {
4643 margin:10px 0;
4644}
4645.slideshow-develop .item p.title-intro {
4646 position:absolute;
4647 margin:0;
4648}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004649
4650/* Feeds */
4651.feed ul {
4652 margin: 0;
4653}
4654.feed .feed-nav {
4655 height: 25px;
4656 border-bottom: 1px solid #CCC;
4657}
4658.feed .feed-nav li {
4659 list-style: none;
4660 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004661 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004662 margin-right: 25px;
4663 cursor: pointer;
4664}
4665.feed .feed-nav li.active {
4666 color: #000;
4667 border-bottom: 4px solid #F80;
4668}
4669.feed .feed-container {
4670 overflow: hidden;
4671 width: 460px;
4672}
4673.feed .feed-container .feed-frame {
4674 width: 1000px;
4675}
4676.feed .feed-container .feed-frame ul {
4677 float: left;
4678 width:460px;
4679}
4680.feed .feed-container .feed-frame ul ul {
4681 float: none;
4682 margin:10px 0 0 30px;
4683}
4684.feed .feed-container .feed-frame li {
4685 list-style: none;
4686 margin: 20px 0 20px 0;
4687 width: 460px;
4688 height:93px;
4689}
4690.feed .feed-container .feed-frame li.playlist {
4691 height:auto;
4692}
4693.feed .feed-container .feed-frame li.playlist a {
4694 height:93px;
4695 display:block;
4696}
4697.feed .feed-container .feed-frame li.more {
4698 height:20px;
4699 margin:10px 0 5px 5px;
4700}
4701.feed .feed-container .feed-frame li.more a {
4702 height:inherit;
4703}
4704.feed .feed-container .feed-frame li.playlist-video {
4705 list-style: none;
4706 margin: 0;
4707 width: 460px;
4708 height:55px;
4709 font-size:12px;
4710}
4711.feed .feed-container .feed-frame li.playlist-video a {
4712 height:45px;
4713 padding:5px;
4714}
4715.feed .feed-container .feed-frame li.playlist-video h5 {
4716 font-size:12px;
4717 line-height:13px;
4718 margin:0;
4719}
4720.feed .feed-container .feed-frame li.playlist-video p {
4721 margin:5px 0 0;
4722 line-height:15px;
4723}
4724.feed-container .feed-frame div.feed-image {
4725 float: left;
4726 border: 1px solid #999;
4727 margin:0 20px 0 0;
4728 width:122px;
4729 height:92px;
4730 background:url('../images/blog-default.png') no-repeat 0 0;
4731 background-size:180px;
4732}
4733#jd-content .feed .feed-container .feed-frame li img {
4734 float: left;
4735 border: 1px solid #999;
4736 margin:0 20px 0 0;
4737 width:122px;
4738 height:92px;
4739}
4740#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4741 width:inherit;
4742 height:inherit;
4743}
4744
4745.feed .feed-container .feed-frame li a,
4746.feed .feed-container .feed-frame li a:active {
4747 color:#555 !important;
4748}
4749
4750.feed .feed-container .feed-frame li a:hover,
4751.feed .feed-container .feed-frame li a:hover * {
4752 color:#7AA1B0 !important;
4753}
4754
4755/* Video player */
4756#player-wrapper {
4757 display:none;
4758 margin: -1px auto 0;
4759 position: relative;
4760 width: 940px;
4761 height: 0px;
4762}
4763#player-frame {
4764 background: #EFEFEF;
4765 border: 1px solid #CCC;
4766 padding: 0px 207px;
4767 z-index: 10; /* stay above marque, but below search suggestions */
4768 width: 525px;
4769 height: 330px;
4770 position: relative;
4771}
4772
4773
4774
4775/************ DISTRIBUTE HOMEPAGE ***************/
4776
4777.marquee {
4778 width: 760px;
4779}
4780.marquee .main-img {
4781 float: left;
4782 margin-top: 20px;
4783 width: 490px;
4784}
4785.marquee .copy {
4786 width: 270px;
4787 float: left;
4788 margin-top: 30px;
4789}
4790.distribute-features {
4791 margin: 0;
4792}
4793.distribute-features ul {
4794 margin: 0;
4795}
4796.distribute-features ul li {
4797 list-style: none;
4798 float: left;
4799 border-top: 1px solid #9C0;
4800 width: 220px;
4801 margin-right: 50px;
4802}
4803.distribute-features ul li.last {
4804 margin-right: 0px;
4805}
4806
Dirk Doughertye5862e82013-05-15 02:19:54 -07004807.distribute-features .distribute-link li a {
4808 color:red !important;
4809}
4810
4811.distribute-features .distribute-link li a,
4812.distribute-features .distribute-link li a:active {
4813 color:#555 !important;
4814}
4815
4816.distribute-features .distribute-link li a:hover,
4817.distribute-features .distribute-link li a:hover * {
4818 color:#7AA1B0 !important;
4819}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004820
Scott Main8fa53512012-11-30 20:16:42 -08004821
Scott Maine4d8f1b2012-06-21 18:03:05 -07004822/************ DEVELOP TOPIC CONTAINERS ************/
4823
4824.landing-banner,
4825.landing-docs {
Scott Mainafc4db32013-11-20 16:53:12 -08004826 margin:20px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004827}
Scott Mainafc4db32013-11-20 16:53:12 -08004828.landing-banner > div:first-child,
4829.landing-docs > div:first-child,
4830.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004831 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004832 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004833}
Scott Mainafc4db32013-11-20 16:53:12 -08004834.landing-banner.short > div {
4835 min-height:50px;
4836}
4837.landing-banner > div:last-child,
4838.landing-docs > div:last-child,
4839.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004840 margin-right:0;
4841}
4842
Scott Mainafc4db32013-11-20 16:53:12 -08004843.landing-banner > div > *:last-child {
4844 margin-bottom:0;
4845}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004846.landing-banner h1 {
4847 margin-top:0;
4848}
Scott Mainafc4db32013-11-20 16:53:12 -08004849.landing-docs,
4850.landing-banner {
4851 clear:both;
Scott Maine6850d22012-10-08 15:59:01 -07004852 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004853}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004854.landing-docs h3 {
4855 font-size:14px;
4856 line-height:21px;
4857 color:#555;
4858 text-transform:uppercase;
4859 border-bottom:1px solid #CCC;
4860 margin:0 0 20px;
4861}
4862.landing-docs a {
4863 color:#333 !important;
4864}
Robert Ly40e90992012-11-28 17:46:17 -08004865
Scott Maine4d8f1b2012-06-21 18:03:05 -07004866.landing-docs a:hover,
4867.landing-docs a:hover * {
4868 color:#7AA1B0 !important
4869}
4870
Robert Ly40e90992012-11-28 17:46:17 -08004871.landing-docs .normal-links a {
4872 color:#258aaf !important;
4873}
4874
Scott Maine4d8f1b2012-06-21 18:03:05 -07004875.plusone {
4876 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004877}
Scott Main9edfa6d2012-08-14 15:04:40 -07004878
4879
4880
Scott Mainafc4db32013-11-20 16:53:12 -08004881.next-docs {
4882 border-top:1px solid #ccc;
4883 margin:40px 0 0;
4884 padding:5px 0 0;
4885 clear:left;
4886 overflow:hidden;
4887}
4888.next-docs div:first-child {
4889 margin-left:0;
4890}
4891.next-docs div:last-child {
4892 margin-right:0;
4893}
4894
4895.next-docs h2 {
4896 font-size:14px;
4897 line-height:21px;
4898 color:#555;
4899 text-transform:uppercase;
4900 border-bottom:none;
4901 margin:0;
4902 padding:5px 0 0;
4903}
4904
4905
4906
Scott Main9edfa6d2012-08-14 15:04:40 -07004907/************* HOME/LANDING PAGE *****************/
4908
4909.slideshow-home {
4910 height: 500px;
4911 width: 940px;
4912 border-bottom: 1px solid #CCC;
4913 position: relative;
4914 margin: 0;
4915}
4916.slideshow-home .frame {
4917 width: 940px;
4918 height: 500px;
4919}
4920.slideshow-home .content-left {
4921 float: left;
4922 text-align: center;
4923 vertical-align: center;
4924 margin: 0 0 0 35px;
4925}
4926.slideshow-home .content-right {
4927 margin: 80px 0 0 0;
4928}
4929.slideshow-home .content-right p {
4930 margin-bottom: 10px;
4931}
4932.slideshow-home .content-right p:last-child {
4933 margin-top: 15px;
4934}
4935.slideshow-home .content-right h1 {
4936 padding:0;
4937}
4938.slideshow-home .item {
4939 height: 500px;
4940 width: 940px;
4941}
4942.home-sections {
4943 padding: 30px 20px 20px;
4944 margin: 20px 0;
4945 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4946}
4947.home-sections ul {
4948 margin: 0;
4949}
4950.home-sections ul li {
4951 float: left;
4952 display: block;
4953 list-style: none;
4954 width: 170px;
4955 height: 35px;
4956 border: 1px solid #ccc;
4957 background: white;
4958 margin-right: 10px;
4959 border-radius: 1px;
4960 -webkit-border-radius: 1px;
4961 -moz-border-radius: 1px;
4962 box-shadow: 1px 1px 5px #EEE;
4963 -webkit-box-shadow: 1px 1px 5px #EEE;
4964 -moz-box-shadow: 1px 1px 5px #EEE;
4965 background: white;
4966}
4967.home-sections ul li:hover {
4968 background: #F9F9F9;
4969 border: 1px solid #CCC;
4970}
4971.home-sections ul li a,
4972.home-sections ul li a:hover {
4973 font-weight: bold;
4974 margin-top: 8px;
4975 line-height: 18px;
4976 float: left;
4977 width: 100%;
4978 text-align: center;
4979 color: #09c !important;
4980}
4981.home-sections ul li a {
4982 font-weight: bold;
4983 margin-top: 8px;
4984 line-height: 18px;
4985 float: left;
4986 width:100%;
4987 text-align:center;
4988}
4989.home-sections ul li img {
4990 float: left;
4991 margin: -8px 0 0 10px;
4992}
4993.home-sections ul li.last {
4994 margin-right: 0px;
4995}
Scott Mainf5089842012-08-14 16:31:07 -07004996.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004997 margin-top: -40px;
4998}