blob: 75e8dfdcfb6619c6555667a25aa7ca57e6930d65 [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
Scott Main412eaf22012-06-22 14:36:33 -07002199div.note.design {
2200 border-left: 4px solid #33B5E5;
2201}
2202
2203div.note.develop {
2204 border-left: 4px solid #F80;
2205}
2206
2207div.note.distribute {
2208 border-left: 4px solid #9C0;
2209}
2210
2211.note p, .caution p, .warning p {
2212 margin:0 0 5px;
2213}
2214
2215.note p:last-child, .caution p:last-child, .warning p:last-child {
2216 margin-bottom:0;
2217}
2218
Scott Maine4d8f1b2012-06-21 18:03:05 -07002219blockquote {
2220 display:block;
2221 float:right;
2222 width:280px;
2223 font-size:20px;
2224 font-style:italic;
2225 line-height:24px;
2226 color:#33B5E5;
2227 margin:0 0 20px 30px;
2228}
2229
Scott Maine4d8f1b2012-06-21 18:03:05 -07002230div.design-announce p {
2231 margin:0 0 10px;
2232}
2233
2234#devdoc-nav a.totop {
2235 display:block;
2236 top:0;
2237 width:inherit;
2238 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2239 text-indent:-9999em;
2240}
2241#devdoc-nav a.totop {
2242 position:fixed;
2243 display:none;
2244}
2245#devdoc-nav a.totop:hover {
2246 background-color:#33B5E5;
2247}
2248
2249.content-footer a.totop {
2250 text-transform:uppercase;
2251 line-height:30px;
2252}
2253
2254/* -----------------------------------------------
2255Dialog box for popup messages
2256*/
2257
2258div.dialog {
2259 height:0;
2260 margin:0 auto;
2261}
2262
2263div.dialog>div {
2264 z-index:99;
2265 position:fixed;
2266 margin:70px 0;
2267 width: 391px;
2268 height: 200px;
2269 background: #F7F7F7;
2270-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2271-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2272box-shadow: 0 0 15px rgba(0,0,0,0.5);
2273}
2274/* IE6 can't position fixed */
2275* html div.dialog div { position:absolute; }
2276
2277
2278div#deprecatedSticker {
2279 display:none;
2280 z-index:99;
2281 position:fixed;
2282 right:15px;
2283 top:114px;
2284 margin:0;
2285 padding:1em;
2286 background:#FFF;
2287 border:1px solid #dddd00;
2288 box-shadow:-5px 5px 10px #ccc;
2289 -moz-box-shadow:-5px 5px 10px #ccc;
2290 -webkit-box-shadow:-5px 5px 10px #ccc;
2291}
2292
2293div#naMessage {
2294 display:none;
2295 width:555px;
2296 height:0;
2297 margin:0 auto;
2298}
2299
2300div#naMessage div {
2301 z-index:99;
2302 width:450px;
2303 position:fixed;
2304 margin:50px 0;
2305 padding:4em 4em 3em;
2306 background:#FFF;
2307 border:1px solid #999;
2308 box-shadow:-10px 10px 40px #888;
2309 -moz-box-shadow:-10px 10px 40px #888;
2310 -webkit-box-shadow:-10px 10px 40px #888;
2311}
2312/* IE6 can't position fixed */
2313* html div#naMessage div { position:absolute; }
2314
2315div#naMessage strong {
2316 font-size:1.1em;
2317}
2318
2319
2320/* --------------------------------------------------------------------------
2321Slideshow Controls & Next/Prev
2322*/
2323.slideshow-next, .slideshow-prev {
2324 width: 20px;
2325 height: 36px;
2326 text-indent: -1000em;
2327}
2328.slideshow-container {
2329 margin: 2em 0;
2330}
2331.slideshow-container:before, .slideshow-container:after {
2332 content: "";
2333 display: table;
2334 clear: both;
2335}
2336a.slideshow-next, a.slideshow-next:visited {
2337
2338 float: right;
2339
2340 background: url(../images/arrow-right.png) no-repeat 0 0
2341
2342}
2343
2344a.slideshow-prev, a.slideshow-prev:visited {
2345
2346 float: left;
2347
2348 background: url(../images/arrow-left.png) no-repeat 0 0
2349
2350}
2351
2352.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2353
2354 background-position: 0 -36px
2355
2356}
2357
2358.slideshow-next:active, .slideshow-prev:active {
2359
2360 background-position: 0 -72px
2361
2362}
2363.slideshow-nav {
2364 width: 74px;
2365 margin: 0 auto;
2366}
2367.slideshow-nav a, .slideshow-nav a:visited {
2368 display: inline-block;
2369 width: 12px;
2370 height: 12px;
2371 margin: 0 2px 20px 2px;
2372 background: #ccc;
2373 -webkit-border-radius: 50%;
2374 -moz-border-radius: 50%;
2375 border-radius: 50%;
2376}
2377.slideshow-nav a:hover, .slideshow-nav a:focus {
2378
2379 background: #33B5E5
2380}
2381
2382.slideshow-nav a:active {
2383
2384 background: #1e799a;
2385 background: #ebebeb;
2386 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2387 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2388 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2389}
2390.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
2391 background: #33B5E5
2392}
2393/* --------------------------------------------------------------------------
2394Tabs
2395*/
2396ul.tabs {
2397 padding: 0;
2398 margin: 2em 0 0 0;
2399}
2400ul.tabs:before, ul.tabs:after {
2401 content: "";
2402 display: table;
2403 clear: both;
2404}
2405ul.tabs li {
2406 list-style-type: none;
2407 float: left;
2408}
2409ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
2410 display: block;
2411 height: 36px;
2412 line-height: 36px;
2413 padding: 0 15px;
2414 margin-right: 2px;
2415 color: #444;
2416 -moz-border-radius-topleft: 2px;
2417 -moz-border-radius-topright: 2px;
2418 -moz-border-radius-bottomright: px;
2419 -moz-border-radius-bottomleft: px;
2420 -webkit-border-radius: 2px 2px px px;
2421 border-radius: 2px 2px px px;
2422 border-top: solid 1px #ebebeb;
2423 border-left: solid 1px #ebebeb;
2424 border-right: solid 1px #ebebeb;
2425 background-color: #fff;
2426 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2427 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2428 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2429 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2430 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2431 background-image: linear-gradient(top, #ffffff, #fafafa);
2432 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2433EndColorStr='#fafafa');
2434}
2435ul.tabs li a:hover {
2436 color: #33B5E5;
2437}
2438ul.tabs li a.selected {
2439 height: 37px;
2440 color: #33B5E5;
2441 background-color: #f7f7f7;
2442 background-image: none;
2443 border-color: #ddd;
2444}
2445.tab-content {
2446 padding: 1.2em;
2447 margin: -1px 0 2em 0;
2448 -webkit-border-radius: 2px;
2449 -moz-border-radius: 2px;
2450 border-radius: 2px;
2451 border: solid 1px #ddd;
2452 background: #f7f7f7;
2453}
2454/* --------------------------------------------------------------------------
2455Feature Boxes
2456*/
2457.feature-box {
2458 width: 291px;
2459 height: 200px;
2460 position: relative;
2461 background: #F7F7F7;
2462}
2463.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
2464 z-index: 100;
2465 position: absolute;
2466 background-color: #aaa;
2467}
2468.box-border .top, .box-border .bottom {
2469 width: 291px;
2470 height: 1px;
2471}
2472.dialog .box-border .top,
2473.dialog .box-border .bottom { width:391px; }
2474
2475.box-border .left, .box-border .right {
2476 width: 1px;
2477 height: 8px;
2478}
2479.box-border .top { top: 0; left: 0 }
2480.box-border .top .left { top: 1px; left: 0 }
2481.box-border .top .right { top: 1px; right: 0 }
2482.box-border .bottom .left { top: -8px; left: 0 }
2483.box-border .bottom { top: 200px; left: 0 }
2484.box-border .bottom .right { top: -8px; right: 0 }
2485
2486.feature-box h4,
2487.dialog h4 {
2488 margin: 15px 18px 10px;
2489 padding:0;
2490}
2491
2492.feature-box p,
2493.dialog p {
2494 margin: 10px 18px;
2495 padding:0;
2496}
2497.feature-box .link,
2498.dialog .link {
2499 border-top: 1px solid #dedede;
2500 bottom: 0;
2501 position: absolute;
2502 width: inherit;
2503}
2504.feature-box a, .feature-box h4,
2505.dialog a, .dialog h4 {
2506 -webkit-transition: color .4s ease;
2507 -moz-transition: color .4s ease;
2508 -o-transition: color .4s ease;
2509 transition: color .4s ease;
2510}
2511.feature-box:hover {
2512 cursor: pointer;
2513}
2514.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
2515.left, .feature-box:hover .right {
2516 background-color: #33B5E5;
2517}
2518.feature-box:hover h4, .feature-box:hover a {
2519 color: #33B5E5;
2520}
2521/* --------------------------------------------------------------------------
2522Page-Specific Styles
2523*/
2524.colors {
2525 position: relative;
2526 float: left;
2527 width: 92px;
2528 margin: 40px 0 20px;
2529}
2530.colors div {
2531 color: #fff;
2532 font-size: 11.5px;
2533 width: 82px;
2534 height: 82px;
2535 margin-top:-30px;
2536 line-height: 82px;
2537 text-align: center;
2538 border: solid 5px #fff;
2539 -webkit-border-radius: 50%;
2540 -moz-border-radius: 50%;
2541 border-radius: 50%;
2542}
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557/* ########### REFERENCE DOCS ################## */
2558
2559#packages-nav h2,
2560#classes-nav h2 {
2561 font-size:18px;
2562 margin:0;
2563 padding:0 0 0 4px;
2564}
2565
2566#jd-header {
2567 padding: 0 0 5px;
2568 margin: 20px 0 10px;
2569 font-size:13px;
2570 border-bottom:solid 1px #ccc;
2571}
2572
2573#jd-header h1 {
2574 margin:0;
2575 padding:0;
2576}
2577
2578/* page-top-right container for reference pages (holds
2579links to summary tables) */
2580#api-info-block {
2581 font-size:13px;
2582 margin:20px 0 0;
2583 padding:0 10px 6px;
2584 font-weight:normal;
2585 float:right;
2586 text-align:right;
2587 color:#999;
2588 max-width:70%;
2589}
2590
2591#api-info-block div.api-level {
2592 font-weight:bold;
2593 font-size:inherit;
2594 float:none;
2595 color:#444;
2596 padding:0;
2597 margin:0;
2598}
2599
2600/* inheritance table */
2601.jd-inheritance-table {
2602 border-spacing:0;
2603 margin:0;
2604 padding:0;
2605 font-size:13px;
2606 background-color:transparent;
2607}
2608.jd-inheritance-table tr td {
2609 border: none;
2610 margin: 0;
2611 padding: 0;
2612 background-color:transparent;
2613}
2614.jd-inheritance-table .jd-inheritance-space {
2615 font-weight:bold;
2616 width:1em;
2617}
2618.jd-inheritance-table .jd-inheritance-interface-cell {
2619 padding-left: 17px;
2620}
2621
2622
2623
2624.jd-sumtable a {
2625 text-decoration:none;
2626}
2627
2628.jd-sumtable a:hover {
2629 text-decoration:underline;
2630}
2631
2632/* the link inside a sumtable for "Show All/Hide All" */
2633.toggle-all {
2634 display:block;
2635 float:right;
2636 font-weight:normal;
2637 font-size:0.9em;
2638}
2639
2640/* adjustments for in/direct subclasses tables */
2641.jd-sumtable.jd-sumtable-subclasses {
2642 margin: 1em 0 0 0;
2643 max-width:968px;
2644 background-color:transparent;
2645 font-size:13px;
2646}
2647
2648/* extra space between end of method name and open-paren */
2649.sympad {
2650 margin-right: 2px;
2651}
2652
2653/* right alignment for the return type in sumtable */
2654.jd-sumtable .jd-typecol {
2655 text-align:right;
2656}
2657
2658/* adjustments for the expando table-in-table */
2659.jd-sumtable-expando {
2660 margin:.5em 0;
2661 padding:0;
2662}
2663
2664/* a div that holds a short description */
2665.jd-descrdiv {
2666 padding:3px 1em 0 1em;
2667 margin:0;
2668 border:0;
2669}
2670
2671#jd-content img.jd-expando-trigger-img {
2672 padding:0 4px 4px 0;
2673 margin:0;
2674}
2675
2676.jd-sumtable-subclasses div#subclasses-direct,
2677.jd-sumtable-subclasses div#subclasses-indirect {
2678 margin:0 0 0 13px;
2679}
2680
2681
2682
2683/********* MEMBER REF *************/
2684
2685
2686.jd-details {
2687/* border:1px solid #669999;
2688 padding:4px; */
2689 margin:0 0 1em;
2690}
2691
2692/* API reference: a container for the
2693.tagdata blocks that make up the detailed
2694description */
2695.jd-details-descr {
2696 padding:0;
2697 margin:.5em .25em;
2698}
2699
2700/* API reference: a block containing
2701a detailed description, a params table,
2702seealso list, etc */
2703.jd-tagdata {
2704 margin:.5em 1em;
2705}
2706
2707.jd-tagdata p {
2708 margin:0 0 1em 1em;
2709}
2710
2711/* API reference: adjustments to
2712the detailed description block */
2713.jd-tagdescr {
2714 margin:.25em 0 .75em 0;
2715}
2716
2717.jd-tagdescr ol,
2718.jd-tagdescr ul {
2719 margin:0 2.5em;
2720 padding:0;
2721}
2722
2723.jd-tagdescr table,
2724.jd-tagdescr img {
2725 margin:.25em 1em;
2726}
2727
2728.jd-tagdescr li {
2729margin:0 0 .25em 0;
2730padding:0;
2731}
2732
2733/* API reference: heading marking
2734the details section for constants,
2735attrs, methods, etc. */
2736h4.jd-details-title {
2737 font-size:1.15em;
2738 background-color: #E2E2E2;
2739 margin:1.5em 0 .6em;
2740 padding:3px 95px 3px 3px; /* room for api-level */
2741}
2742
2743h4.jd-tagtitle {
2744 margin:0;
2745}
2746
2747h4 .normal {
2748 font-weight:normal;
2749}
2750
2751/* API reference: heading for "Parameters", "See Also", etc.,
2752in details sections */
2753h5.jd-tagtitle {
2754 margin:0 0 .25em 0;
2755 font-size:1em;
2756}
2757
2758.jd-tagtable {
2759 margin:0;
2760 background-color:transparent;
2761}
2762
2763.jd-tagtable td,
2764.jd-tagtable th {
2765 border:none;
2766 background-color:#fff;
2767 vertical-align:top;
2768 font-weight:normal;
2769 padding:2px 10px;
2770}
2771
2772.jd-tagtable th {
2773 font-style:italic;
2774}
2775
2776/* Inline api level indicator for methods */
2777div.api-level {
2778 font-size:.8em;
2779 font-weight:normal;
2780 color:#999;
2781 float:right;
2782 padding:0 8px 0;
2783 margin-top:-30px;
2784}
2785
2786table.jd-tagtable td,
2787table.jd-tagtable th {
2788 background-color:transparent;
2789}
2790
2791table.jd-tagtable th {
2792 color:inherit;
2793}
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817/* SEARCH FILTER */
2818
2819#search_autocomplete {
2820 font-weight:normal;
2821}
2822
2823#search_filtered_wrapper {
2824 width: 193px;
2825 float: right;
2826}
2827#search_filtered_div {
2828 position:absolute;
2829 z-index:9999;
2830 min-width:171px; /* +padding and border makes this match input width */
2831 padding:5px;
2832 border: solid 1px #C5C5C5;
2833 background: white;
2834 top: 35px;
2835 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
2836 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2837 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2838}
2839
2840ul#search_filtered {
2841 min-width:100%;
2842 margin:0;
2843 list-style: none;
2844 margin: 0;
2845 padding: 0;
2846}
2847
2848
2849#search_filtered li{
2850 line-height:1.5em;
2851 margin: 0 0 2px;
2852 padding: 0;
2853}
2854
2855#search_filtered li a {
2856 padding:0 5px;
2857 color:#444 !important;
2858}
2859
2860#search_filtered .jd-selected {
2861 background-color: #33B5E5;
2862 cursor:pointer;
2863}
2864#search_filtered .jd-selected,
2865#search_filtered .jd-selected a {
2866 color:#f7f7f7 !important;
2867}
2868
2869.no-display {
2870 display: none;
2871}
2872
2873.jd-autocomplete {
2874 padding-left: 6px;
2875 padding-right: 6px;
2876 padding-top: 1px;
2877 padding-bottom: 1px;
2878 font-size: 0.81em;
2879 border: none;
2880 margin: 0;
2881 line-height: 1.05em;
2882}
2883
2884.show-item {
2885 display: table-row;
2886}
2887.hide-item {
2888 display: hidden;
2889}
2890
2891
2892
2893
2894
2895/* SEARCH RESULTS */
2896
2897/* disable twiddle and size selectors for left column */
2898#leftSearchControl div {
2899 padding:0;
2900}
2901
2902#leftSearchControl .gsc-twiddle {
2903 background-image : none;
2904}
2905
2906#leftSearchControl td, #searchForm td {
2907 border: 0px solid #000;
2908 padding:0;
2909}
2910
2911#leftSearchControl .gsc-resultsHeader .gsc-title {
2912 padding-left : 0px;
2913 font-weight : bold;
2914 font-size : 13px;
2915 color:#006699;
2916 display : none;
2917}
2918
2919#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
2920 display : none;
2921}
2922
2923#leftSearchControl .gsc-resultsRoot {
2924 padding-top : 6px;
2925}
2926
2927#leftSearchControl div.gs-visibleUrl-long {
2928 display : block;
2929 color:#006699;
2930}
2931
2932#leftSearchControl .gsc-webResult {
2933 padding:0 0 20px 0;
2934}
2935
2936.gsc-webResult div.gs-visibleUrl-short,
2937table.gsc-branding,
2938.gsc-clear-button {
2939 display : none;
2940}
2941
2942.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
2943.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
2944#leftSearchControl a,
2945#leftSearchControl a b {
2946 color:#006699;
2947}
2948
2949.gsc-resultsHeader {
2950 display: none;
2951}
2952
2953/* Disable built in search forms */
2954.gsc-control form.gsc-search-box {
2955 display : none;
2956}
2957table.gsc-search-box {
2958 margin:6px 0 0 0;
2959 border-collapse:collapse;
2960}
2961
2962td.gsc-input {
2963 padding:0 2px;
2964 width:100%;
2965 vertical-align:middle;
2966}
2967
2968input.gsc-input {
2969 border:1px solid #BCCDF0;
2970 width:99%;
2971 padding-left:2px;
2972 font-size:.95em;
2973}
2974
2975td.gsc-search-button {
2976 text-align: right;
2977 padding:0;
2978 vertical-align:top;
2979}
2980
2981
2982#searchResults {
2983 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
2984(it doesn't) */
2985 height:auto;
2986}
2987
2988#searchResults .gsc-control {
2989 position:relative;
2990 width:auto;
2991 padding:0 0 10px;
2992}
2993
2994#searchResults .gsc-tabsArea {
2995 position:relative;
2996 white-space:nowrap;
2997 float:left;
2998 width:200px;
2999}
3000
3001#searchResults .gsc-above-wrapper-area {
3002 display:none;
3003}
3004
3005#searchResults .gsc-resultsbox-visible {
3006 float:left;
3007 width:720px;
3008 margin-left:20px;
3009}
3010
3011#searchResults .gsc-tabHeader {
3012 padding: 3px 6px;
3013 position:relative;
3014 width:auto;
3015 display:block;
3016}
3017
3018#searchResults h2#searchTitle {
3019 padding:0;
3020 margin:5px 0;
3021 border:none;
3022}
3023
3024#searchResults h2#searchTitle em {
3025 font-style:normal;
3026 color:#33B5E5;
3027}
3028
3029#searchResults .gsc-table-result {
3030 margin:5px 0 10px 0;
3031 background-color:transparent;
3032}
3033#searchResults .gs-web-image-box, .gs-promotion-image-box {
3034 width:120px;
3035}
3036#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3037 max-width:120px;
3038}
3039
3040#searchResults .gsc-table-result .gsc-thumbnail {
3041 padding:0 20px 0 0;
3042}
3043
3044#searchResults td {
3045 background-color:transparent;
3046}
3047
3048#searchResults .gsc-expansionArea {
3049 position:relative;
3050}
3051#searchResults .gsc-tabsArea .gsc-cursor-box {
3052 width:200px;
3053 padding:20px 0 0 1px;
3054}
3055#searchResults .gsc-cursor-page {
3056 display:inline-block;
3057 float:left;
3058 margin:-1px 0 0 -1px;
3059 padding:0;
3060 height:27px;
3061 width:27px;
3062 text-align:center;
3063 line-height:2;
3064}
3065
3066#searchResults .gsc-tabHeader.gsc-tabhInactive,
3067#searchResults .gsc-cursor-page {
3068 text-decoration:none;
3069 color:#258AAF;
3070 border: solid 1px #DADADA;
3071}
3072
3073#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3074#searchResults .gsc-cursor-page:hover {
3075 border-color: #DBDBDB;
3076 background-color: #F3F3F3;
3077 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3078 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3079 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3080 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3081 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3082 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3083 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3084EndColorStr='#ececec');
3085 color: #33B5E5;
3086}
3087
3088#searchResults .gsc-tabHeader.gsc-tabhActive,
3089#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3090#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3091#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3092 color:#fff;
3093 background-color: #09C;
3094 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3095 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3096 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3097 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3098 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3099 background-image: linear-gradient(top, #2FADDB, #09C);
3100 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3101 border: 1px solid #3990AB;
3102 z-index:100;
3103}
3104
3105}
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119/*********** PREVIOUSLY dac-styles.css ***************/
3120
3121
3122
3123
3124
3125::-webkit-selection,
3126::-moz-selection,
3127::selection {
3128 background-color: #0099cc;
3129 color: #fff; }
3130
3131#header {
3132 border-bottom:0;
3133}
3134
3135#header .wrap {
3136 max-width:940px;
3137 height:41px;
3138 border-bottom:1px solid;
3139 border-color: #ccc;
3140 position:relative;
3141}
3142
3143.about #header .wrap {
3144 border-color: #9933CC;
3145}
3146
3147.design #header .wrap {
3148 border-color: #33b5e5;
3149}
3150
3151.develop #header .wrap {
3152 border-color: #F80;
3153}
3154
3155.distribute #header .wrap {
3156 border-color: #9C0;
3157}
3158
3159.logo a {
3160 width:123px;
3161 float:left;
3162}
3163
3164#header .logo {
3165 margin-top: -6px;
3166 margin-left: 0px;
3167 margin-bottom:0px;
3168 width: 160px;
3169 padding-right:10px;
3170}
3171
3172.search {
3173 height:25px;
3174 margin-top: -3px;
3175 margin-bottom: 0px;
3176}
3177
3178
3179
3180/* Quicknav */
3181.btn-quicknav {
3182 width:20px;
3183 height:28px;
3184 float:left;
3185 margin-left:6px;
3186 padding-right:10px;
3187 position:relative;
3188 cursor:pointer;
3189 border-right:1px solid #CCC;
3190}
3191
3192.btn-quicknav a {
3193 zoom:1;
3194 position:absolute;
3195 top:13px;
3196 left:5px;
3197 display:block;
3198 text-indent:-9999em;
3199 width:10px;
3200 height:5px;
3201 background:url(../images/quicknav_arrow.png) no-repeat;
3202}
3203
3204.btn-quicknav a.arrow-active {
3205 background-position: 0 -5px;
3206 display:none;
3207}
3208
3209#header-wrap.quicknav a.arrow-inactive {
3210 display:none;
3211}
3212
3213.btn-quicknav.active a.arrow-active {
3214 display:block;
3215}
3216
3217.nav-x li {
3218 display:block;
3219 float:left;
3220 margin-right:45px;
3221 -webkit-transition: all 0.25s linear;
3222 -moz-transition: all 0.25s linear;
3223 -ms-transition: all 0.25s linear;
3224 -o-transition: all 0.25s linear;
3225 transition: all 0.25s linear;
3226}
3227
3228#header-wrap.quicknav .nav-x li {
3229 min-width:160px;
3230 margin-right:20px;
3231}
3232
3233#header-wrap.quicknav li.last {
3234 margin-right:0px;
3235}
3236
3237#quicknav {
3238 float:none;
3239 clear:both;
3240 margin-left:180px;
3241 margin-top:-30px;
3242 display:none;
3243 overflow:hidden;
3244}
3245
3246#header-wrap.quicknav #quicknav {
3247
3248}
3249
3250#quicknav ul {
3251 margin:10px 0;
3252 padding:0;
3253}
3254
3255#quicknav ul li.design {
3256 border-top:1px solid #33b5e5;
3257}
3258
3259#quicknav ul li.develop {
3260 border-top:1px solid #FF8800;
3261}
3262
3263#quicknav ul li.distribute {
3264 border-top:1px solid #99cc00;
3265}
3266
3267#quicknav ul li {
3268 display:block;
3269 float:left;
3270 margin:0 20px 0 0;
3271 min-width:140px;
3272}
3273
3274#quicknav ul li.last {
3275 margin-right:0px;
3276}
3277
3278#quicknav ul li ul li {
3279 float:none;
3280}
3281
3282#quicknav ul li ul li a {
3283 color:#444444;
3284}
3285
3286#quicknav ul li li ul,
3287#quicknav ul li li ul li {
3288 margin:0;
3289}
3290
3291#quicknav ul li li ul li:before {
3292 content:"\21B3";
3293}
3294
3295#header-wrap {
3296 -webkit-transition: all 0.25s ease-out;
3297 -moz-transition: all 0.25s ease-out;
3298 -ms-transition: all 0.25s ease-out;
3299 -o-transition: all 0.25s ease-out;
3300 transition: all 0.25s ease-out;
3301
3302}
3303
3304#header-wrap.quicknav {
3305 height:170px;
3306
3307}
3308
3309/* SEARCH AND MORE */
3310.search {
3311 position: absolute;
3312 width: 50px;
3313 height:28px;
3314 display: block;
3315 margin-top:-3px;
3316 margin-bottom:7px;
3317 overflow:hidden;
3318 z-index:100;
3319 right:54px;
3320 -webkit-transition: width 0.4s ease;
3321 -moz-transition: width 0.4s ease;
3322 -o-transition: width 0.4s ease;
3323 transition: width 0.4s ease;
3324}
3325
3326.search #search-btn {
3327 width:50px;
3328 height:28px;
3329 background:url(../images/icon_search.png) no-repeat;
3330 float:left;
3331}
3332
3333.search-inner {
3334 width:245px;
3335}
3336
3337.search:hover, .search.active {
3338 width:245px;
3339}
3340
3341.search .bottom, .search .left, .search .right {
3342 position: absolute;
3343 background-color: #a2a2a2
3344}
3345
3346.search .bottom {
3347 width: 214px;
3348 height: 1px;
3349 top: 24px;
3350 left: 0
3351}
3352
3353.search .left, .search .right {
3354 height: 5px;
3355 width: 1px
3356}
3357
3358.search .left {
3359 top: 22px;
3360 left: 56px;
3361 background-color:#CCC;
3362}
3363
3364.search .right {
3365 top: 22px;
3366 left: 238px;
3367 background-color:#CCC;
3368}
3369
3370.search form {
3371 margin-top: 2px;
3372 width: 162px;
3373 float:left;
3374}
3375
3376.search form input {
3377 color: #2f2f2f;
3378 font-size: 0.95em;
3379 width: 178px;
3380 border: none;
3381 margin-left: 6px;
3382 z-index: 1500;
3383 position: relative;
3384 background-color: transparent;
3385 border-bottom:1px solid #CCC;
3386 padding:0 0 0 4px;
3387 outline:none;
3388 height:24px;
3389}
3390
3391.search:hover form input {
3392 border-bottom:1px solid #33B5E5;
3393}
3394
3395.search:hover .bottom, .search:hover .left, .search:hover .right {
3396 background-color: #33b5e5;
3397}
3398
3399.search:hover #search-btn {
3400 background-position: 0 -28px
3401}
3402
3403.search form input:focus {
3404 color: #444;
3405 font-weight: bold
3406}
3407
3408.moremenu {
3409 float: right;
3410 position: relative;
3411 width: 50px;
3412 height:28px;
3413 display: block;
3414 margin-top:-3px;
3415 margin-bottom:7px;
3416 overflow:hidden;
3417 -webkit-transition: width 0.25s ease;
3418 -moz-transition: width 0.25s ease;
3419 -o-transition: width 0.25s ease;
3420 transition: width 0.25s ease;
3421}
3422
3423.moremenu #more-btn {
3424 width:40px;
3425 height:28px;
3426 background:url(../images/icon_more.png) no-repeat;
3427 border-left:1px solid #CCC;
3428 float:left;
3429 cursor:pointer;
3430}
3431
3432.moremenu:hover #more-btn {
3433 background-position:0 -28px;
3434}
3435
3436.morehover {
3437 position:absolute;
3438 right:6px;
3439 top:-9px;
3440 width:40px;
3441 height:35px;
3442 z-index:99;
3443 overflow:hidden;
3444
3445 -webkit-opacity:0;
3446 -moz-opacity:0;
3447 -o-opacity:0;
3448 opacity:0;
3449
3450 -webkit-transform-origin:100% 0%;
3451 -moz-transform-origin:100% 0%;
3452 -o-transform-origin:100% 0%;
3453 transform-origin:100% 0%;
3454
3455 -webkit-transition-property: -webkit-opacity;
3456 -webkit-transition-duration: .25s;
3457 -webkit-transition-timing-function:ease;
3458
3459 -moz-transition-property: -webkit-opacity;
3460 -moz-transition-duration: .25s;
3461 -moz-transition-timing-function:ease;
3462
3463 -o-transition-property: -webkit-opacity;
3464 -o-transition-duration: .25s;
3465 -o-transition-timing-function:ease;
3466
3467 -transition-property: -webkit-opacity;
3468 -transition-duration: .25s;
3469 -transition-timing-function:ease;
3470}
3471
3472.morehover:hover {
3473 opacity:1;
3474 height:345px;
3475 width:268px;
3476 -webkit-transition-property:height, -webkit-opacity;
3477}
3478
3479.morehover .top {
3480 width:268px;
3481 height:39px;
3482 background:url(../images/more_top.png) no-repeat;
3483}
3484
3485.morehover .mid {
3486 width:228px;
3487 background:url(../images/more_mid.png) repeat-y;
3488 padding:10px 20px 10px 20px;
3489}
3490
3491.morehover .mid .header {
3492 border-bottom:1px solid #ccc;
3493 font-weight:bold;
3494}
3495
3496.morehover .bottom {
3497 width:268px;
3498 height:6px;
3499 background:url(../images/more_bottom.png) no-repeat;
3500}
3501
3502.morehover ul {
3503 margin:10px 10px 20px 0;
3504}
3505
3506.morehover ul li {
3507 list-style:none;
3508}
3509
3510.morehover ul li.active a,
3511.morehover ul li.active a:hover {
3512 color:#444 !important;
3513}
3514
3515.morehover ul li.active img {
3516 margin-right:4px;
3517}
3518
3519
3520
3521
3522/* MARQUEE */
3523.slideshow-container {
3524 width:100%;
3525 overflow:hidden;
3526 position:relative;
3527}
3528.slideshow-container .slideshow-prev {
3529 position:absolute;
3530 top:50%;
3531 left:0px;
3532 margin-top:-36px;
3533 z-index:99;
3534}
3535.slideshow-container .slideshow-next {
3536 position:absolute;
3537 top:50%;
3538 margin-top:-36px;
3539 z-index:99;
3540 right:0px;
3541}
3542
3543.slideshow-container .pagination {
3544 position:absolute;
3545 bottom:20px;
3546 width:100%;
3547 text-align:center;
3548 z-index:99;
3549}
3550.slideshow-container .pagination ul {
3551 margin:0;
3552}
3553.slideshow-container .pagination ul li{
3554 display: inline-block;
3555 width:12px;
3556 height:12px;
3557 text-indent:-8000px;
3558 list-style:none;
3559 margin: 0 2px;
3560 border-radius:6px;
3561 background-color:#ccc;
3562 cursor:pointer;
3563 -webkit-transition:color .5s ease-in;
3564 -moz-transition:color .5s ease-in;
3565 -o-transition:color .5s ease-in;
3566 transition:color .5s ease-in;
3567}
3568.slideshow-container .pagination ul li:hover {
3569 background-color:#999;
3570}
3571.slideshow-container .pagination ul li.active {
3572 background-color:#33b5e5;
3573}
3574.slideshow-container .pagination ul li.active:hover {
3575 background-color:#33b5e5;
3576}
3577.slideshow-container ul li {
3578 display:inline;
3579 list-style:none;
3580}
3581
3582
3583
3584
3585a.download-sdk {
3586 float:right;
3587 margin:-10px 0;
3588 height:30px;
3589 padding-top:4px;
3590 padding-bottom:0px;
3591}
3592
3593#nav-x {
3594 padding-top: 14px;
3595}
3596
3597#nav-x .wrap,
3598#searchResults.wrap {
3599 max-width:940px;
3600 border-bottom:1px solid #CCC;
3601 min-height:34px;
3602
3603}
3604
3605
3606.nav-x {
3607 margin-left:0;
3608 margin-bottom:0;
3609}
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620/*
3621 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3622 */
3623
3624.jspContainer {
3625 overflow: hidden;
3626 position: relative;
3627}
3628
3629.jspPane {
3630 position: absolute;
3631 overflow: hidden;
3632 width:auto !important; /* to avoid cut-off api names in reference in horiz scroll */
3633}
3634
3635.jspVerticalBar {
3636 position: absolute;
3637 top: 0;
3638 right: 0;
3639 width: 4px;
3640 height: 100%;
3641 background: #f5f5f5;
3642}
3643
3644.jspHorizontalBar {
3645 position: absolute;
3646 bottom: 0;
3647 left: 0;
3648 width: 100%;
3649 height: 4px;
3650 background: #f5f5f5;
3651}
3652
3653.jspVerticalBar *,
3654.jspHorizontalBar * {
3655 margin: 0;
3656 padding: 0;
3657}
3658.jspCap {
3659 display: block;
3660}
3661
3662.jspVerticalBar .jspCap {
3663 height: 4px;
3664}
3665
3666.jspHorizontalBar .jspCap {
3667 width: 0;
3668 height: 100%;
3669}
3670
3671.jspHorizontalBar .jspCap {
3672 float: left;
3673}
3674
3675.jspTrack {
3676 position: relative;
3677}
3678
3679.jspDrag {
3680 background: #bbb;
3681 position: relative;
3682 top: 0;
3683 left: 0;
3684 cursor: pointer;
3685}
3686
3687.jspDrag:hover,
3688.jspDrag:active {
3689 border-color: #09c;
3690 background-color: #4cadcb;
3691 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
3692 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
3693 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
3694 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
3695 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
3696 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
3697 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
3698}
3699
3700.jspHorizontalBar .jspTrack,
3701.jspHorizontalBar .jspDrag {
3702 float: left;
3703 height: 100%;
3704}
3705
3706.jspArrow {
3707 background: #999;
3708 text-indent: -20000px;
3709 display: block;
3710 cursor: pointer;
3711}
3712
3713.jspArrow.jspDisabled {
3714 cursor: default;
3715 background: #ccc;
3716}
3717
3718.jspVerticalBar .jspArrow {
3719 height: 16px;
3720}
3721
3722.jspHorizontalBar .jspArrow {
3723 width: 16px;
3724 float: left;
3725 height: 100%;
3726}
3727
3728.jspVerticalBar .jspArrow:focus {
3729 outline: none;
3730}
3731
3732.jspCorner {
3733 float: left;
3734 height: 100%;
3735}
3736
3737/* Yuk! CSS Hack for IE6 3 pixel bug :( */
3738* html .jspCorner {
3739 margin: 0 -3px 0 0;
3740}
3741/******* end of jscrollpane *********/
3742
3743
3744
3745
3746
3747/************ DEVELOP HOMEPAGE ******************/
3748
3749/* Slideshow */
3750.slideshow-develop {
3751 height: 300px;
3752 width: 940px;
3753 position: relative;
3754 overflow:hidden;
3755}
3756.slideshow-develop .frame {
3757 width: 940px;
3758 height: 300px;
3759}
3760.slideshow-develop img.play {
3761 width:350px;
3762 margin:20px 0 0 90px;
3763 -webkit-transform: perspective(800px ) rotateY( 35deg );
3764 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3765 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3766 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3767}
3768.slideshow-develop img.play.no-shadow {
3769 box-shadow: none;
3770 -moz-box-shadow: none;
3771 -webkit-box-shadow: none;
3772}
3773.slideshow-develop img.play.no-transform {
3774 -webkit-transform: none;
3775}
3776.slideshow-develop a.slideshow-next {
3777 background: url(../images/arrow-right-develop.png);
3778}
3779.slideshow-develop a.slideshow-prev {
3780 background: url(../images/arrow-left-develop.png);
3781}
3782.slideshow-develop .content-right {
3783 float: left;
3784}
3785.slideshow-develop .content-right p.title-intro {
3786 position:absolute;
3787 margin:0;
3788}
3789.slideshow-develop .content-right h2 {
3790 padding:0;
3791 margin-bottom:10px;
3792 border:none;
3793}
3794.slideshow-develop .item {
3795 height: 300px;
3796 width: 940px;
3797}
3798.slideshow-develop .pagination ul li.active {
3799 background-color: #F80;
3800}
3801.slideshow-develop .pagination ul li.active:hover {
3802 background-color: #F80;
3803}
3804
3805/* Feeds */
3806.feed ul {
3807 margin: 0;
3808}
3809.feed .feed-nav {
3810 height: 25px;
3811 border-bottom: 1px solid #CCC;
3812}
3813.feed .feed-nav li {
3814 list-style: none;
3815 float: left;
3816 margin-right: 25px;
3817 cursor: pointer;
3818}
3819.feed .feed-nav li.active {
3820 color: #000;
3821 border-bottom: 4px solid #F80;
3822}
3823.feed .feed-container {
3824 overflow: hidden;
3825 width: 460px;
3826}
3827.feed .feed-container .feed-frame {
3828 width: 1000px;
3829}
3830.feed .feed-container .feed-frame ul {
3831 float: left;
3832 width:460px;
3833}
3834.feed .feed-container .feed-frame ul ul {
3835 float: none;
3836 margin:10px 0 0 30px;
3837}
3838.feed .feed-container .feed-frame li {
3839 list-style: none;
3840 margin: 20px 0 20px 0;
3841 width: 460px;
3842 height:93px;
3843}
3844.feed .feed-container .feed-frame li.playlist {
3845 height:auto;
3846}
3847.feed .feed-container .feed-frame li.playlist a {
3848 height:93px;
3849 display:block;
3850}
3851.feed .feed-container .feed-frame li.more {
3852 height:20px;
3853 margin:10px 0 5px 5px;
3854}
3855.feed .feed-container .feed-frame li.more a {
3856 height:inherit;
3857}
3858.feed .feed-container .feed-frame li.playlist-video {
3859 list-style: none;
3860 margin: 0;
3861 width: 460px;
3862 height:55px;
3863 font-size:12px;
3864}
3865.feed .feed-container .feed-frame li.playlist-video a {
3866 height:45px;
3867 padding:5px;
3868}
3869.feed .feed-container .feed-frame li.playlist-video h5 {
3870 font-size:12px;
3871 line-height:13px;
3872 margin:0;
3873}
3874.feed .feed-container .feed-frame li.playlist-video p {
3875 margin:5px 0 0;
3876 line-height:15px;
3877}
3878.feed-container .feed-frame div.feed-image {
3879 float: left;
3880 border: 1px solid #999;
3881 margin:0 20px 0 0;
3882 width:122px;
3883 height:92px;
3884 background:url('../images/blog-default.png') no-repeat 0 0;
3885 background-size:180px;
3886}
3887#jd-content .feed .feed-container .feed-frame li img {
3888 float: left;
3889 border: 1px solid #999;
3890 margin:0 20px 0 0;
3891 width:122px;
3892 height:92px;
3893}
3894#jd-content .feed .feed-container .feed-frame li.playlist-video img {
3895 width:inherit;
3896 height:inherit;
3897}
3898
3899.feed .feed-container .feed-frame li a,
3900.feed .feed-container .feed-frame li a:active {
3901 color:#555 !important;
3902}
3903
3904.feed .feed-container .feed-frame li a:hover,
3905.feed .feed-container .feed-frame li a:hover * {
3906 color:#7AA1B0 !important;
3907}
3908
3909/* Video player */
3910#player-wrapper {
3911 display:none;
3912 margin: -1px auto 0;
3913 position: relative;
3914 width: 940px;
3915 height: 0px;
3916}
3917#player-frame {
3918 background: #EFEFEF;
3919 border: 1px solid #CCC;
3920 padding: 0px 207px;
3921 z-index: 10; /* stay above marque, but below search suggestions */
3922 width: 525px;
3923 height: 330px;
3924 position: relative;
3925}
3926
3927
3928
3929/************ DISTRIBUTE HOMEPAGE ***************/
3930
3931.marquee {
3932 width: 760px;
3933}
3934.marquee .main-img {
3935 float: left;
3936 margin-top: 20px;
3937 width: 490px;
3938}
3939.marquee .copy {
3940 width: 270px;
3941 float: left;
3942 margin-top: 30px;
3943}
3944.distribute-features {
3945 margin: 0;
3946}
3947.distribute-features ul {
3948 margin: 0;
3949}
3950.distribute-features ul li {
3951 list-style: none;
3952 float: left;
3953 border-top: 1px solid #9C0;
3954 width: 220px;
3955 margin-right: 50px;
3956}
3957.distribute-features ul li.last {
3958 margin-right: 0px;
3959}
3960
3961
3962/************ DEVELOP TOPIC CONTAINERS ************/
3963
3964.landing-banner,
3965.landing-docs {
3966 margin:20px 0 0;
3967}
3968.landing-banner {
3969 height:280px;
3970}
3971.landing-banner .col-6:first-child,
3972.landing-docs .col-6:first-child {
3973 margin-left:0;
3974}
3975.landing-banner .col-6:last-child,
3976.landing-docs .col-6:last-child {
3977 margin-right:0;
3978}
3979
3980.landing-banner h1 {
3981 margin-top:0;
3982}
3983.landing-docs h3 {
3984 font-size:14px;
3985 line-height:21px;
3986 color:#555;
3987 text-transform:uppercase;
3988 border-bottom:1px solid #CCC;
3989 margin:0 0 20px;
3990}
3991.landing-docs a {
3992 color:#333 !important;
3993}
3994.landing-docs a:hover,
3995.landing-docs a:hover * {
3996 color:#7AA1B0 !important
3997}
3998
3999.plusone {
4000 float:right;
4001}