blob: 8bb014308ae8963cbc7b74b546b07348a9bfd7e2 [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 */
6::-webkit-selection,
7::-moz-selection,
8::selection {
9 background-color: #0099cc;
10 color: #fff; }
11
12html, body {
13 height: 100%;
14 margin: 0;
15 padding: 0;
16 background-color:#F9F9F9;
17 -webkit-font-smoothing: antialiased;
18 /* prevent subpixel antialiasing, which thickens the text */
19 /* text-rendering: optimizeLegibility; */
20 /* turned off ligatures due to bug 5945455 */ }
21
22body {
23 color: #444;
24 font: 14px/21px Roboto, sans-serif;
25 font-weight: 400;
26 letter-spacing:.1;
27 padding:0 10px; }
28
29#page-container {
30 width: 940px;
31 margin: 0 40px; }
32
33#page-header {
34 height: 80px;
35 margin-bottom: 20px;
36 font-size: 48px;
37 line-height: 48px;
38 font-weight: 100;
39 padding-left: 10px; }
40 #page-header a {
41 display: block;
42 position: relative;
43 top: 20px;
44 text-decoration: none;
45 color: #555555 !important; }
46
47#main-row {
48 display: inline-block; }
49 #main-row:after {
50 content: ".";
51 display: block;
52 height: 0;
53 clear: both;
54 visibility: hidden; }
55 * html #main-row {
56 height: 1px; }
57
58#page-footer {
59 margin-left: 190px;
60 margin-top: 80px;
61 color: #999999;
62 padding-bottom: 40px;
63 font-size: 12px;
64 line-height: 15px; }
65 #page-footer a {
66 color: #777777; }
67 #page-footer #copyright {
68 margin-bottom: 10px; }
69
70#nav-container {
71 width: 160px;
72 min-height: 10px;
73 margin-right: 20px;
74 float: left; }
75
76#nav {
77 margin:0;
78 padding:0 0 30px;
79}
80
81#side-nav {
82 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
83 margin-bottom:1px;
84}
85#devdoc-nav {
86 outline:none;
87 width:auto;
88 margin: 20px 0 0; }
89
90#devdoc-nav h2 {
91 border:0;
92}
93
94#devdoc-nav.fixed {
95 position: fixed;
96 margin:0;
97 top: 20px; }
98
99#content {
100 width: 760px;
101 float: left; }
102
103a:hover,
104acronym:hover {
105 color: #7aa1b0 !important; }
106
107a:focus,
108a:active {
109 color: #33b5e5 !important; }
110
111img {
112 border: none; }
113#jd-content img {
114 margin-bottom:15px;
115}
116
117ul {
118 margin: 0;
119 padding: 0; }
120
121strong {
122 font-weight: 500; }
123
124em {
125 font-style: italic; }
126
127acronym {
128 border-bottom: 1px dotted #555555;
129 cursor: help; }
130
131acronym:hover {
132 border-bottom-color: #7aa1b0; }
133
134img.with-shadow,
135video.with-shadow {
136 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
137
138/* disclosures mixin */
139/* content layout */
140.layout-content-row {
141 display: inline-block;
142 margin-bottom: 10px; }
143 .layout-content-row:after {
144 content: ".";
145 display: block;
146 height: 0;
147 clear: both;
148 visibility: hidden; }
149 * html .layout-content-row {
150 height: 1px; }
151
152.layout-content-col {
153 float: left;
154 margin-left: 20px; }
155 .layout-content-col:first-child {
156 margin-left: 0; }
157 .layout-content-col h3,
158 .layout-content-col h4 {
159 margin-top:0; }
160
161.layout-content-col.span-1 {
162 width: 40px; }
163
164.layout-content-col.span-2 {
165 width: 100px; }
166
167.layout-content-col.span-3 {
168 width: 160px; }
169
170.layout-content-col.span-4 {
171 width: 220px; }
172
173.layout-content-col.span-5 {
174 width: 280px; }
175
176.layout-content-col.span-6 {
177 width: 340px; }
178
179.layout-content-col.span-7 {
180 width: 400px; }
181
182.layout-content-col.span-8 {
183 width: 460px; }
184
185.layout-content-col.span-9 {
186 width: 520px; }
187
188.layout-content-col.span-10 {
189 width: 580px; }
190
191.layout-content-col.span-11 {
192 width: 640px; }
193
194.layout-content-col.span-12 {
195 width: 700px; }
196
197.layout-content-col.span-13 {
198 width: 760px; }
199
200.vspace.size-1 {
201 height: 10px; }
202
203.vspace.size-2 {
204 height: 20px; }
205
206.vspace.size-3 {
207 height: 30px; }
208
209.vspace.size-4 {
210 height: 40px; }
211
212.vspace.size-5 {
213 height: 50px; }
214
215.vspace.size-6 {
216 height: 60px; }
217
218.vspace.size-7 {
219 height: 70px; }
220
221.vspace.size-8 {
222 height: 80px; }
223
224.vspace.size-9 {
225 height: 90px; }
226
227.vspace.size-10 {
228 height: 100px; }
229
230.vspace.size-11 {
231 height: 110px; }
232
233.vspace.size-12 {
234 height: 120px; }
235
236.vspace.size-13 {
237 height: 130px; }
238
239.vspace.size-14 {
240 height: 140px; }
241
242.vspace.size-15 {
243 height: 150px; }
244
245.vspace.size-16 {
246 height: 160px; }
247
248/* nav */
249#nav {
250 /* section header divs */
251 /* expanded section header divs */
252 /* sublinks */ }
253 #nav li {
254 list-style-type: none;
255 font-size: 14px;
256 margin:0;
257 padding:0;
258 line-height: 15px; }
259 #nav a {
260 color: #555555;
261 text-decoration: none; }
262 #nav .nav-section-header {
263 position: relative;
264 margin-bottom: 1px;
265 padding: 0 30px 0 0; }
266 #nav li.selected a, #nav li.selected > .nav-section-header > a {
267 color: #09C;
268 }
269 #nav li.selected ul li a {
270 /* don't highlight child items */
271 color: #555555; }
272 #nav .nav-section .nav-section .nav-section-header {
273 /* no white line between second level sections */
274 margin-bottom: 0; }
275 /* section header links */
276 #nav > li > div > a {
277 display: block;
278 color: #333333;
279 font-weight: 500;
280 padding: 10px 0 10px 10px; }
281 #nav .nav-section-header:after {
282 content: '';
283 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
284 width: 34px;
285 height: 34px;
286 display: block;
287 position: absolute;
288 top: 0;
289 right: 0; }
290 #nav .nav-section-header.empty:after {
291 display: none; }
292 /* nested nav headers */
293 #nav .nav-section .nav-section {
294 position: relative;
295 padding: 0;
296 margin: 0; }
297 #nav .nav-section li a {
298 /* first gen child (2nd level li) */
299 display:block;
300 font-weight: normal;
301 text-transform: none;
302 padding: 7px 5px 7px 10px;
303 }
304 #nav .nav-section li li a {
305 /* second gen child (3rd level li) */
306 padding: 5px 5px 5px 10px;
307 }
308 #nav li.expanded .nav-section-header {
309 background:#e9e9e9;
310 background: rgba(0, 0, 0, 0.05); }
311 #nav li.expanded li .nav-section-header {
312 background: transparent; }
313 #nav li.expanded li ul {
314 /* 3rd level ul */
315 padding:0 10px;
316 }
317 #nav li.expanded > .nav-section-header:after {
318 content: '';
319 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
320 width: 34px;
321 height: 34px; }
322 #nav li ul {
323 display:none;
324 overflow: hidden;
325 margin: 0; }
326 #nav li ul.animate-height-in {
327 -webkit-transition: height 0.25s ease-in;
328 -moz-transition: height 0.25s ease-in;
329 transition: height 0.25s ease-in; }
330 #nav li ul.animate-height-out {
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
334 #nav li ul li {
335 padding: 0; }
336 #nav li li li {
337 padding: 0; }
338 #nav li.expanded ul {
339 }
340 #nav li ul > li {
341 padding:0;
342 }
343 #nav li ul > li:last-child {
344 padding-bottom:5px;
345 }
346 #nav li.expanded ul > li {
347 background:#efefef;
348 background: rgba(0, 0, 0, 0.03); }
349 #nav li.expanded ul > li li {
350 background:inherit; }
351
352.new,
353.new-child {
354 font-size: .78em;
355 font-weight: bold;
356 color: #ff3d3d;
357 vertical-align:top;
358 white-space:nowrap;
359}
360
361/* content header */
362.content-header {
363 height: 30px;
364 margin:20px 0 25px;
365 padding:0 0 10px;}
366.content-header.just-links {
367 margin-bottom:0;
368 padding-bottom:0;}
369
370.content-header h1 {
371 color:#000;
372 margin:0;
373 border-bottom:0;
374 padding:0;
375}
376
377.content-footer {
378 border-top: 1px solid #ccc;
379 margin-top: 10px;
380 padding-top:10px;
381 height: 30px; }
382
383.content-footer .col-9 {
384 margin-left:0;
385}
386.content-footer .col-4 {
387 margin-right:0;
388}
389.content-footer.wrap {
390 width:940px;
391}
392
393.paging-links {
394 position: relative; }
395 .paging-links a {
396 position: absolute; }
397 .paging-links a,
398 .training-nav-top a {
399 font-size: 14px;
400 line-height: 30px;
401 color: #555555;
402 text-decoration: none;
403 text-transform: uppercase; }
404 .paging-links .prev-page-link,
405 .training-nav-top .prev-page-link {
406 left: -5px; }
407 .paging-links .prev-page-link:before,
408 .training-nav-top .prev-page-link:before {
409 content: '';
410 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
411 width: 10px;
412 height: 10px;
413 display: inline-block;
414 margin-right: 5px; }
415 .paging-links .next-page-link,
416 .training-nav-top .next-page-link,
417 .training-nav-top .start-class-link,
418 .training-nav-top .start-course-link {
419 right: 10px; }
420 .next-page-link:after,
421 .start-class-link:after,
422 .start-course-link:after,
423 .next-class-link:after {
424 content: '';
425 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
426 width: 10px;
427 height: 10px;
428 display: inline-block;
429 margin-left: 5px; }
430
431
432 .training-nav-top a {
433 display:block;
434 float:left;
435 width:108px;
436 height:28px;
437 padding: 8px 15px;
438 line-height:28px;
439 text-align:center;
440 border:1px solid #DADADA;
441 border-bottom:0;
442 }
443
444 .training-nav-top a.next-page-link {
445 border-left:0;
446 width:109px;
447 }
448
449 .training-nav-top a.disabled,
450 .content-footer a.disabled {
451 color:#999;
452 }
453
454 .training-nav-top a.disabled:hover,
455 .content-footer a.disabled:hover {
456 cursor:default;
457 color:#999 !important;
458 }
459
460 .training-nav-top a.start-class-link,
461 .training-nav-top a.start-course-link {
462 width:248px;
463 }
464
465 .hide {
466 display:none !important;
467 }
468
469 .content-footer.next-class {
470 display:block;
471 border:0;
472 margin-top:0;
473 padding-top:0;
474 }
475
476 .content-footer.next-class a.next-class-link {
477 display:block;
478 float:right;
479 text-transform:uppercase;
480 }
481
482/* content body */
483@-webkit-keyframes glowheader {
484 from {
485 background-color: #33b5e5;
486 color: #000;
487 border-bottom-color: #000; }
488
489 to {
490 background-color: transparent;
491 color: #33b5e5;
492 border-bottom-color: #33b5e5; } }
493
494@-moz-keyframes glowheader {
495 from {
496 background-color: #33b5e5;
497 color: #000;
498 border-bottom-color: #000; }
499
500 to {
501 background-color: transparent;
502 color: #33b5e5;
503 border-bottom-color: #33b5e5; } }
504
505@keyframes glowheader {
506 from {
507 background-color: #33b5e5;
508 color: #000;
509 border-bottom-color: #000; }
510
511 to {
512 background-color: transparent;
513 color: #33b5e5;
514 border-bottom-color: #33b5e5; } }
515
516h2:target,
517h3:target {
518 -webkit-animation-name: glowheader;
519 -moz-animation-name: glowheader;
520 animation-name: glowheader;
521 -webkit-animation-duration: 0.7s;
522 -moz-animation-duration: 0.7s;
523 animation-duration: 0.7s;
524 -webkit-animation-timing-function: ease-out;
525 -moz-animation-timing-function: ease-out;
526 animation-timing-function: ease-out; }
527
528.design ol h4 {
529 margin-bottom:0;
530}
531.design ol {
532 counter-reset: item; }
533 .design ol li {
534 font-size: 14px;
535 line-height: 20px;
536 list-style-type: none;
537 position: relative; }
538 .design ol li:before {
539 content: counter(item) ". ";
540 counter-increment: item;
541 position: absolute;
542 left: -20px;
543 top: 0; }
544 .design ol li.value-1:before {
545 content: "1. "; }
546 .design ol li.value-2:before {
547 content: "2. "; }
548 .design ol li.value-3:before {
549 content: "3. "; }
550 .design ol li.value-4:before {
551 content: "4. "; }
552 .design ol li.value-5:before {
553 content: "5. "; }
554 .design ol li.value-6:before {
555 content: "6. "; }
556 .design ol li.value-7:before {
557 content: "7. "; }
558 .design ol li.value-8:before {
559 content: "8. "; }
560 .design ol li.value-9:before {
561 content: "9. "; }
562 .design ol li.value-10:before {
563 content: "10. "; }
564.design .with-callouts ol li {
565 list-style-position: inside;
566 margin-left: 0; }
567 .design .with-callouts ol li:before {
568 display: inline;
569 left: -20px;
570 float: left;
571 width: 17px;
572 color: #33b5e5;
573 font-weight: 500; }
574
575/* special list items */
576li.no-bullet {
577 list-style-type: none !important; }
578li.no-bullet *{
579 margin:0; }
580
581.design li.with-icon {
582 position: relative;
583 margin-left: 20px;
584 min-height: 30px; }
585 .design li.with-icon p {
586 margin-left: 0 !important; }
587 .design li.with-icon:before {
588 position: absolute;
589 left: -40px;
590 top: 0;
591 content: '';
592 width: 30px;
593 height: 30px; }
594 .design li.with-icon.tablet:before {
595 background-image: url(../images/styles/ico_phone_tablet.png); }
596 .design li.with-icon.web:before {
597 background-image: url(../images/styles/ico_web.png); }
598 .design li.with-icon.action:before {
599 background-image: url(../images/styles/ico_action.png); }
600 .design li.with-icon.use:before {
601 background-image: url(../images/styles/ico_use.png); }
602
603/* figures and callouts */
604.figure {
605 position: relative; }
606 .figure.pad-below {
607 margin-bottom: 20px; }
608 .figure .figure-callout {
609 position: absolute;
610 color: #fff;
611 font-weight: 500;
612 font-size: 16px;
613 line-height: 23px;
614 text-align: center;
615 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
616 padding-right: 2px;
617 width: 30px;
618 height: 29px;
619 z-index: 1000; }
620 .figure .figure-callout.top {
621 top: -9px; }
622 .figure .figure-callout.right {
623 right: -5px; }
624
625.figure-caption {
626 margin: 0 10px 20px 0;
627 font-size: 14px;
628 line-height: 20px;
629 font-style: italic; }
630
631/* rows of figures */
632.figure-row {
633 font-size: 0;
634 line-height: 0;
635 /* to prevent space between figures */ }
636 .figure-row .figure {
637 display: inline-block;
638 vertical-align: top; }
639 .figure-row .figure + .figure {
640 margin-left: 10px;
641 /* reintroduce space between figures */ }
642
643/* video containers */
644.framed-galaxynexus-land-span-13 {
645 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
646scroll top left;
647 padding: 42px 122px 62px 126px;
648 overflow: hidden; }
649 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
650.framed-galaxynexus-land-span-13 img {
651 width: 512px;
652 height: 286px; }
653
654.framed-galaxynexus-port-span-9 {
655 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
656scroll top left;
657 padding: 95px 122px 107px 124px;
658 overflow: hidden; }
659 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
660.framed-galaxynexus-port-span-9 img {
661 width: 274px;
662 height: 488px; }
663
664.framed-galaxynexus-port-span-5 {
665 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
666scroll top left;
667 padding: 75px 31px 76px 33px;
668 overflow: hidden; }
669 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
670.framed-galaxynexus-port-span-5 img {
671 width: 216px;
672 height: 384px; }
673
674/* landing page disclosures */
675.landing-page-link {
676 text-decoration: none;
677 font-weight: 500;
678 color: #333333; }
679 .landing-page-link:after {
680 content: '';
681 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
682 width: 10px;
683 height: 10px;
684 display: inline-block;
685 margin-left: 5px; }
686
687/* tooltips */
688.tooltip-box {
689 position: absolute;
690 background-color: rgba(0, 0, 0, 0.9);
691 border-radius: 2px;
692 font-size: 14px;
693 line-height: 20px;
694 color: #fff;
695 padding: 6px 10px;
696 max-width: 250px;
697 z-index: 10000; }
698 .tooltip-box.below:after {
699 position: absolute;
700 content: '';
701 line-height: 0;
702 display: block;
703 top: -10px;
704 left: 5px;
705 border: 5px solid transparent;
706 border-bottom-color: rgba(0, 0, 0, 0.9); }
707
708/* video note */
709.video-instructions {
710 margin-top: 10px;
711 margin-bottom: 10px; }
712 .video-instructions:before {
713 content: '';
714 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
715 display: inline-block;
716 width: 12px;
717 height: 12px;
718 margin-right: 8px; }
719 .video-instructions:after {
720 content: 'Click device screen to replay movie.'; }
721
722/* download buttons */
723.download-button {
724 display: block;
725 margin-bottom: 5px;
726 text-decoration: none;
727 background-color: #33b5e5;
728 color: #fff !important;
729 font-weight: 500;
730 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
731 padding: 6px 12px;
732 border-radius: 2px; }
733 .download-button:hover, .download-button:focus {
734 background-color: #0099cc;
735 color: #fff !important; }
736 .download-button:active {
737 background-color: #006699; }
738
739/* UI tables and other things found in Writing style and Settings pattern */
740.ui-table {
741 width: 100%;
742 background-color: #282828;
743 color: #fff;
744 border-radius: 2px;
745 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
746 border-collapse: separate; }
747 .ui-table th,
748 .ui-table td {
749 padding: 5px 10px;
750 background-color: inherit;
751 border:0;}
752 .ui-table thead th {
753 font-weight: bold; }
754 .ui-table tfoot td {
755 border-top: 1px solid #494949;
756 border-right: 1px solid #494949;
757 text-align: center; }
758 .ui-table tfoot td:last-child {
759 border-right: 0; }
760
761.layout-with-list-item-margins {
762 margin-left: 30px !important; }
763
764.emulate-content-left-padding {
765 margin-left: 10px; }
766
767.do-dont-label {
768 margin-bottom: 10px;
769 padding-left: 20px;
770 background: transparent none no-repeat scroll 0px 3px; }
771 .do-dont-label.bad {
772 background-image: url(../images/styles/ico_wrong.png); }
773 .do-dont-label.good {
774 background-image: url(../images/styles/ico_good.png); }
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794/***** PREVIOUSLY style.css ******************/
795
796
797
798
799
800@media screen, projection, print {
801[dir='rtl'] {
802 direction: rtl;
803}
804html {
805 line-height: 20px;
806}
807pre, table, input, textarea, code {
808 font-size: 1em;
809}
810address, abbr, cite {
811 font-style: normal;
812}
813[dir='rtl'] th {
814 text-align: right;
815}
816html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
817html[lang^=zh] blockquote, html[lang^=zh] q {
818 font-style: normal;
819}
820q {
821 font-style: italic;
822}
823fieldset, iframe, img {
824 border: 0;
825}
826img {
827 -ms-interpolation-mode: bicubic;
828 vertical-align: middle;
829 max-width: 100%;
830}
831q {
832 quotes: none;
833}
834sup, sub {
835 font-size: 11px;
836 line-height: 0;
837}
838}
839
840@media screen, projection {
841
842table, fieldset {
843 margin: 0;
844}
845h1 {
846 color:#333;
847 font-size: 22px;
848 margin: 20px 0 20px;
849 padding:0 0 10px;
850}
851h1, h2 {
852 line-height: 32px;
853}
854h1.short {
855 margin-right:320px;
856}
857h1.short {
858 margin-right:320px;
859}
860h1.super {
861 font-size: 37px;
862}
863h2 {
864 color:#333;
865 font-size: 20px;
866 margin: 20px 0 20px;
867 padding:0;
868}
869h3 {
870 color:#333;
871 font-size: 18px;
872}
873h3, h4 {
874 color:#333;
875 line-height: 20px;
876 margin: 10px 0;
877}
878h4 {
879 font-size: 16px;
880}
881h5 {
882 font-size: 14px;
883}
884h5, h6 {
885 margin: 5px 0;
886}
887h6 {
888 font-size: 12px;
889}
890hr { /* applied to the bottom of h2 elements */
891 height: 1px;
892 margin: 5px 0 20px;
893 border: 0;
894 background: #ccc;
895}
896p, pre, table, form {
897 margin: 0 0 15px;
898}
899small {
900 font-size: 11.5px;
901 color: #000;
902}
903ul, ol {
904 margin: 0 0 15px 18px;
905 padding: 0;
906}
907[dir='rtl'] ul, [dir='rtl'] ol {
908 margin: 10px 30px 10px 10px;
909}
910ul ul, ul ol, ol ul, ol ol {
911 margin-bottom: 0;
912 margin-top: 0;
913}
914li {
915 margin:0 0 4px;
916}
917dd {
918 margin:0 0 10px 30px;
919}
920dd p {
921 margin:10px 0 0;
922}
923ul p,
924ol p {
925 margin:10px 0 0;
926}
927pre strong, pre b, a strong, a b, a code {
928 color: inherit;
929}
930pre, code {
931 color: #060;
932 font: 14px/1.5 'courier new', courier, monospace;
933}
934code {
935 font-weight:bold;
936}
937
938legend {
939 display: none;
940}
941a:link, a:visited {
942 color: #258aaf;
943 text-decoration: none;
944}
945a:focus, a:hover, a:active {
946 color: #33B5E5;
947 text-decoration: none;
948}
949strong, b {
950 font-weight:bold;
951 color: #444;
952}
953table {
954 border-collapse: collapse;
955 border-spacing: 0;
956 border:0;
957 margin: .5em 1em 1em 0;
958 width:100%; /* consistent table widths; within IE's quirks */
959 background-color:#f7f7f7;
960}
961th, td {
962 padding: 4px 12px;
963 vertical-align: top;
964 text-align: left;
965}
966td {
967 background-color:inherit;
968 border:solid 1px #DDD;
969}
970th {
971 background-color: #999;
972 color: #fff;
973 border:solid 1px #DDD;
974 font-weight: normal;
975}
976tr:first-of-type th:first-of-type:empty {
977 visibility: hidden;
978}
979/* --------------------------------------------------------------------------
980Footer
981*/
982.line {
983 clear: both;
984 background: #acbc00;
985 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
986 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
987color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
988 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
989 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
990 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
991 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
992 height: 2px;
993 margin-top: 150px;
994 position: relative;
995 z-index: 11;
996}
997#footer {
998 font-size:11px;
999 clear: both;
1000 color: #999;
1001 padding: 15px 0;
1002 margin-top:10px;
1003 width:auto;
1004}
1005#footer-local ul {
1006 list-style: none;
1007 margin: 5px 0 30px 0;
1008}
1009#footer-local li {
1010 display: inline;
1011}
1012#footer-local li+li:before {
1013 content: '|';
1014 padding: 0 3px;
1015 color: #e5e5e5;
1016}
1017#footer-global {
1018 padding: 10px 15px;
1019 background: #f5f5f5;
1020}
1021#footer-global {
1022 border-top: 1px solid #ebebeb;
1023 font-size: 11.5px;
1024 line-height: 1.8;
1025 list-style: none;
1026}
1027#footer-global ul {
1028 margin: 0;
1029}
1030#footer-global li {
1031 display: inline;
1032 font-weight: bold;
1033}
1034#footer-global li+li:before {
1035 content: '¬?';
1036 padding: 0 3px;
1037}
1038* html #footer-global li {
1039 margin: 0 13px 0 0;
1040}
1041* [dir='rtl'] #footer-global li {
1042 margin: 0 0 0 13px;
1043}
1044*+html #footer-global li {
1045 margin: 0 13px 0 0;
1046}
1047*+[dir='rtl'] #footer-global li {
1048 margin: 0 0 0 13px;
1049}
1050#footer-global li a {
1051 font-weight: normal;
1052}
1053.locales {
1054 margin: 10px 0 0 0px;
1055}
1056[dir='rtl'] .locales {
1057 background-position: right center;
1058 float: left;
1059 padding: 0 24px 0 0;
1060}
1061.locales form {
1062 margin: 0;
1063}
1064.locales select, .sites select {
1065 line-height: 3.08;
1066 margin: 0px 0;
1067 border: solid 1px #EBEBEB;
1068 -webkit-appearance: none;
1069 background: white url('../images/arrows-up-down.png') right center no-repeat;
1070 height: 30px;
1071 color: #444;
1072 line-height: normal;
1073 padding: 5px;
1074 width: 230px;
1075}
1076}
1077
1078/* =============================================================================
1079 Print Only
1080 ========================================================================== */
1081@media print {
1082a {
1083 color: inherit;
1084}
1085.nav-x, .nav-y {
1086 display: none;
1087}
1088.str { color: #060; }
1089.kwd { color: #006; font-weight: bold; }
1090.com { color: #600; font-style: italic; }
1091.typ { color: #404; font-weight: bold; }
1092.lit { color: #044; }
1093.pun { color: #440; }
1094.pln { color: #000; }
1095.tag { color: #006; font-weight: bold; }
1096.atn { color: #404; }
1097.atv { color: #060; }
1098}
1099
1100/* =============================================================================
1101 Columns
1102 ========================================================================== */
1103
1104@media screen, projection, print {
1105.full {
1106 padding: 2.5em 0;
1107 border-top: solid 1px #ddd;
1108 border-bottom: solid 1px #ddd;
1109 background: #f7f7f7;
1110}
1111.wrap {
1112 margin: 0 auto;
1113 width: 940px;
1114 clear: both;
1115}
1116.cols {
1117 height: 1%;
1118 margin: 0 -1.533742331288343558282%;
1119 width: 103.06748466257669%}
1120*+html .cols {
1121 margin-bottom: 20px;
1122}
1123.cols:after {
1124 clear: both;
1125 content: ' ';
1126 display: block;
1127 height: 0;
1128 visibility: hidden;
1129}
1130.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1131.col-13, .col-14, .col-15, .col-16 {
1132 display: inline;
1133 float: left;
1134 margin-left: 10px;
1135 margin-right: 10px;
1136}
1137/*
1138* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1139.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1140 margin: 0;
1141 padding: 0 1.4% 20px;
1142}
1143[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1144[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1145[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1146 float: right;
1147}
1148*/
1149.col-1 { width: 40px }
1150.col-2 { width: 100px }
1151.col-3 { width: 160px }
1152.col-4 { width: 220px }
1153.col-5 { width: 280px }
1154.col-6 { width: 340px }
1155.col-7 { width: 400px }
1156.col-8 { width: 460px }
1157.col-9 { width: 520px }
1158.col-10 { width: 580px }
1159.col-11 { width: 640px }
1160.col-12 { width: 700px }
1161.col-13 { width: 760px }
1162.col-14 { width: 820px }
1163.col-15 { width: 880px }
1164.col-16 { width: 940px }
1165}
1166
1167.col-right {
1168 margin-right:0px;
1169}
1170
1171@media screen and (max-width:772px) {
1172.col-5, .col-6, .col-7 {
1173 clear: both;
1174 width: 97.0238096%}
1175}
1176
1177/* =============================================================================
1178 Layout
1179 ========================================================================== */
1180@media screen, projection, print {
1181
1182/* --------------------------------------------------------------------------
1183Header, Login, Nav-X, Search
1184*/
1185#header {
1186 padding: 2.2em 0 0.2em 0;
1187}
1188#header:before, #header:after {
1189 content: "";
1190 display: table;
1191 clear: both
1192}
1193.logo, .nav-x {
1194 float: left;
1195}
1196.nav-x {
1197 margin-top: -2px;
1198 list-style-type: none;
1199}
1200.nav-x a {
1201 color: #333;
1202 font-size: 16px;
1203}
1204.design a.selected {
1205 color: #33b5e5;
1206}
1207.develop a.selected {
1208 color: #F80;
1209}
1210.distribute a.selected {
1211 color: #9C0;
1212}
1213
1214
1215
1216.nav-x li {
1217 display: inline;
1218 margin-right: 45px;
1219}
1220.search {
1221 float: right;
1222 position: relative;
1223 width: 220px
1224}
1225.search .bottom, .search .left, .search .right {
1226 position: absolute;
1227 background-color: #a3a3a3;
1228}
1229.search .bottom {
1230 width: 220px;
1231 height: 1px;
1232 top: 24px;
1233 left: 0
1234}
1235.search .left, .search .right {
1236 height: 5px;
1237 width: 1px
1238}
1239.search .left { top: 19px; left: 0 }
1240.search .right { top: 19px; right: 0 }
1241.search form {
1242 float: left;
1243 margin-top: 2px;
1244 width: inherit;
1245}
1246.search .close,
1247#player-frame .close {
1248 position: absolute;
1249 right: 8px;
1250 bottom: 4px;
1251 width: 16px;
1252 height: 16px;
1253 margin: 0;
1254 text-indent: -1000em;
1255 background: url(../images/close.png) no-repeat 0 0;
1256 z-index:9999;
1257}
1258.search .close:hover, .search .close:focus,
1259#player-frame .close:hover, #player-frame .close:focus {
1260 background-position: -16px 0;
1261 cursor:pointer;
1262}
1263#player-frame .close {
1264 top: 6px;
1265}
1266.search form input {
1267 color: #999;
1268 font-size: 1em;
1269 width: inherit;
1270 border: none;
1271 margin: 0;
1272 padding:0 0 0 6px;
1273 z-index: 1500;
1274 background-color: transparent
1275}
1276.search:hover .bottom, .search:hover .left, .search:hover .right {
1277 background-color: #33b5e5;
1278}
1279.search:hover .icon {
1280 background-position: -8px 0
1281}
1282.search form input:focus {
1283 color: #444;
1284 font-weight: bold;
1285 outline:0;
1286}
1287/* Search Dropdown */
1288.search-dropdown {
1289 padding: 15px;
1290 width: 192px;
1291 border: solid 1px #c5c5c5;
1292 background: #fff;
1293 position: absolute;
1294 top: 35px;
1295 left: 0;
1296 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1297 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1298 box-shadow: 0 0 10px rgba(0,0,0,0.2)
1299}
1300.search-dropdown ul, .search-dropdown ul li {
1301 list-style-type: none;
1302 margin: 0;
1303 padding: 0
1304}
1305.search-dropdown ul li {
1306 clear: both
1307}
1308.search-dropdown img {
1309 float: left;
1310 margin: 0 10px 10px 0
1311}
1312.search-dropdown h6 {
1313 color: #444;
1314 margin: 0;
1315 line-height: normal
1316}
1317.search-dropdown .desc {
1318 color: #999;
1319 font-size: 11.5px;
1320 line-height: normal;
1321 margin: 0;
1322}
1323.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
1324 color: #33b5e5
1325}
1326/* --------------------------------------------------------------------------
1327Buttons
1328*/
1329.button, a.button, .button-secondary, a.button-secondary {
1330 border-image: initial;
1331 -webkit-border-radius: 2px;
1332 -moz-border-radius: 2px;
1333 border-radius: 2px;
1334 cursor: pointer;
1335}
1336.button, a.button {
1337 background-color: #09c;
1338 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1339 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1340 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1341 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1342 background-image: -o-linear-gradient(top, #2faddb, #09c);
1343 background-image: linear-gradient(top, #2faddb, #09c);
1344 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1345 border: 1px solid #3990ab;
1346 color: #fff;
1347}
1348.button-secondary, a.button-secondary {
1349 background-color: #f3f3f3;
1350 border: 1px solid #dcdcdc;
1351 color: #444;
1352}
1353a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
1354 height: 28px;
1355 line-height: 28px;
1356 margin-right: 16px;
1357 font-weight: 400;
1358 min-width: 54px;
1359 outline: 0;
1360 padding: 8px 15px;
1361 text-align: center;
1362}
1363.button, .button-secondary {
1364 height: 34px;
1365 line-height: 34px;
1366 margin-right: 16px;
1367 font-weight: 400;
1368 min-width: 54px;
1369 outline: 0;
1370 padding: 0 15px;
1371 text-align: center;
1372}
1373.button:hover, a.button:hover {
1374 border-color: #09c;
1375 background-color: #4cadcb;
1376 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1377 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1378 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1379 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1380 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1381 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1382 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1383EndColorStr='#4cadcb',GradientType=0);
1384 color: #fff !important;
1385}
1386.button:active, a.button:active {
1387 background-color: #1e799a;
1388 background-image: none;
1389 border-color: #30b7e6;
1390}
1391.button-secondary:hover, a.button-secondary:hover {
1392 border-color: #dbdbdb;
1393 background-color: #f3f3f3;
1394 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1395 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1396 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1397 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1398 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1399 background-image: linear-gradient(top, #f9f9f9, #ececec);
1400 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1401EndColorStr='#ececec');
1402 color: #33B5E5 !important;
1403}
1404.button-secondary:active, a.button-secondary:active {
1405 border-color: #dadada;
1406 background: #ebebeb; /* Old browsers */
1407 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1408 background:
1409url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1410Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1411eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1412CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1413eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1414YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1415CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1416CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1417CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1418CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1419R3JhZGllbnQ+
1420CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1421Lz4KPC9zdmc+);
1422 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
1423#ffffff 100%); /* FF3.6+ */
1424 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
1425color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1426/* Chrome,Safari4+ */
1427 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
142890%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
1429 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1430100%); /* Opera 11.10+ */
1431 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1432100%); /* IE10+ */
1433 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1434100%); /* W3C */
1435 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
1436endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
1437 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1438 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1439 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1440 color: #258AAF !important;
1441}
1442.button.big {
1443 font-size:20px;
1444 display:inline-block;
1445}
1446
1447.button.disabled,
1448.button.disabled:hover,
1449.button.disabled:active {
1450 background:#ebebeb;
1451 color:#999;
1452 border-color:#999;
1453 cursor:default;
1454}
1455
1456.training-nav-top a.button-secondary,
1457.training-nav-bottom a.button-secondary {
1458 display:block;
1459 float:left;
1460 margin:0;
1461 width:130px;
1462 text-transform:uppercase;
1463 font-weight:bold;
1464
1465 background-color: #f3f3f3;
1466 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1467 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1468 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1469 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1470 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1471 background-image: linear-gradient(top, #f9f9f9, #ececec);
1472 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1473EndColorStr='#ececec');
1474 color: #33B5E5;
1475}
1476
1477.training-nav-top a.button-secondary:hover,
1478.training-nav-bottom a.button-secondary:hover {
1479 background-color: #09c;
1480 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1481 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1482 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1483 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1484 background-image: -o-linear-gradient(top, #2faddb, #09c);
1485 background-image: linear-gradient(top, #2faddb, #09c);
1486 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1487 border: 1px solid #3990ab;
1488 color: #fff !important;
1489}
1490
1491.training-nav-top a.button-secondary.last,
1492.training-nav-bottom a.button-secondary.last {
1493 border-left:0;
1494}
1495
1496.training-nav-top a.button-secondary.double-size,
1497.training-nav-bottom a.button-secondary.double-size {
1498 width:291px;
1499}
1500
1501.training-nav-top,
1502.training-nav-bottom {
1503 float:right;
1504 margin:0 0 0 20px;
1505}
1506
1507.training-nav-bottom {
1508 padding:0 0 20px;
1509}
1510
1511#tb-wrapper,
1512#qv-wrapper {
1513 float:right;
1514 clear:right;
1515 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1516 padding:0 0 20px;
1517}
1518
1519#tb,
1520#qv {
1521 font-size:13px;
1522 line-height:18px;
1523 width:238px;
1524 border:1px solid #ccc;
1525 float:right;
1526}
1527
1528#tb {
1529 width:278px;
1530}
1531
1532#tb h2,
1533#qv h2 {
1534 margin:10px 15px;
1535 padding:0;
1536 text-transform:uppercase;
1537 border-bottom:1px solid gainsboro;
1538}
1539
1540#tb *,
1541#qv * {
1542 font-size:inherit;
1543}
1544
1545#tb .download-box {
1546 padding:0 0 0 15px;
1547}
1548
1549#tb .download-box .filename {
1550 font-size:11px;
1551 margin:4px 4px 10px;
1552 color:#666;
1553}
1554
1555
1556/* Dev guide quicknav */
1557
1558.sidebox-wrapper {
1559 float:right;
1560 clear:right;
1561 margin:0 0 0 20px;
1562 padding:0 0 20px;
1563}
1564
1565.sidebox {
1566 width:226px;
1567 font-size:13px;
1568 line-height:18px;
1569 border-left:4px solid #99CC00;
1570 float:right;
1571 padding:0 0 0 10px;
1572}
1573
1574.sidebox h2,
1575.sidebox h3,
1576.sidebox h4,
1577.sidebox h5 {
1578 font-weight:bold;
1579 margin:0 0 10px;
1580}
1581
1582.sidebox * {
1583 font-size:inherit;
1584}
1585
1586#tb ol,
1587#tb ul,
1588#qv ul {
1589 margin:0 15px 10px 35px;
1590}
1591
1592#qv ol {
1593 list-style:none;
1594 margin:0 15px 15px;
1595 font-size:inherit;
1596 line-height:inherit;
1597}
1598
1599#tb ol ol,
1600#tb ul ul,
1601#qv ol ol,
1602#qv ul ul,
1603.sidebox ol ol,
1604.sidebox ul ul {
1605 margin-bottom:0;
1606}
1607
1608#qv ol ol {
1609 margin:3px 0 3px 15px;
1610}
1611
1612.sidebox p,
1613#qv p,
1614#tb p {
1615 margin: 0 0 10px;
1616}
1617
1618
1619/* --------------------------------------------------------------------------
1620Form
1621*/
1622.article form {
1623 margin: 0 0 20px;
1624}
1625.article form .form-required {
1626 color: #dd4b39;
1627}
1628.article form fieldset {
1629 margin: 0 0 20px;
1630 padding: 0;
1631}
1632.article form legend {
1633 display: block;
1634 line-height: 1.5;
1635 margin: 0;
1636 padding: 0;
1637}
1638/*
1639.article form ol, .article form ul {
1640 margin: 0 0 0 1em;
1641 padding: 0 0 0 1em;
1642}
1643[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1644 margin: 0 1em 0 0;
1645 padding: 0 1em 0 0;
1646}
1647.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1648ul ul {
1649 list-style: none;
1650 margin: 0;
1651 padding: 0;
1652}
1653.article form li {
1654 margin: 0 0 20px;
1655}
1656.article form li li {
1657 margin: 0 0 5px;
1658}
1659*/
1660.article form label {
1661 display: block;
1662 margin: 0 0 5px;
1663 padding: 0;
1664}
1665.article form input[type='text'], .article form select, .article form textarea, .article form
1666.checkbox-group, .article form .radio-group {
1667 margin-bottom: 15px;
1668}
1669.checkbox-group input {
1670 width: 13px;
1671 height: 13px;
1672 background: #fff;
1673 border: solid 1px #c6c6c6;
1674 float: left;
1675}
1676.article form .checkbox-group, .article form .radio-group {
1677 display: block
1678}
1679.article form select {
1680 border: solid 1px #ebebeb;
1681 border-top-color: #ddd;
1682 -webkit-appearance: none;
1683 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1684 height: 30px;
1685 color: #444;
1686 line-height: normal;
1687 padding: 5px;
1688 width: 130px;
1689}
1690
1691.article form .browse .browse-msg {
1692 font-size: 11.5px;
1693}
1694.article form .browse .button-secondary {
1695 height: auto;
1696 line-height: 25px;
1697 font-size: 11px;
1698 padding: 0 8px;
1699 margin: 0 10px 15px 0;
1700}
1701.article form input[type='text'], .article form textarea {
1702 border: 1px solid #ebebeb;
1703 border-top-color: #dcdcdc;
1704 color: #444;
1705 line-height: normal;
1706 padding: 6px 10px;
1707 width: 300px;
1708}
1709.article form textarea {
1710 height: 150px;
1711}
1712.article form input[type='text']:focus, .article form textarea:focus {
1713 border-color: #33B5E5;
1714 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1715 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1716 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1717 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1718 outline: 0;
1719}
1720.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1721 color: #999;
1722}
1723.article form input[type='text'][disabled], .article form textarea[disabled] {
1724 background-color: #ebebeb;
1725}
1726form .form-error input[type='text'], form .form-error textarea {
1727 border-color: #dd4b39;
1728 margin-right: 20px;
1729}
1730.aside {
1731 -moz-border-radius: 2px;
1732 -webkit-border-radius: 2px;
1733 border-radius: 2px;
1734 margin: 10px 0;
1735 padding: 20px;
1736 color: #666;
1737 position: relative;
1738 background: #f9f9f9;
1739}
1740/*
1741.aside, .notification, .promo {
1742 -moz-border-radius: 2px;
1743 -webkit-border-radius: 2px;
1744 border-radius: 2px;
1745 margin: 10px 0;
1746 padding: 10px;
1747 position: relative;
1748}
1749.aside>:first-child, .notification>:first-child, .promo>:first-child {
1750 margin-top: 0;
1751}
1752.aside>:last-child, .notification>:last-child, .promo>:last-child {
1753 margin-bottom: 0;
1754}
1755.aside {
1756 background: #f9f9f9;
1757}
1758.notification {
1759 background: #fffbe4;
1760 border-color: #f8f6e6;
1761}
1762.promo {
1763 background: #f6f9ff;
1764 border-color: #eff2f9;
1765}
1766*/
1767/* --------------------------------------------------------------------------
1768Code Style
1769*/
1770pre {
1771 margin: 1em 0;
1772 padding: 1em;
1773 overflow: auto;
1774 border: solid 1px #ddd;
1775 background: #f7f7f7;
1776}
1777.str { color: #080; }
1778.kwd { color: #008; }
1779.com { color: #800; }
1780.typ { color: #606; }
1781.lit { color: #066; }
1782.pun { color: #660; }
1783.pln { color: #000; }
1784.tag { color: #008; }
1785.atn { color: #828; }
1786.atv { color: #080; }
1787.dec { color: #606; }
1788
1789/* --------------------------------------------------------------------------
1790Three-Pane
1791*/
1792/* Package Nav & Classes Nav */
1793.three-pane {
1794 position: relative;
1795 border-top: solid 1px #ebebeb;
1796}
1797#packages-nav .js-pane,
1798#classes-nav .js-pane {
1799 overflow:visible;
1800}
1801#packages-nav {
1802 height:270px;
1803 max-height: inherit;
1804 overflow: hidden;
1805 position: relative;
1806}
1807#classes-nav {
1808 overflow: hidden;
1809 position: relative;
1810}
1811#packages-nav ul, #classes-nav ul {
1812 list-style-type: none;
1813 margin: 10px 0 20px 0;
1814 padding: 0;
1815}
1816#classes-nav li {
1817 font-weight: bold;
1818 margin: 5px 0;
1819}
1820#packages-nav li,
1821#classes-nav li li {
1822 margin: 0;
1823}
1824#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1825#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
1826 padding: 0 0 0 4px;
1827}
1828#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1829#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
1830#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
1831 color: #444;
1832 font-weight: normal;
1833}
1834#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1835#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
1836 display: block;
1837}
1838#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
1839a:visited,
1840#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
1841a:visited,
1842#nav-tree li div.selected {
1843 font-weight: 500;
1844 color: #0099cc;
1845 background-color:#fff; }
1846 #packages-nav li.selected ul li a,
1847 #classes-nav li.selected ul li a {
1848 /* don't highlight child items */
1849 color: #555555; }
1850#nav-tree li div.selected a {
1851 font-weight: 500;
1852 color: #0099cc;
1853}
1854#nav-swap {
1855 height:30px;
1856 border-top:1px solid #ccc;
1857}
1858#nav-swap a {
1859 display:inline-block;
1860 height:100%;
1861 color: #444;
1862 font-size: 12px;
1863 padding: 5px 0 5px 5px;
1864}
1865
1866#nav-swap .fullscreen {
1867 float: right;
1868 width: 24px;
1869 height: 24px;
1870 text-indent: -1000em;
1871 padding:0;
1872 margin:3px 5px 0;
1873 background: url(../images/fullscreen.png) no-repeat -24px 0;
1874}
1875#nav-swap .fullscreen.disabled {
1876 background-position: 0 0;
1877}
1878#nav-swap .fullscreen:hover,
1879#nav-swap .fullscreen:focus {
1880 cursor:pointer;
1881}
1882
1883
1884/* nav tree */
1885#side-nav, #devdoc-nav, #swapper,
1886#nav-tree, #tree-list {
1887 overflow:hidden;
1888 margin-left:0;
1889}
1890
1891#nav-tree ul {
1892 list-style:none;
1893 padding:0;
1894 margin:10px 0;
1895}
1896
1897#nav-tree ul li div {
1898 padding:0 0 0 4px;
1899}
1900
1901#side-nav #nav-tree ul li a,
1902#side-nav #nav-tree ul li span.no-children {
1903 padding: 0;
1904 margin: 0;
1905}
1906
1907#nav-tree .plus {
1908 margin: 0 3px 0 0;
1909}
1910
1911#nav-tree ul ul {
1912 list-style: none;
1913 margin: 0;
1914 padding: 0 0 0 0;
1915}
1916
1917#nav-tree ul li {
1918 margin: 0;
1919 padding: 0 0 0 0;
1920 white-space: nowrap;
1921}
1922
1923#nav-tree .children_ul {
1924 padding:0;
1925 margin:0;
1926}
1927#nav-tree .children_ul li div {
1928 padding:0 0 0 10px;
1929}
1930#nav-tree .children_ul .children_ul li div {
1931 padding:0 0 0 20px;
1932}
1933
1934#nav-tree a.nolink {
1935 color: #444;
1936 text-decoration: none;
1937}
1938
1939#nav-tree span.label {
1940 width: 100%;
1941}
1942
1943#nav-tree {
1944 overflow-x: auto;
1945 overflow-y: scroll;
1946 outline:0;
1947}
1948
1949
1950/* Content */
1951#doc-col {
1952 margin-right:0;
1953}
1954#doc-content-container {
1955 margin-left: 291px
1956}
1957#doc-header, #doc-content {
1958 padding: 1em 2em;
1959}
1960#doc-header {
1961 background: #f7f7f7;
1962}
1963#doc-header h1 {
1964 line-height: 0;
1965 margin-bottom: 15px;
1966}
1967#api-info-block {
1968 float: right;
1969 font-weight: bold;
1970}
1971#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
1972 color: #444;
1973}
1974#api-info-block a:hover, #api-info-block a:focus {
1975 color: #33B5E5;
1976}
1977#api-nav-header {
1978 height:19px; /* plus 16px padding = 35; same as #nav li */
1979 font-size:14px;
1980 padding: 8px 0;
1981 margin: 0;
1982 border-bottom: 1px solid #CCC;
1983 background:#e9e9e9;
1984 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
1985
1986}
1987#api-nav-title {
1988 padding:0 5px;
1989 white-space:nowrap;
1990}
1991
1992#api-level-toggle {
1993 float:right;
1994 padding:0 5px;
1995}
1996
1997#api-level-toggle label {
1998 margin:0;
1999 vertical-align:top;
2000 line-height: 19px;
2001 font-size:13px;
2002 height: 19px;
2003}
2004
2005#api-level-toggle .select-wrapper {
2006 width: 35px;
2007 display: inline-block;
2008 overflow: hidden;
2009}
2010#api-level-toggle select {
2011 border: 0;
2012 appearance:none;
2013 -moz-appearance:none;
2014 -webkit-appearance: none;
2015 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
2016 color: #444;
2017 height: 19px;
2018 line-height: 19px;
2019 padding: 0;
2020 margin:1px 0 0 0;
2021 width:150%;
2022 font-size:13px;
2023 vertical-align:top;
2024 outline:0;
2025}
2026
2027
2028/* Toggle for revision notes and stuff */
2029div.toggle-content.closed .toggle-content-toggleme {
2030 display:none;
2031}
2032
2033#jd-content img.toggle-content-img {
2034 margin:0 5px 5px 0;
2035}
2036
2037
2038/* API LEVEL FILTERED MEMBERS */
2039
2040.absent,
2041.absent a:link,
2042.absent a:visited,
2043.absent a:hover,
2044.absent * {
2045 color:#bbb !important;
2046 cursor:default !important;
2047 text-decoration:none !important;
2048}
2049#devdoc-nav li.absent.selected,
2050#devdoc-nav li.absent.selected *,
2051#devdoc-nav div.label.absent.selected,
2052#devdoc-nav div.label.absent.selected * {
2053 background-color:#eaeaea !important;
2054}
2055.absent h4.jd-details-title,
2056.absent h4.jd-details-title * {
2057 background-color:#f6f6f6 !important;
2058}
2059.absent img {
2060 opacity: .3;
2061 filter: alpha(opacity=30);
2062 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2063}
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073/* JQUERY RESIZABLE STYLES */
2074.ui-resizable { position: relative; }
2075.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2076.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2077/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2078body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2079.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2080border-bottom: solid 1px #ededed;
2081 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2082/*
2083.ui-resizable-e {
2084cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
20851px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2086*/
2087
2088/* --------------------------------------------------------------------------
2089Lightbox
2090*/
2091.lightbox {
2092 width: 769px;
2093 padding: 1.5em;
2094 margin: 0 auto;
2095 border: solid 1px #dcdcdc;
2096 background: #fff;
2097 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2098 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2099 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
2100}
2101.lightbox .header {
2102 float: left;
2103 width: 720px;
2104 margin: -10px 20px 10px 0;
2105}
2106.lightbox .close {
2107 float: right;
2108 width: 10px;
2109 height: 10px;
2110 margin: -10px -10px 10px 0;
2111 text-indent: -1000em;
2112 background: url(../images/close.png) no-repeat 0 0;
2113}
2114.lightbox .close:hover, .lightbox .close:focus {
2115 background-position: -10px 0;
2116}
2117
2118/* --------------------------------------------------------------------------
2119Misc
2120*/
2121
2122
2123.clearfix:before, .clearfix:after {
2124 content: "";
2125 display: table
2126}
2127.clearfix:after {
2128 clear: both
2129}
2130.clearfix {
2131 *zoom: 1
2132}
2133table.blank th, table.blank td {
2134 border: 0;
2135 background: none
2136}
2137.caption {
2138 margin: 0.5em 0 2em 0;
2139 color: #000;
2140 font-size: 11.5px;
2141}
2142
2143.nolist {
2144 list-style:none;
2145 padding:0;
2146 margin:0 0 1em 1em;
2147}
2148
2149.nolist li {
2150 padding:0 0 2px;
2151 margin:0;
2152}
2153
2154pre.classic {
2155 background-color:transparent;
2156 border:none;
2157 padding:0;
2158}
2159
2160p.img-caption {
2161 margin: -10px 0 20px;
2162 font-size:13px;
2163 color:#666;
2164}
2165
2166div.figure {
2167 float:right;
2168 clear:right;
2169 margin:10px 0 0 0;
2170 padding:0 0 0 20px;
2171 /* width must be defined w/ an inline style matching the image width */
2172}
2173
2174p.table-caption {
2175 margin: 0 0 4px 0; /* matches default table left-margin */
2176 font-size:13px;
2177 color:#666;
2178}
2179
2180p.note, div.note,
2181p.caution, div.caution,
2182p.warning, div.warning {
2183 padding: 0 0 0 10px;
2184 border-left: 4px solid;
2185}
2186
2187p.note {
2188 border-color: #258AAF;
2189}
2190
2191p.caution {
2192 border-color: #FF8800;
2193}
2194
2195p.warning {
2196 border-color: #ff4443;
2197}
2198
2199blockquote {
2200 display:block;
2201 float:right;
2202 width:280px;
2203 font-size:20px;
2204 font-style:italic;
2205 line-height:24px;
2206 color:#33B5E5;
2207 margin:0 0 20px 30px;
2208}
2209
2210div.design-announce {
2211 margin: 1em;
2212 padding: 0 0 0 10px;
2213 border-left: 4px solid #258AAF;
2214}
2215
2216div.design-announce p {
2217 margin:0 0 10px;
2218}
2219
2220#devdoc-nav a.totop {
2221 display:block;
2222 top:0;
2223 width:inherit;
2224 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2225 text-indent:-9999em;
2226}
2227#devdoc-nav a.totop {
2228 position:fixed;
2229 display:none;
2230}
2231#devdoc-nav a.totop:hover {
2232 background-color:#33B5E5;
2233}
2234
2235.content-footer a.totop {
2236 text-transform:uppercase;
2237 line-height:30px;
2238}
2239
2240/* -----------------------------------------------
2241Dialog box for popup messages
2242*/
2243
2244div.dialog {
2245 height:0;
2246 margin:0 auto;
2247}
2248
2249div.dialog>div {
2250 z-index:99;
2251 position:fixed;
2252 margin:70px 0;
2253 width: 391px;
2254 height: 200px;
2255 background: #F7F7F7;
2256-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2257-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2258box-shadow: 0 0 15px rgba(0,0,0,0.5);
2259}
2260/* IE6 can't position fixed */
2261* html div.dialog div { position:absolute; }
2262
2263
2264div#deprecatedSticker {
2265 display:none;
2266 z-index:99;
2267 position:fixed;
2268 right:15px;
2269 top:114px;
2270 margin:0;
2271 padding:1em;
2272 background:#FFF;
2273 border:1px solid #dddd00;
2274 box-shadow:-5px 5px 10px #ccc;
2275 -moz-box-shadow:-5px 5px 10px #ccc;
2276 -webkit-box-shadow:-5px 5px 10px #ccc;
2277}
2278
2279div#naMessage {
2280 display:none;
2281 width:555px;
2282 height:0;
2283 margin:0 auto;
2284}
2285
2286div#naMessage div {
2287 z-index:99;
2288 width:450px;
2289 position:fixed;
2290 margin:50px 0;
2291 padding:4em 4em 3em;
2292 background:#FFF;
2293 border:1px solid #999;
2294 box-shadow:-10px 10px 40px #888;
2295 -moz-box-shadow:-10px 10px 40px #888;
2296 -webkit-box-shadow:-10px 10px 40px #888;
2297}
2298/* IE6 can't position fixed */
2299* html div#naMessage div { position:absolute; }
2300
2301div#naMessage strong {
2302 font-size:1.1em;
2303}
2304
2305
2306/* --------------------------------------------------------------------------
2307Slideshow Controls & Next/Prev
2308*/
2309.slideshow-next, .slideshow-prev {
2310 width: 20px;
2311 height: 36px;
2312 text-indent: -1000em;
2313}
2314.slideshow-container {
2315 margin: 2em 0;
2316}
2317.slideshow-container:before, .slideshow-container:after {
2318 content: "";
2319 display: table;
2320 clear: both;
2321}
2322a.slideshow-next, a.slideshow-next:visited {
2323
2324 float: right;
2325
2326 background: url(../images/arrow-right.png) no-repeat 0 0
2327
2328}
2329
2330a.slideshow-prev, a.slideshow-prev:visited {
2331
2332 float: left;
2333
2334 background: url(../images/arrow-left.png) no-repeat 0 0
2335
2336}
2337
2338.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2339
2340 background-position: 0 -36px
2341
2342}
2343
2344.slideshow-next:active, .slideshow-prev:active {
2345
2346 background-position: 0 -72px
2347
2348}
2349.slideshow-nav {
2350 width: 74px;
2351 margin: 0 auto;
2352}
2353.slideshow-nav a, .slideshow-nav a:visited {
2354 display: inline-block;
2355 width: 12px;
2356 height: 12px;
2357 margin: 0 2px 20px 2px;
2358 background: #ccc;
2359 -webkit-border-radius: 50%;
2360 -moz-border-radius: 50%;
2361 border-radius: 50%;
2362}
2363.slideshow-nav a:hover, .slideshow-nav a:focus {
2364
2365 background: #33B5E5
2366}
2367
2368.slideshow-nav a:active {
2369
2370 background: #1e799a;
2371 background: #ebebeb;
2372 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2373 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2374 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2375}
2376.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
2377 background: #33B5E5
2378}
2379/* --------------------------------------------------------------------------
2380Tabs
2381*/
2382ul.tabs {
2383 padding: 0;
2384 margin: 2em 0 0 0;
2385}
2386ul.tabs:before, ul.tabs:after {
2387 content: "";
2388 display: table;
2389 clear: both;
2390}
2391ul.tabs li {
2392 list-style-type: none;
2393 float: left;
2394}
2395ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
2396 display: block;
2397 height: 36px;
2398 line-height: 36px;
2399 padding: 0 15px;
2400 margin-right: 2px;
2401 color: #444;
2402 -moz-border-radius-topleft: 2px;
2403 -moz-border-radius-topright: 2px;
2404 -moz-border-radius-bottomright: px;
2405 -moz-border-radius-bottomleft: px;
2406 -webkit-border-radius: 2px 2px px px;
2407 border-radius: 2px 2px px px;
2408 border-top: solid 1px #ebebeb;
2409 border-left: solid 1px #ebebeb;
2410 border-right: solid 1px #ebebeb;
2411 background-color: #fff;
2412 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2413 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2414 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2415 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2416 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2417 background-image: linear-gradient(top, #ffffff, #fafafa);
2418 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2419EndColorStr='#fafafa');
2420}
2421ul.tabs li a:hover {
2422 color: #33B5E5;
2423}
2424ul.tabs li a.selected {
2425 height: 37px;
2426 color: #33B5E5;
2427 background-color: #f7f7f7;
2428 background-image: none;
2429 border-color: #ddd;
2430}
2431.tab-content {
2432 padding: 1.2em;
2433 margin: -1px 0 2em 0;
2434 -webkit-border-radius: 2px;
2435 -moz-border-radius: 2px;
2436 border-radius: 2px;
2437 border: solid 1px #ddd;
2438 background: #f7f7f7;
2439}
2440/* --------------------------------------------------------------------------
2441Feature Boxes
2442*/
2443.feature-box {
2444 width: 291px;
2445 height: 200px;
2446 position: relative;
2447 background: #F7F7F7;
2448}
2449.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
2450 z-index: 100;
2451 position: absolute;
2452 background-color: #aaa;
2453}
2454.box-border .top, .box-border .bottom {
2455 width: 291px;
2456 height: 1px;
2457}
2458.dialog .box-border .top,
2459.dialog .box-border .bottom { width:391px; }
2460
2461.box-border .left, .box-border .right {
2462 width: 1px;
2463 height: 8px;
2464}
2465.box-border .top { top: 0; left: 0 }
2466.box-border .top .left { top: 1px; left: 0 }
2467.box-border .top .right { top: 1px; right: 0 }
2468.box-border .bottom .left { top: -8px; left: 0 }
2469.box-border .bottom { top: 200px; left: 0 }
2470.box-border .bottom .right { top: -8px; right: 0 }
2471
2472.feature-box h4,
2473.dialog h4 {
2474 margin: 15px 18px 10px;
2475 padding:0;
2476}
2477
2478.feature-box p,
2479.dialog p {
2480 margin: 10px 18px;
2481 padding:0;
2482}
2483.feature-box .link,
2484.dialog .link {
2485 border-top: 1px solid #dedede;
2486 bottom: 0;
2487 position: absolute;
2488 width: inherit;
2489}
2490.feature-box a, .feature-box h4,
2491.dialog a, .dialog h4 {
2492 -webkit-transition: color .4s ease;
2493 -moz-transition: color .4s ease;
2494 -o-transition: color .4s ease;
2495 transition: color .4s ease;
2496}
2497.feature-box:hover {
2498 cursor: pointer;
2499}
2500.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
2501.left, .feature-box:hover .right {
2502 background-color: #33B5E5;
2503}
2504.feature-box:hover h4, .feature-box:hover a {
2505 color: #33B5E5;
2506}
2507/* --------------------------------------------------------------------------
2508Page-Specific Styles
2509*/
2510.colors {
2511 position: relative;
2512 float: left;
2513 width: 92px;
2514 margin: 40px 0 20px;
2515}
2516.colors div {
2517 color: #fff;
2518 font-size: 11.5px;
2519 width: 82px;
2520 height: 82px;
2521 margin-top:-30px;
2522 line-height: 82px;
2523 text-align: center;
2524 border: solid 5px #fff;
2525 -webkit-border-radius: 50%;
2526 -moz-border-radius: 50%;
2527 border-radius: 50%;
2528}
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543/* ########### REFERENCE DOCS ################## */
2544
2545#packages-nav h2,
2546#classes-nav h2 {
2547 font-size:18px;
2548 margin:0;
2549 padding:0 0 0 4px;
2550}
2551
2552#jd-header {
2553 padding: 0 0 5px;
2554 margin: 20px 0 10px;
2555 font-size:13px;
2556 border-bottom:solid 1px #ccc;
2557}
2558
2559#jd-header h1 {
2560 margin:0;
2561 padding:0;
2562}
2563
2564/* page-top-right container for reference pages (holds
2565links to summary tables) */
2566#api-info-block {
2567 font-size:13px;
2568 margin:20px 0 0;
2569 padding:0 10px 6px;
2570 font-weight:normal;
2571 float:right;
2572 text-align:right;
2573 color:#999;
2574 max-width:70%;
2575}
2576
2577#api-info-block div.api-level {
2578 font-weight:bold;
2579 font-size:inherit;
2580 float:none;
2581 color:#444;
2582 padding:0;
2583 margin:0;
2584}
2585
2586/* inheritance table */
2587.jd-inheritance-table {
2588 border-spacing:0;
2589 margin:0;
2590 padding:0;
2591 font-size:13px;
2592 background-color:transparent;
2593}
2594.jd-inheritance-table tr td {
2595 border: none;
2596 margin: 0;
2597 padding: 0;
2598 background-color:transparent;
2599}
2600.jd-inheritance-table .jd-inheritance-space {
2601 font-weight:bold;
2602 width:1em;
2603}
2604.jd-inheritance-table .jd-inheritance-interface-cell {
2605 padding-left: 17px;
2606}
2607
2608
2609
2610.jd-sumtable a {
2611 text-decoration:none;
2612}
2613
2614.jd-sumtable a:hover {
2615 text-decoration:underline;
2616}
2617
2618/* the link inside a sumtable for "Show All/Hide All" */
2619.toggle-all {
2620 display:block;
2621 float:right;
2622 font-weight:normal;
2623 font-size:0.9em;
2624}
2625
2626/* adjustments for in/direct subclasses tables */
2627.jd-sumtable.jd-sumtable-subclasses {
2628 margin: 1em 0 0 0;
2629 max-width:968px;
2630 background-color:transparent;
2631 font-size:13px;
2632}
2633
2634/* extra space between end of method name and open-paren */
2635.sympad {
2636 margin-right: 2px;
2637}
2638
2639/* right alignment for the return type in sumtable */
2640.jd-sumtable .jd-typecol {
2641 text-align:right;
2642}
2643
2644/* adjustments for the expando table-in-table */
2645.jd-sumtable-expando {
2646 margin:.5em 0;
2647 padding:0;
2648}
2649
2650/* a div that holds a short description */
2651.jd-descrdiv {
2652 padding:3px 1em 0 1em;
2653 margin:0;
2654 border:0;
2655}
2656
2657#jd-content img.jd-expando-trigger-img {
2658 padding:0 4px 4px 0;
2659 margin:0;
2660}
2661
2662.jd-sumtable-subclasses div#subclasses-direct,
2663.jd-sumtable-subclasses div#subclasses-indirect {
2664 margin:0 0 0 13px;
2665}
2666
2667
2668
2669/********* MEMBER REF *************/
2670
2671
2672.jd-details {
2673/* border:1px solid #669999;
2674 padding:4px; */
2675 margin:0 0 1em;
2676}
2677
2678/* API reference: a container for the
2679.tagdata blocks that make up the detailed
2680description */
2681.jd-details-descr {
2682 padding:0;
2683 margin:.5em .25em;
2684}
2685
2686/* API reference: a block containing
2687a detailed description, a params table,
2688seealso list, etc */
2689.jd-tagdata {
2690 margin:.5em 1em;
2691}
2692
2693.jd-tagdata p {
2694 margin:0 0 1em 1em;
2695}
2696
2697/* API reference: adjustments to
2698the detailed description block */
2699.jd-tagdescr {
2700 margin:.25em 0 .75em 0;
2701}
2702
2703.jd-tagdescr ol,
2704.jd-tagdescr ul {
2705 margin:0 2.5em;
2706 padding:0;
2707}
2708
2709.jd-tagdescr table,
2710.jd-tagdescr img {
2711 margin:.25em 1em;
2712}
2713
2714.jd-tagdescr li {
2715margin:0 0 .25em 0;
2716padding:0;
2717}
2718
2719/* API reference: heading marking
2720the details section for constants,
2721attrs, methods, etc. */
2722h4.jd-details-title {
2723 font-size:1.15em;
2724 background-color: #E2E2E2;
2725 margin:1.5em 0 .6em;
2726 padding:3px 95px 3px 3px; /* room for api-level */
2727}
2728
2729h4.jd-tagtitle {
2730 margin:0;
2731}
2732
2733h4 .normal {
2734 font-weight:normal;
2735}
2736
2737/* API reference: heading for "Parameters", "See Also", etc.,
2738in details sections */
2739h5.jd-tagtitle {
2740 margin:0 0 .25em 0;
2741 font-size:1em;
2742}
2743
2744.jd-tagtable {
2745 margin:0;
2746 background-color:transparent;
2747}
2748
2749.jd-tagtable td,
2750.jd-tagtable th {
2751 border:none;
2752 background-color:#fff;
2753 vertical-align:top;
2754 font-weight:normal;
2755 padding:2px 10px;
2756}
2757
2758.jd-tagtable th {
2759 font-style:italic;
2760}
2761
2762/* Inline api level indicator for methods */
2763div.api-level {
2764 font-size:.8em;
2765 font-weight:normal;
2766 color:#999;
2767 float:right;
2768 padding:0 8px 0;
2769 margin-top:-30px;
2770}
2771
2772table.jd-tagtable td,
2773table.jd-tagtable th {
2774 background-color:transparent;
2775}
2776
2777table.jd-tagtable th {
2778 color:inherit;
2779}
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803/* SEARCH FILTER */
2804
2805#search_autocomplete {
2806 font-weight:normal;
2807}
2808
2809#search_filtered_wrapper {
2810 width: 193px;
2811 float: right;
2812}
2813#search_filtered_div {
2814 position:absolute;
2815 z-index:9999;
2816 min-width:171px; /* +padding and border makes this match input width */
2817 padding:5px;
2818 border: solid 1px #C5C5C5;
2819 background: white;
2820 top: 35px;
2821 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
2822 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2823 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2824}
2825
2826ul#search_filtered {
2827 min-width:100%;
2828 margin:0;
2829 list-style: none;
2830 margin: 0;
2831 padding: 0;
2832}
2833
2834
2835#search_filtered li{
2836 line-height:1.5em;
2837 margin: 0 0 2px;
2838 padding: 0;
2839}
2840
2841#search_filtered li a {
2842 padding:0 5px;
2843 color:#444 !important;
2844}
2845
2846#search_filtered .jd-selected {
2847 background-color: #33B5E5;
2848 cursor:pointer;
2849}
2850#search_filtered .jd-selected,
2851#search_filtered .jd-selected a {
2852 color:#f7f7f7 !important;
2853}
2854
2855.no-display {
2856 display: none;
2857}
2858
2859.jd-autocomplete {
2860 padding-left: 6px;
2861 padding-right: 6px;
2862 padding-top: 1px;
2863 padding-bottom: 1px;
2864 font-size: 0.81em;
2865 border: none;
2866 margin: 0;
2867 line-height: 1.05em;
2868}
2869
2870.show-item {
2871 display: table-row;
2872}
2873.hide-item {
2874 display: hidden;
2875}
2876
2877
2878
2879
2880
2881/* SEARCH RESULTS */
2882
2883/* disable twiddle and size selectors for left column */
2884#leftSearchControl div {
2885 padding:0;
2886}
2887
2888#leftSearchControl .gsc-twiddle {
2889 background-image : none;
2890}
2891
2892#leftSearchControl td, #searchForm td {
2893 border: 0px solid #000;
2894 padding:0;
2895}
2896
2897#leftSearchControl .gsc-resultsHeader .gsc-title {
2898 padding-left : 0px;
2899 font-weight : bold;
2900 font-size : 13px;
2901 color:#006699;
2902 display : none;
2903}
2904
2905#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
2906 display : none;
2907}
2908
2909#leftSearchControl .gsc-resultsRoot {
2910 padding-top : 6px;
2911}
2912
2913#leftSearchControl div.gs-visibleUrl-long {
2914 display : block;
2915 color:#006699;
2916}
2917
2918#leftSearchControl .gsc-webResult {
2919 padding:0 0 20px 0;
2920}
2921
2922.gsc-webResult div.gs-visibleUrl-short,
2923table.gsc-branding,
2924.gsc-clear-button {
2925 display : none;
2926}
2927
2928.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
2929.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
2930#leftSearchControl a,
2931#leftSearchControl a b {
2932 color:#006699;
2933}
2934
2935.gsc-resultsHeader {
2936 display: none;
2937}
2938
2939/* Disable built in search forms */
2940.gsc-control form.gsc-search-box {
2941 display : none;
2942}
2943table.gsc-search-box {
2944 margin:6px 0 0 0;
2945 border-collapse:collapse;
2946}
2947
2948td.gsc-input {
2949 padding:0 2px;
2950 width:100%;
2951 vertical-align:middle;
2952}
2953
2954input.gsc-input {
2955 border:1px solid #BCCDF0;
2956 width:99%;
2957 padding-left:2px;
2958 font-size:.95em;
2959}
2960
2961td.gsc-search-button {
2962 text-align: right;
2963 padding:0;
2964 vertical-align:top;
2965}
2966
2967
2968#searchResults {
2969 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
2970(it doesn't) */
2971 height:auto;
2972}
2973
2974#searchResults .gsc-control {
2975 position:relative;
2976 width:auto;
2977 padding:0 0 10px;
2978}
2979
2980#searchResults .gsc-tabsArea {
2981 position:relative;
2982 white-space:nowrap;
2983 float:left;
2984 width:200px;
2985}
2986
2987#searchResults .gsc-above-wrapper-area {
2988 display:none;
2989}
2990
2991#searchResults .gsc-resultsbox-visible {
2992 float:left;
2993 width:720px;
2994 margin-left:20px;
2995}
2996
2997#searchResults .gsc-tabHeader {
2998 padding: 3px 6px;
2999 position:relative;
3000 width:auto;
3001 display:block;
3002}
3003
3004#searchResults h2#searchTitle {
3005 padding:0;
3006 margin:5px 0;
3007 border:none;
3008}
3009
3010#searchResults h2#searchTitle em {
3011 font-style:normal;
3012 color:#33B5E5;
3013}
3014
3015#searchResults .gsc-table-result {
3016 margin:5px 0 10px 0;
3017 background-color:transparent;
3018}
3019#searchResults .gs-web-image-box, .gs-promotion-image-box {
3020 width:120px;
3021}
3022#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3023 max-width:120px;
3024}
3025
3026#searchResults .gsc-table-result .gsc-thumbnail {
3027 padding:0 20px 0 0;
3028}
3029
3030#searchResults td {
3031 background-color:transparent;
3032}
3033
3034#searchResults .gsc-expansionArea {
3035 position:relative;
3036}
3037#searchResults .gsc-tabsArea .gsc-cursor-box {
3038 width:200px;
3039 padding:20px 0 0 1px;
3040}
3041#searchResults .gsc-cursor-page {
3042 display:inline-block;
3043 float:left;
3044 margin:-1px 0 0 -1px;
3045 padding:0;
3046 height:27px;
3047 width:27px;
3048 text-align:center;
3049 line-height:2;
3050}
3051
3052#searchResults .gsc-tabHeader.gsc-tabhInactive,
3053#searchResults .gsc-cursor-page {
3054 text-decoration:none;
3055 color:#258AAF;
3056 border: solid 1px #DADADA;
3057}
3058
3059#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3060#searchResults .gsc-cursor-page:hover {
3061 border-color: #DBDBDB;
3062 background-color: #F3F3F3;
3063 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3064 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3065 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3066 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3067 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3068 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3069 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3070EndColorStr='#ececec');
3071 color: #33B5E5;
3072}
3073
3074#searchResults .gsc-tabHeader.gsc-tabhActive,
3075#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3076#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3077#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3078 color:#fff;
3079 background-color: #09C;
3080 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3081 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3082 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3083 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3084 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3085 background-image: linear-gradient(top, #2FADDB, #09C);
3086 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3087 border: 1px solid #3990AB;
3088 z-index:100;
3089}
3090
3091}
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105/*********** PREVIOUSLY dac-styles.css ***************/
3106
3107
3108
3109
3110
3111::-webkit-selection,
3112::-moz-selection,
3113::selection {
3114 background-color: #0099cc;
3115 color: #fff; }
3116
3117#header {
3118 border-bottom:0;
3119}
3120
3121#header .wrap {
3122 max-width:940px;
3123 height:41px;
3124 border-bottom:1px solid;
3125 border-color: #ccc;
3126 position:relative;
3127}
3128
3129.about #header .wrap {
3130 border-color: #9933CC;
3131}
3132
3133.design #header .wrap {
3134 border-color: #33b5e5;
3135}
3136
3137.develop #header .wrap {
3138 border-color: #F80;
3139}
3140
3141.distribute #header .wrap {
3142 border-color: #9C0;
3143}
3144
3145.logo a {
3146 width:123px;
3147 float:left;
3148}
3149
3150#header .logo {
3151 margin-top: -6px;
3152 margin-left: 0px;
3153 margin-bottom:0px;
3154 width: 160px;
3155 padding-right:10px;
3156}
3157
3158.search {
3159 height:25px;
3160 margin-top: -3px;
3161 margin-bottom: 0px;
3162}
3163
3164
3165
3166/* Quicknav */
3167.btn-quicknav {
3168 width:20px;
3169 height:28px;
3170 float:left;
3171 margin-left:6px;
3172 padding-right:10px;
3173 position:relative;
3174 cursor:pointer;
3175 border-right:1px solid #CCC;
3176}
3177
3178.btn-quicknav a {
3179 zoom:1;
3180 position:absolute;
3181 top:13px;
3182 left:5px;
3183 display:block;
3184 text-indent:-9999em;
3185 width:10px;
3186 height:5px;
3187 background:url(../images/quicknav_arrow.png) no-repeat;
3188}
3189
3190.btn-quicknav a.arrow-active {
3191 background-position: 0 -5px;
3192 display:none;
3193}
3194
3195#header-wrap.quicknav a.arrow-inactive {
3196 display:none;
3197}
3198
3199.btn-quicknav.active a.arrow-active {
3200 display:block;
3201}
3202
3203.nav-x li {
3204 display:block;
3205 float:left;
3206 margin-right:45px;
3207 -webkit-transition: all 0.25s linear;
3208 -moz-transition: all 0.25s linear;
3209 -ms-transition: all 0.25s linear;
3210 -o-transition: all 0.25s linear;
3211 transition: all 0.25s linear;
3212}
3213
3214#header-wrap.quicknav .nav-x li {
3215 min-width:160px;
3216 margin-right:20px;
3217}
3218
3219#header-wrap.quicknav li.last {
3220 margin-right:0px;
3221}
3222
3223#quicknav {
3224 float:none;
3225 clear:both;
3226 margin-left:180px;
3227 margin-top:-30px;
3228 display:none;
3229 overflow:hidden;
3230}
3231
3232#header-wrap.quicknav #quicknav {
3233
3234}
3235
3236#quicknav ul {
3237 margin:10px 0;
3238 padding:0;
3239}
3240
3241#quicknav ul li.design {
3242 border-top:1px solid #33b5e5;
3243}
3244
3245#quicknav ul li.develop {
3246 border-top:1px solid #FF8800;
3247}
3248
3249#quicknav ul li.distribute {
3250 border-top:1px solid #99cc00;
3251}
3252
3253#quicknav ul li {
3254 display:block;
3255 float:left;
3256 margin:0 20px 0 0;
3257 min-width:140px;
3258}
3259
3260#quicknav ul li.last {
3261 margin-right:0px;
3262}
3263
3264#quicknav ul li ul li {
3265 float:none;
3266}
3267
3268#quicknav ul li ul li a {
3269 color:#444444;
3270}
3271
3272#quicknav ul li li ul,
3273#quicknav ul li li ul li {
3274 margin:0;
3275}
3276
3277#quicknav ul li li ul li:before {
3278 content:"\21B3";
3279}
3280
3281#header-wrap {
3282 -webkit-transition: all 0.25s ease-out;
3283 -moz-transition: all 0.25s ease-out;
3284 -ms-transition: all 0.25s ease-out;
3285 -o-transition: all 0.25s ease-out;
3286 transition: all 0.25s ease-out;
3287
3288}
3289
3290#header-wrap.quicknav {
3291 height:170px;
3292
3293}
3294
3295/* SEARCH AND MORE */
3296.search {
3297 position: absolute;
3298 width: 50px;
3299 height:28px;
3300 display: block;
3301 margin-top:-3px;
3302 margin-bottom:7px;
3303 overflow:hidden;
3304 z-index:100;
3305 right:54px;
3306 -webkit-transition: width 0.4s ease;
3307 -moz-transition: width 0.4s ease;
3308 -o-transition: width 0.4s ease;
3309 transition: width 0.4s ease;
3310}
3311
3312.search #search-btn {
3313 width:50px;
3314 height:28px;
3315 background:url(../images/icon_search.png) no-repeat;
3316 float:left;
3317}
3318
3319.search-inner {
3320 width:245px;
3321}
3322
3323.search:hover, .search.active {
3324 width:245px;
3325}
3326
3327.search .bottom, .search .left, .search .right {
3328 position: absolute;
3329 background-color: #a2a2a2
3330}
3331
3332.search .bottom {
3333 width: 214px;
3334 height: 1px;
3335 top: 24px;
3336 left: 0
3337}
3338
3339.search .left, .search .right {
3340 height: 5px;
3341 width: 1px
3342}
3343
3344.search .left {
3345 top: 22px;
3346 left: 56px;
3347 background-color:#CCC;
3348}
3349
3350.search .right {
3351 top: 22px;
3352 left: 238px;
3353 background-color:#CCC;
3354}
3355
3356.search form {
3357 margin-top: 2px;
3358 width: 162px;
3359 float:left;
3360}
3361
3362.search form input {
3363 color: #2f2f2f;
3364 font-size: 0.95em;
3365 width: 178px;
3366 border: none;
3367 margin-left: 6px;
3368 z-index: 1500;
3369 position: relative;
3370 background-color: transparent;
3371 border-bottom:1px solid #CCC;
3372 padding:0 0 0 4px;
3373 outline:none;
3374 height:24px;
3375}
3376
3377.search:hover form input {
3378 border-bottom:1px solid #33B5E5;
3379}
3380
3381.search:hover .bottom, .search:hover .left, .search:hover .right {
3382 background-color: #33b5e5;
3383}
3384
3385.search:hover #search-btn {
3386 background-position: 0 -28px
3387}
3388
3389.search form input:focus {
3390 color: #444;
3391 font-weight: bold
3392}
3393
3394.moremenu {
3395 float: right;
3396 position: relative;
3397 width: 50px;
3398 height:28px;
3399 display: block;
3400 margin-top:-3px;
3401 margin-bottom:7px;
3402 overflow:hidden;
3403 -webkit-transition: width 0.25s ease;
3404 -moz-transition: width 0.25s ease;
3405 -o-transition: width 0.25s ease;
3406 transition: width 0.25s ease;
3407}
3408
3409.moremenu #more-btn {
3410 width:40px;
3411 height:28px;
3412 background:url(../images/icon_more.png) no-repeat;
3413 border-left:1px solid #CCC;
3414 float:left;
3415 cursor:pointer;
3416}
3417
3418.moremenu:hover #more-btn {
3419 background-position:0 -28px;
3420}
3421
3422.morehover {
3423 position:absolute;
3424 right:6px;
3425 top:-9px;
3426 width:40px;
3427 height:35px;
3428 z-index:99;
3429 overflow:hidden;
3430
3431 -webkit-opacity:0;
3432 -moz-opacity:0;
3433 -o-opacity:0;
3434 opacity:0;
3435
3436 -webkit-transform-origin:100% 0%;
3437 -moz-transform-origin:100% 0%;
3438 -o-transform-origin:100% 0%;
3439 transform-origin:100% 0%;
3440
3441 -webkit-transition-property: -webkit-opacity;
3442 -webkit-transition-duration: .25s;
3443 -webkit-transition-timing-function:ease;
3444
3445 -moz-transition-property: -webkit-opacity;
3446 -moz-transition-duration: .25s;
3447 -moz-transition-timing-function:ease;
3448
3449 -o-transition-property: -webkit-opacity;
3450 -o-transition-duration: .25s;
3451 -o-transition-timing-function:ease;
3452
3453 -transition-property: -webkit-opacity;
3454 -transition-duration: .25s;
3455 -transition-timing-function:ease;
3456}
3457
3458.morehover:hover {
3459 opacity:1;
3460 height:345px;
3461 width:268px;
3462 -webkit-transition-property:height, -webkit-opacity;
3463}
3464
3465.morehover .top {
3466 width:268px;
3467 height:39px;
3468 background:url(../images/more_top.png) no-repeat;
3469}
3470
3471.morehover .mid {
3472 width:228px;
3473 background:url(../images/more_mid.png) repeat-y;
3474 padding:10px 20px 10px 20px;
3475}
3476
3477.morehover .mid .header {
3478 border-bottom:1px solid #ccc;
3479 font-weight:bold;
3480}
3481
3482.morehover .bottom {
3483 width:268px;
3484 height:6px;
3485 background:url(../images/more_bottom.png) no-repeat;
3486}
3487
3488.morehover ul {
3489 margin:10px 10px 20px 0;
3490}
3491
3492.morehover ul li {
3493 list-style:none;
3494}
3495
3496.morehover ul li.active a,
3497.morehover ul li.active a:hover {
3498 color:#444 !important;
3499}
3500
3501.morehover ul li.active img {
3502 margin-right:4px;
3503}
3504
3505
3506
3507
3508/* MARQUEE */
3509.slideshow-container {
3510 width:100%;
3511 overflow:hidden;
3512 position:relative;
3513}
3514.slideshow-container .slideshow-prev {
3515 position:absolute;
3516 top:50%;
3517 left:0px;
3518 margin-top:-36px;
3519 z-index:99;
3520}
3521.slideshow-container .slideshow-next {
3522 position:absolute;
3523 top:50%;
3524 margin-top:-36px;
3525 z-index:99;
3526 right:0px;
3527}
3528
3529.slideshow-container .pagination {
3530 position:absolute;
3531 bottom:20px;
3532 width:100%;
3533 text-align:center;
3534 z-index:99;
3535}
3536.slideshow-container .pagination ul {
3537 margin:0;
3538}
3539.slideshow-container .pagination ul li{
3540 display: inline-block;
3541 width:12px;
3542 height:12px;
3543 text-indent:-8000px;
3544 list-style:none;
3545 margin: 0 2px;
3546 border-radius:6px;
3547 background-color:#ccc;
3548 cursor:pointer;
3549 -webkit-transition:color .5s ease-in;
3550 -moz-transition:color .5s ease-in;
3551 -o-transition:color .5s ease-in;
3552 transition:color .5s ease-in;
3553}
3554.slideshow-container .pagination ul li:hover {
3555 background-color:#999;
3556}
3557.slideshow-container .pagination ul li.active {
3558 background-color:#33b5e5;
3559}
3560.slideshow-container .pagination ul li.active:hover {
3561 background-color:#33b5e5;
3562}
3563.slideshow-container ul li {
3564 display:inline;
3565 list-style:none;
3566}
3567
3568
3569
3570
3571a.download-sdk {
3572 float:right;
3573 margin:-10px 0;
3574 height:30px;
3575 padding-top:4px;
3576 padding-bottom:0px;
3577}
3578
3579#nav-x {
3580 padding-top: 14px;
3581}
3582
3583#nav-x .wrap,
3584#searchResults.wrap {
3585 max-width:940px;
3586 border-bottom:1px solid #CCC;
3587 min-height:34px;
3588
3589}
3590
3591
3592.nav-x {
3593 margin-left:0;
3594 margin-bottom:0;
3595}
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606/*
3607 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3608 */
3609
3610.jspContainer {
3611 overflow: hidden;
3612 position: relative;
3613}
3614
3615.jspPane {
3616 position: absolute;
3617 overflow: hidden;
3618 width:auto !important; /* to avoid cut-off api names in reference in horiz scroll */
3619}
3620
3621.jspVerticalBar {
3622 position: absolute;
3623 top: 0;
3624 right: 0;
3625 width: 4px;
3626 height: 100%;
3627 background: #f5f5f5;
3628}
3629
3630.jspHorizontalBar {
3631 position: absolute;
3632 bottom: 0;
3633 left: 0;
3634 width: 100%;
3635 height: 4px;
3636 background: #f5f5f5;
3637}
3638
3639.jspVerticalBar *,
3640.jspHorizontalBar * {
3641 margin: 0;
3642 padding: 0;
3643}
3644.jspCap {
3645 display: block;
3646}
3647
3648.jspVerticalBar .jspCap {
3649 height: 4px;
3650}
3651
3652.jspHorizontalBar .jspCap {
3653 width: 0;
3654 height: 100%;
3655}
3656
3657.jspHorizontalBar .jspCap {
3658 float: left;
3659}
3660
3661.jspTrack {
3662 position: relative;
3663}
3664
3665.jspDrag {
3666 background: #bbb;
3667 position: relative;
3668 top: 0;
3669 left: 0;
3670 cursor: pointer;
3671}
3672
3673.jspDrag:hover,
3674.jspDrag:active {
3675 border-color: #09c;
3676 background-color: #4cadcb;
3677 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
3678 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
3679 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
3680 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
3681 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
3682 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
3683 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
3684}
3685
3686.jspHorizontalBar .jspTrack,
3687.jspHorizontalBar .jspDrag {
3688 float: left;
3689 height: 100%;
3690}
3691
3692.jspArrow {
3693 background: #999;
3694 text-indent: -20000px;
3695 display: block;
3696 cursor: pointer;
3697}
3698
3699.jspArrow.jspDisabled {
3700 cursor: default;
3701 background: #ccc;
3702}
3703
3704.jspVerticalBar .jspArrow {
3705 height: 16px;
3706}
3707
3708.jspHorizontalBar .jspArrow {
3709 width: 16px;
3710 float: left;
3711 height: 100%;
3712}
3713
3714.jspVerticalBar .jspArrow:focus {
3715 outline: none;
3716}
3717
3718.jspCorner {
3719 float: left;
3720 height: 100%;
3721}
3722
3723/* Yuk! CSS Hack for IE6 3 pixel bug :( */
3724* html .jspCorner {
3725 margin: 0 -3px 0 0;
3726}
3727/******* end of jscrollpane *********/
3728
3729
3730
3731
3732
3733/************ DEVELOP HOMEPAGE ******************/
3734
3735/* Slideshow */
3736.slideshow-develop {
3737 height: 300px;
3738 width: 940px;
3739 position: relative;
3740 overflow:hidden;
3741}
3742.slideshow-develop .frame {
3743 width: 940px;
3744 height: 300px;
3745}
3746.slideshow-develop img.play {
3747 width:350px;
3748 margin:20px 0 0 90px;
3749 -webkit-transform: perspective(800px ) rotateY( 35deg );
3750 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3751 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3752 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3753}
3754.slideshow-develop img.play.no-shadow {
3755 box-shadow: none;
3756 -moz-box-shadow: none;
3757 -webkit-box-shadow: none;
3758}
3759.slideshow-develop img.play.no-transform {
3760 -webkit-transform: none;
3761}
3762.slideshow-develop a.slideshow-next {
3763 background: url(../images/arrow-right-develop.png);
3764}
3765.slideshow-develop a.slideshow-prev {
3766 background: url(../images/arrow-left-develop.png);
3767}
3768.slideshow-develop .content-right {
3769 float: left;
3770}
3771.slideshow-develop .content-right p.title-intro {
3772 position:absolute;
3773 margin:0;
3774}
3775.slideshow-develop .content-right h2 {
3776 padding:0;
3777 margin-bottom:10px;
3778 border:none;
3779}
3780.slideshow-develop .item {
3781 height: 300px;
3782 width: 940px;
3783}
3784.slideshow-develop .pagination ul li.active {
3785 background-color: #F80;
3786}
3787.slideshow-develop .pagination ul li.active:hover {
3788 background-color: #F80;
3789}
3790
3791/* Feeds */
3792.feed ul {
3793 margin: 0;
3794}
3795.feed .feed-nav {
3796 height: 25px;
3797 border-bottom: 1px solid #CCC;
3798}
3799.feed .feed-nav li {
3800 list-style: none;
3801 float: left;
3802 margin-right: 25px;
3803 cursor: pointer;
3804}
3805.feed .feed-nav li.active {
3806 color: #000;
3807 border-bottom: 4px solid #F80;
3808}
3809.feed .feed-container {
3810 overflow: hidden;
3811 width: 460px;
3812}
3813.feed .feed-container .feed-frame {
3814 width: 1000px;
3815}
3816.feed .feed-container .feed-frame ul {
3817 float: left;
3818 width:460px;
3819}
3820.feed .feed-container .feed-frame ul ul {
3821 float: none;
3822 margin:10px 0 0 30px;
3823}
3824.feed .feed-container .feed-frame li {
3825 list-style: none;
3826 margin: 20px 0 20px 0;
3827 width: 460px;
3828 height:93px;
3829}
3830.feed .feed-container .feed-frame li.playlist {
3831 height:auto;
3832}
3833.feed .feed-container .feed-frame li.playlist a {
3834 height:93px;
3835 display:block;
3836}
3837.feed .feed-container .feed-frame li.more {
3838 height:20px;
3839 margin:10px 0 5px 5px;
3840}
3841.feed .feed-container .feed-frame li.more a {
3842 height:inherit;
3843}
3844.feed .feed-container .feed-frame li.playlist-video {
3845 list-style: none;
3846 margin: 0;
3847 width: 460px;
3848 height:55px;
3849 font-size:12px;
3850}
3851.feed .feed-container .feed-frame li.playlist-video a {
3852 height:45px;
3853 padding:5px;
3854}
3855.feed .feed-container .feed-frame li.playlist-video h5 {
3856 font-size:12px;
3857 line-height:13px;
3858 margin:0;
3859}
3860.feed .feed-container .feed-frame li.playlist-video p {
3861 margin:5px 0 0;
3862 line-height:15px;
3863}
3864.feed-container .feed-frame div.feed-image {
3865 float: left;
3866 border: 1px solid #999;
3867 margin:0 20px 0 0;
3868 width:122px;
3869 height:92px;
3870 background:url('../images/blog-default.png') no-repeat 0 0;
3871 background-size:180px;
3872}
3873#jd-content .feed .feed-container .feed-frame li img {
3874 float: left;
3875 border: 1px solid #999;
3876 margin:0 20px 0 0;
3877 width:122px;
3878 height:92px;
3879}
3880#jd-content .feed .feed-container .feed-frame li.playlist-video img {
3881 width:inherit;
3882 height:inherit;
3883}
3884
3885.feed .feed-container .feed-frame li a,
3886.feed .feed-container .feed-frame li a:active {
3887 color:#555 !important;
3888}
3889
3890.feed .feed-container .feed-frame li a:hover,
3891.feed .feed-container .feed-frame li a:hover * {
3892 color:#7AA1B0 !important;
3893}
3894
3895/* Video player */
3896#player-wrapper {
3897 display:none;
3898 margin: -1px auto 0;
3899 position: relative;
3900 width: 940px;
3901 height: 0px;
3902}
3903#player-frame {
3904 background: #EFEFEF;
3905 border: 1px solid #CCC;
3906 padding: 0px 207px;
3907 z-index: 10; /* stay above marque, but below search suggestions */
3908 width: 525px;
3909 height: 330px;
3910 position: relative;
3911}
3912
3913
3914
3915/************ DISTRIBUTE HOMEPAGE ***************/
3916
3917.marquee {
3918 width: 760px;
3919}
3920.marquee .main-img {
3921 float: left;
3922 margin-top: 20px;
3923 width: 490px;
3924}
3925.marquee .copy {
3926 width: 270px;
3927 float: left;
3928 margin-top: 30px;
3929}
3930.distribute-features {
3931 margin: 0;
3932}
3933.distribute-features ul {
3934 margin: 0;
3935}
3936.distribute-features ul li {
3937 list-style: none;
3938 float: left;
3939 border-top: 1px solid #9C0;
3940 width: 220px;
3941 margin-right: 50px;
3942}
3943.distribute-features ul li.last {
3944 margin-right: 0px;
3945}
3946
3947
3948/************ DEVELOP TOPIC CONTAINERS ************/
3949
3950.landing-banner,
3951.landing-docs {
3952 margin:20px 0 0;
3953}
3954.landing-banner {
3955 height:280px;
3956}
3957.landing-banner .col-6:first-child,
3958.landing-docs .col-6:first-child {
3959 margin-left:0;
3960}
3961.landing-banner .col-6:last-child,
3962.landing-docs .col-6:last-child {
3963 margin-right:0;
3964}
3965
3966.landing-banner h1 {
3967 margin-top:0;
3968}
3969.landing-docs h3 {
3970 font-size:14px;
3971 line-height:21px;
3972 color:#555;
3973 text-transform:uppercase;
3974 border-bottom:1px solid #CCC;
3975 margin:0 0 20px;
3976}
3977.landing-docs a {
3978 color:#333 !important;
3979}
3980.landing-docs a:hover,
3981.landing-docs a:hover * {
3982 color:#7AA1B0 !important
3983}
3984
3985.plusone {
3986 float:right;
3987}