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