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