blob: 865e8506824bf0e30b5bc37bd0d39b5da9577b66 [file] [log] [blame]
Scott Maine4d8f1b2012-06-21 18:03:05 -07001/* color definitions */
2/* 16 column layout */
3/* clearfix idiom */
4/* common mixins */
5/* page layout + top-level styles */
Scott Maine4d8f1b2012-06-21 18:03:05 -07006::selection {
7 background-color: #0099cc;
8 color: #fff; }
Scott Mainb7f96372013-02-07 16:56:43 -08009::-webkit-selection {
10 background-color: #0099cc;
11 color: #fff; }
12::-moz-selection {
13 background-color: #0099cc;
14 color: #fff; }
Scott Maine4d8f1b2012-06-21 18:03:05 -070015
16html, body {
17 height: 100%;
18 margin: 0;
19 padding: 0;
20 background-color:#F9F9F9;
21 -webkit-font-smoothing: antialiased;
22 /* prevent subpixel antialiasing, which thickens the text */
23 /* text-rendering: optimizeLegibility; */
24 /* turned off ligatures due to bug 5945455 */ }
25
26body {
Scott Main9ada2262012-06-23 14:59:36 -070027 color: #222;
Scott Main6a7a66b2012-06-23 11:20:48 -070028 font: 14px/19px Roboto, sans-serif;
Scott Maine4d8f1b2012-06-21 18:03:05 -070029 font-weight: 400;
30 letter-spacing:.1;
31 padding:0 10px; }
32
33#page-container {
34 width: 940px;
35 margin: 0 40px; }
36
37#page-header {
38 height: 80px;
39 margin-bottom: 20px;
40 font-size: 48px;
41 line-height: 48px;
42 font-weight: 100;
43 padding-left: 10px; }
44 #page-header a {
45 display: block;
46 position: relative;
47 top: 20px;
48 text-decoration: none;
49 color: #555555 !important; }
50
51#main-row {
52 display: inline-block; }
53 #main-row:after {
54 content: ".";
55 display: block;
56 height: 0;
57 clear: both;
58 visibility: hidden; }
59 * html #main-row {
60 height: 1px; }
61
62#page-footer {
63 margin-left: 190px;
64 margin-top: 80px;
65 color: #999999;
66 padding-bottom: 40px;
67 font-size: 12px;
68 line-height: 15px; }
69 #page-footer a {
70 color: #777777; }
71 #page-footer #copyright {
72 margin-bottom: 10px; }
73
74#nav-container {
75 width: 160px;
76 min-height: 10px;
77 margin-right: 20px;
78 float: left; }
79
80#nav {
81 margin:0;
82 padding:0 0 30px;
83}
84
85#side-nav {
86 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
87 margin-bottom:1px;
88}
89#devdoc-nav {
90 outline:none;
91 width:auto;
92 margin: 20px 0 0; }
93
94#devdoc-nav h2 {
95 border:0;
96}
97
98#devdoc-nav.fixed {
99 position: fixed;
100 margin:0;
101 top: 20px; }
Scott Main6b2dc272012-09-11 14:27:34 -0700102
103#devdoc-nav span.small {
104 font-size:12px;
105 font-weight:normal;
106}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700107
108#content {
109 width: 760px;
110 float: left; }
111
112a:hover,
113acronym:hover {
114 color: #7aa1b0 !important; }
115
116a:focus,
117a:active {
118 color: #33b5e5 !important; }
Scott Maind4cb7832012-11-28 11:10:09 -0800119
120a.external-link {
121 background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
122 padding-right:16px;
123}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700124
125img {
126 border: none; }
127#jd-content img {
128 margin-bottom:15px;
129}
130
131ul {
132 margin: 0;
133 padding: 0; }
134
135strong {
136 font-weight: 500; }
137
138em {
139 font-style: italic; }
140
Scott Maindb3678b2012-10-23 14:13:41 -0700141acronym,
142.tooltip-link {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700143 border-bottom: 1px dotted #555555;
144 cursor: help; }
145
Scott Maindb3678b2012-10-23 14:13:41 -0700146acronym:hover,
147.tooltip-link:hover {
148 color: #7aa1b0;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700149 border-bottom-color: #7aa1b0; }
150
151img.with-shadow,
152video.with-shadow {
153 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
154
155/* disclosures mixin */
156/* content layout */
157.layout-content-row {
158 display: inline-block;
159 margin-bottom: 10px; }
160 .layout-content-row:after {
161 content: ".";
162 display: block;
163 height: 0;
164 clear: both;
165 visibility: hidden; }
166 * html .layout-content-row {
167 height: 1px; }
168
169.layout-content-col {
170 float: left;
171 margin-left: 20px; }
172 .layout-content-col:first-child {
173 margin-left: 0; }
174 .layout-content-col h3,
175 .layout-content-col h4 {
176 margin-top:0; }
177
178.layout-content-col.span-1 {
179 width: 40px; }
180
181.layout-content-col.span-2 {
182 width: 100px; }
183
184.layout-content-col.span-3 {
185 width: 160px; }
186
187.layout-content-col.span-4 {
188 width: 220px; }
189
190.layout-content-col.span-5 {
191 width: 280px; }
192
193.layout-content-col.span-6 {
194 width: 340px; }
195
196.layout-content-col.span-7 {
197 width: 400px; }
198
199.layout-content-col.span-8 {
200 width: 460px; }
201
202.layout-content-col.span-9 {
203 width: 520px; }
204
205.layout-content-col.span-10 {
206 width: 580px; }
207
208.layout-content-col.span-11 {
209 width: 640px; }
210
211.layout-content-col.span-12 {
212 width: 700px; }
213
214.layout-content-col.span-13 {
215 width: 760px; }
216
217.vspace.size-1 {
218 height: 10px; }
219
220.vspace.size-2 {
221 height: 20px; }
222
223.vspace.size-3 {
224 height: 30px; }
225
226.vspace.size-4 {
227 height: 40px; }
228
229.vspace.size-5 {
230 height: 50px; }
231
232.vspace.size-6 {
233 height: 60px; }
234
235.vspace.size-7 {
236 height: 70px; }
237
238.vspace.size-8 {
239 height: 80px; }
240
241.vspace.size-9 {
242 height: 90px; }
243
244.vspace.size-10 {
245 height: 100px; }
246
247.vspace.size-11 {
248 height: 110px; }
249
250.vspace.size-12 {
251 height: 120px; }
252
253.vspace.size-13 {
254 height: 130px; }
255
256.vspace.size-14 {
257 height: 140px; }
258
259.vspace.size-15 {
260 height: 150px; }
261
262.vspace.size-16 {
263 height: 160px; }
264
265/* nav */
266#nav {
267 /* section header divs */
268 /* expanded section header divs */
269 /* sublinks */ }
270 #nav li {
271 list-style-type: none;
272 font-size: 14px;
273 margin:0;
274 padding:0;
275 line-height: 15px; }
276 #nav a {
277 color: #555555;
Scott Mainab4daf42012-11-30 11:27:17 -0800278 text-decoration: none;
279 word-wrap:break-word; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700280 #nav .nav-section-header {
281 position: relative;
282 margin-bottom: 1px;
283 padding: 0 30px 0 0; }
284 #nav li.selected a, #nav li.selected > .nav-section-header > a {
285 color: #09C;
286 }
287 #nav li.selected ul li a {
288 /* don't highlight child items */
289 color: #555555; }
290 #nav .nav-section .nav-section .nav-section-header {
291 /* no white line between second level sections */
292 margin-bottom: 0; }
293 /* section header links */
294 #nav > li > div > a {
295 display: block;
296 color: #333333;
297 font-weight: 500;
298 padding: 10px 0 10px 10px; }
299 #nav .nav-section-header:after {
300 content: '';
301 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
302 width: 34px;
303 height: 34px;
304 display: block;
305 position: absolute;
306 top: 0;
307 right: 0; }
308 #nav .nav-section-header.empty:after {
309 display: none; }
310 /* nested nav headers */
311 #nav .nav-section .nav-section {
312 position: relative;
313 padding: 0;
314 margin: 0; }
315 #nav .nav-section li a {
316 /* first gen child (2nd level li) */
317 display:block;
318 font-weight: normal;
319 text-transform: none;
320 padding: 7px 5px 7px 10px;
321 }
322 #nav .nav-section li li a {
323 /* second gen child (3rd level li) */
324 padding: 5px 5px 5px 10px;
325 }
326 #nav li.expanded .nav-section-header {
327 background:#e9e9e9;
328 background: rgba(0, 0, 0, 0.05); }
329 #nav li.expanded li .nav-section-header {
330 background: transparent; }
331 #nav li.expanded li ul {
332 /* 3rd level ul */
Scott Main502c9392012-11-27 15:00:40 -0800333 padding:0 0 0 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700334 }
335 #nav li.expanded > .nav-section-header:after {
336 content: '';
337 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
338 width: 34px;
339 height: 34px; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800340 #nav li.expanded li ul.tree-list-children {
341 padding:0;
342 }
343 #nav li.expanded li ul.tree-list-children .tree-list-children {
344 padding:0 0 0 10px;
345 }
346 #nav li span.tree-list-subtitle {
347 display:inline-block;
348 padding:5px 0 0 10px;
349 color:#555;
350 text-transform:uppercase;
351 font-size:12px;
352 }
353 #nav li span.tree-list-subtitle:before {
354 content: '—';
355 }
356 #nav li span.tree-list-subtitle:after {
357 content: '—';
358 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700359 #nav li ul {
360 display:none;
361 overflow: hidden;
362 margin: 0; }
363 #nav li ul.animate-height-in {
364 -webkit-transition: height 0.25s ease-in;
365 -moz-transition: height 0.25s ease-in;
366 transition: height 0.25s ease-in; }
367 #nav li ul.animate-height-out {
368 -webkit-transition: height 0.25s ease-out;
369 -moz-transition: height 0.25s ease-out;
370 transition: height 0.25s ease-out; }
371 #nav li ul li {
372 padding: 0; }
373 #nav li li li {
374 padding: 0; }
375 #nav li.expanded ul {
376 }
377 #nav li ul > li {
378 padding:0;
379 }
380 #nav li ul > li:last-child {
381 padding-bottom:5px;
382 }
Scott Mainac71b2b2012-11-30 14:40:58 -0800383 #nav li ul.tree-list-children > li:last-child {
384 padding-bottom:0;
385 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700386 #nav li.expanded ul > li {
387 background:#efefef;
388 background: rgba(0, 0, 0, 0.03); }
389 #nav li.expanded ul > li li {
390 background:inherit; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800391 #nav li ul.tree-list-children ul {
392 display:block; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700393
394.new,
395.new-child {
396 font-size: .78em;
397 font-weight: bold;
398 color: #ff3d3d;
399 vertical-align:top;
400 white-space:nowrap;
401}
402
403/* content header */
404.content-header {
405 height: 30px;
406 margin:20px 0 25px;
407 padding:0 0 10px;}
408.content-header.just-links {
409 margin-bottom:0;
410 padding-bottom:0;}
411
412.content-header h1 {
413 color:#000;
414 margin:0;
415 border-bottom:0;
416 padding:0;
417}
418
419.content-footer {
420 border-top: 1px solid #ccc;
421 margin-top: 10px;
422 padding-top:10px;
423 height: 30px; }
424
425.content-footer .col-9 {
426 margin-left:0;
427}
428.content-footer .col-4 {
429 margin-right:0;
430}
431.content-footer.wrap {
432 width:940px;
433}
434
435.paging-links {
436 position: relative; }
437 .paging-links a {
438 position: absolute; }
439 .paging-links a,
440 .training-nav-top a {
441 font-size: 14px;
442 line-height: 30px;
443 color: #555555;
444 text-decoration: none;
445 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700446 .paging-links .prev-page-link:before,
447 .training-nav-top .prev-page-link:before {
448 content: '';
449 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
450 width: 10px;
451 height: 10px;
452 display: inline-block;
453 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700454 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700455 .training-nav-top .start-class-link,
456 .training-nav-top .start-course-link {
457 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700458 .paging-links .prev-page-link {
459 left: -15px; }
460 .paging-links .next-page-link {
461 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700462 .next-page-link:after,
463 .start-class-link:after,
464 .start-course-link:after,
Scott Main0b2db162013-05-15 01:15:50 -0700465 .next-class-link:after,
466 .go-link:after {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700467 content: '';
468 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
469 width: 10px;
470 height: 10px;
471 display: inline-block;
472 margin-left: 5px; }
473
474
475 .training-nav-top a {
476 display:block;
477 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700478 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700479 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700480 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700481 line-height:28px;
482 text-align:center;
483 border:1px solid #DADADA;
484 border-bottom:0;
485 }
Scott Main5a1123e2012-09-26 12:51:28 -0700486
Scott Maine4d8f1b2012-06-21 18:03:05 -0700487 .training-nav-top a.next-page-link {
488 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700489 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700490 }
491
Scott Main5a1123e2012-09-26 12:51:28 -0700492 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700493 .training-nav-top a.disabled,
494 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700495 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700496 }
497
Scott Main5a1123e2012-09-26 12:51:28 -0700498 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700499 .training-nav-top a.disabled:hover,
500 .content-footer a.disabled:hover {
501 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700502 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700503 }
504
505 .training-nav-top a.start-class-link,
506 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700507 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700508 }
509
Scott Main5a1123e2012-09-26 12:51:28 -0700510 /* list of classes on course landing page */
511 ol.class-list {
512 list-style:none;
513 margin-left:0;
514 }
515 ol.class-list>li {
516 margin:0 0 15px;
517 padding:5px 0 0;
518 overflow:hidden;
519 border-top:1px solid #ccc;
520 }
521 ol.class-list li a.title {
522 font-size:16px;
523 margin:0;
524 clear:left;
525 display:block;
526 height:32px;
527 padding:0 4px;
528 }
529 ol.class-list li a.title h2 {
530 color:inherit;
531 margin:0 0 10px;
532 display:block;
533 float:left;
534 width:675px;
535 }
536 ol.class-list li a.title span {
537 display:none;
538 float:left;
539 font-size:18px;
540 font-weight:bold;
541 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
542 width: 10px;
543 height: 32px;
544 }
545 ol.class-list li a.title:hover {
546 background:#ddd;
547 color:#258AAF !important;
548 }
549 ol.class-list li a.title:hover span {
550 display:block;
551 }
552
553 #jd-content
554 ol.class-list li img {
555 float:left;
556 clear:left;
557 width:64px;
558 margin:0 20px 0 0;
559 }
560 ol.class-list li p.description {
561 float:left;
562 display:block;
563 width:250px;
564 margin:0;
565 }
566 ol.class-list li p.description.article {
567 width: 550px;
568 }
569 ol.class-list ol {
570 float:left;
571 width:320px;
572 margin:0 0 0 30px;
573 list-style:none;
574 margin:0 0 0 20px;
575 }
576 ol.class-list div.lessons li {
577 margin:0 0 6px;
578 line-height:16px;
579 }
580
581
Scott Maine4d8f1b2012-06-21 18:03:05 -0700582 .hide {
583 display:none !important;
584 }
585
586 .content-footer.next-class {
587 display:block;
588 border:0;
589 margin-top:0;
590 padding-top:0;
591 }
592
593 .content-footer.next-class a.next-class-link {
594 display:block;
595 float:right;
596 text-transform:uppercase;
597 }
Scott Mainbbffb4b2012-11-13 07:40:16 -0800598
599
600
601 /* inner-doc tabs w/ title */
602
603div#title-tabs-wrapper {
604 border-bottom:1px solid #ccc;
605 margin:20px 0 30px;
606}
607h1.with-title-tabs {
608 display:inline-block;
609 margin:0 0 -1px 0;
610 padding:0 60px 0 0;
611 border-bottom:1px solid #F9F9F9;
612}
613ul#title-tabs {
614 list-style:none;
615 padding:0;
616 height:29px;
617 margin:0;
618 font-size:16px;
619 line-height:26px;
620 display:inline-block;
621 vertical-align:bottom;
622}
623ul#title-tabs li {
624 display:block;
625 float:left;
626 margin-right:40px;
627 border-bottom: 3px solid transparent;
628}
629ul#title-tabs li.selected {
630 border-bottom: 3px solid #93C;
631}
632ul#title-tabs li a {
633 color:#333;
634}
635ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800636ul#title-tabs li a:active {
637 color:#93C !important;
638}
639
640
Scott Maine4d8f1b2012-06-21 18:03:05 -0700641
642/* content body */
643@-webkit-keyframes glowheader {
644 from {
645 background-color: #33b5e5;
646 color: #000;
647 border-bottom-color: #000; }
648
649 to {
650 background-color: transparent;
651 color: #33b5e5;
652 border-bottom-color: #33b5e5; } }
653
654@-moz-keyframes glowheader {
655 from {
656 background-color: #33b5e5;
657 color: #000;
658 border-bottom-color: #000; }
659
660 to {
661 background-color: transparent;
662 color: #33b5e5;
663 border-bottom-color: #33b5e5; } }
664
665@keyframes glowheader {
666 from {
667 background-color: #33b5e5;
668 color: #000;
669 border-bottom-color: #000; }
670
671 to {
672 background-color: transparent;
673 color: #33b5e5;
674 border-bottom-color: #33b5e5; } }
675
676h2:target,
677h3:target {
678 -webkit-animation-name: glowheader;
679 -moz-animation-name: glowheader;
680 animation-name: glowheader;
681 -webkit-animation-duration: 0.7s;
682 -moz-animation-duration: 0.7s;
683 animation-duration: 0.7s;
684 -webkit-animation-timing-function: ease-out;
685 -moz-animation-timing-function: ease-out;
686 animation-timing-function: ease-out; }
687
688.design ol h4 {
689 margin-bottom:0;
690}
691.design ol {
692 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700693 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700694 font-size: 14px;
695 line-height: 20px;
696 list-style-type: none;
697 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700698 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700699 content: counter(item) ". ";
700 counter-increment: item;
701 position: absolute;
702 left: -20px;
703 top: 0; }
704 .design ol li.value-1:before {
705 content: "1. "; }
706 .design ol li.value-2:before {
707 content: "2. "; }
708 .design ol li.value-3:before {
709 content: "3. "; }
710 .design ol li.value-4:before {
711 content: "4. "; }
712 .design ol li.value-5:before {
713 content: "5. "; }
714 .design ol li.value-6:before {
715 content: "6. "; }
716 .design ol li.value-7:before {
717 content: "7. "; }
718 .design ol li.value-8:before {
719 content: "8. "; }
720 .design ol li.value-9:before {
721 content: "9. "; }
722 .design ol li.value-10:before {
723 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700724.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700725 list-style-position: inside;
726 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700727 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700728 display: inline;
729 left: -20px;
730 float: left;
731 width: 17px;
732 color: #33b5e5;
733 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700734.design .with-callouts ul>li {
735 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700736
737/* special list items */
738li.no-bullet {
739 list-style-type: none !important; }
740li.no-bullet *{
741 margin:0; }
742
743.design li.with-icon {
744 position: relative;
745 margin-left: 20px;
746 min-height: 30px; }
747 .design li.with-icon p {
748 margin-left: 0 !important; }
749 .design li.with-icon:before {
750 position: absolute;
751 left: -40px;
752 top: 0;
753 content: '';
754 width: 30px;
755 height: 30px; }
756 .design li.with-icon.tablet:before {
757 background-image: url(../images/styles/ico_phone_tablet.png); }
758 .design li.with-icon.web:before {
759 background-image: url(../images/styles/ico_web.png); }
760 .design li.with-icon.action:before {
761 background-image: url(../images/styles/ico_action.png); }
762 .design li.with-icon.use:before {
763 background-image: url(../images/styles/ico_use.png); }
764
765/* figures and callouts */
766.figure {
767 position: relative; }
768 .figure.pad-below {
769 margin-bottom: 20px; }
770 .figure .figure-callout {
771 position: absolute;
772 color: #fff;
773 font-weight: 500;
774 font-size: 16px;
775 line-height: 23px;
776 text-align: center;
777 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
778 padding-right: 2px;
779 width: 30px;
780 height: 29px;
781 z-index: 1000; }
782 .figure .figure-callout.top {
783 top: -9px; }
784 .figure .figure-callout.right {
785 right: -5px; }
786
787.figure-caption {
788 margin: 0 10px 20px 0;
789 font-size: 14px;
790 line-height: 20px;
791 font-style: italic; }
792
793/* rows of figures */
794.figure-row {
795 font-size: 0;
796 line-height: 0;
797 /* to prevent space between figures */ }
798 .figure-row .figure {
799 display: inline-block;
800 vertical-align: top; }
801 .figure-row .figure + .figure {
802 margin-left: 10px;
803 /* reintroduce space between figures */ }
804
805/* video containers */
806.framed-galaxynexus-land-span-13 {
807 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
808scroll top left;
809 padding: 42px 122px 62px 126px;
810 overflow: hidden; }
811 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
812.framed-galaxynexus-land-span-13 img {
813 width: 512px;
814 height: 286px; }
815
Robert Lyd78354d2012-11-01 17:09:52 -0700816
817.framed-galaxynexus-land-span-8{
818 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
819scroll top left;
820 padding: 26px 68px 38px 72px;
821 overflow: hidden; }
822 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
823.framed-galaxynexus-land-span-8 img {
824 width: 320px;
825 height: 180px; }
826
Scott Maine4d8f1b2012-06-21 18:03:05 -0700827.framed-galaxynexus-port-span-9 {
828 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
829scroll top left;
830 padding: 95px 122px 107px 124px;
831 overflow: hidden; }
832 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
833.framed-galaxynexus-port-span-9 img {
834 width: 274px;
835 height: 488px; }
836
837.framed-galaxynexus-port-span-5 {
838 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
839scroll top left;
840 padding: 75px 31px 76px 33px;
841 overflow: hidden; }
842 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
843.framed-galaxynexus-port-span-5 img {
844 width: 216px;
845 height: 384px; }
846
847/* landing page disclosures */
848.landing-page-link {
849 text-decoration: none;
850 font-weight: 500;
851 color: #333333; }
852 .landing-page-link:after {
853 content: '';
854 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
855 width: 10px;
856 height: 10px;
857 display: inline-block;
858 margin-left: 5px; }
859
860/* tooltips */
861.tooltip-box {
862 position: absolute;
863 background-color: rgba(0, 0, 0, 0.9);
864 border-radius: 2px;
865 font-size: 14px;
866 line-height: 20px;
867 color: #fff;
868 padding: 6px 10px;
869 max-width: 250px;
870 z-index: 10000; }
871 .tooltip-box.below:after {
872 position: absolute;
873 content: '';
874 line-height: 0;
875 display: block;
876 top: -10px;
877 left: 5px;
878 border: 5px solid transparent;
879 border-bottom-color: rgba(0, 0, 0, 0.9); }
880
881/* video note */
882.video-instructions {
883 margin-top: 10px;
884 margin-bottom: 10px; }
885 .video-instructions:before {
886 content: '';
887 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
888 display: inline-block;
889 width: 12px;
890 height: 12px;
891 margin-right: 8px; }
892 .video-instructions:after {
893 content: 'Click device screen to replay movie.'; }
894
895/* download buttons */
896.download-button {
897 display: block;
898 margin-bottom: 5px;
899 text-decoration: none;
900 background-color: #33b5e5;
901 color: #fff !important;
902 font-weight: 500;
903 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
904 padding: 6px 12px;
905 border-radius: 2px; }
906 .download-button:hover, .download-button:focus {
907 background-color: #0099cc;
908 color: #fff !important; }
909 .download-button:active {
910 background-color: #006699; }
911
912/* UI tables and other things found in Writing style and Settings pattern */
913.ui-table {
914 width: 100%;
915 background-color: #282828;
916 color: #fff;
917 border-radius: 2px;
918 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
919 border-collapse: separate; }
920 .ui-table th,
921 .ui-table td {
922 padding: 5px 10px;
923 background-color: inherit;
924 border:0;}
925 .ui-table thead th {
926 font-weight: bold; }
927 .ui-table tfoot td {
928 border-top: 1px solid #494949;
929 border-right: 1px solid #494949;
930 text-align: center; }
931 .ui-table tfoot td:last-child {
932 border-right: 0; }
933
934.layout-with-list-item-margins {
935 margin-left: 30px !important; }
936
937.emulate-content-left-padding {
938 margin-left: 10px; }
939
940.do-dont-label {
941 margin-bottom: 10px;
942 padding-left: 20px;
943 background: transparent none no-repeat scroll 0px 3px; }
944 .do-dont-label.bad {
945 background-image: url(../images/styles/ico_wrong.png); }
946 .do-dont-label.good {
947 background-image: url(../images/styles/ico_good.png); }
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967/***** PREVIOUSLY style.css ******************/
968
969
970
971
972
973@media screen, projection, print {
974[dir='rtl'] {
975 direction: rtl;
976}
977html {
978 line-height: 20px;
979}
980pre, table, input, textarea, code {
981 font-size: 1em;
982}
983address, abbr, cite {
984 font-style: normal;
985}
986[dir='rtl'] th {
987 text-align: right;
988}
989html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
990html[lang^=zh] blockquote, html[lang^=zh] q {
991 font-style: normal;
992}
993q {
994 font-style: italic;
995}
996fieldset, iframe, img {
997 border: 0;
998}
999img {
Scott Mainb7f96372013-02-07 16:56:43 -08001000 -ms-interpolation-mode: bicubic;
1001 vertical-align: middle;
1002 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001003}
1004q {
1005 quotes: none;
1006}
1007sup, sub {
1008 font-size: 11px;
1009 line-height: 0;
1010}
1011}
1012
1013@media screen, projection {
1014
1015table, fieldset {
1016 margin: 0;
1017}
1018h1 {
1019 color:#333;
1020 font-size: 22px;
1021 margin: 20px 0 20px;
1022 padding:0 0 10px;
1023}
1024h1, h2 {
1025 line-height: 32px;
1026}
1027h1.short {
1028 margin-right:320px;
1029}
1030h1.short {
1031 margin-right:320px;
1032}
1033h1.super {
Scott Mainb7f96372013-02-07 16:56:43 -08001034 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001035}
1036h2 {
1037 color:#333;
1038 font-size: 20px;
1039 margin: 20px 0 20px;
1040 padding:0;
1041}
1042h3 {
1043 color:#333;
1044 font-size: 18px;
1045}
1046h3, h4 {
1047 color:#333;
1048 line-height: 20px;
1049 margin: 10px 0;
1050}
1051h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001052 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001053}
1054h5 {
Scott Mainb7f96372013-02-07 16:56:43 -08001055 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001056}
1057h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001058 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001059}
1060h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001061 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001062}
1063hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001064 height: 1px;
1065 margin: 5px 0 20px;
1066 border: 0;
1067 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001068}
1069p, pre, table, form {
1070 margin: 0 0 15px;
1071}
1072small {
Scott Mainb7f96372013-02-07 16:56:43 -08001073 font-size: 11.5px;
1074 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001075}
1076ul, ol {
1077 margin: 0 0 15px 18px;
1078 padding: 0;
1079}
1080[dir='rtl'] ul, [dir='rtl'] ol {
1081 margin: 10px 30px 10px 10px;
1082}
1083ul ul, ul ol, ol ul, ol ol {
1084 margin-bottom: 0;
1085 margin-top: 0;
1086}
1087li {
Scott Main52948fc2012-09-18 11:27:59 -07001088 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001089}
1090dd {
1091 margin:0 0 10px 30px;
1092}
Scott Maina07be8e2013-03-06 12:12:21 -08001093dd p,
1094dd pre,
1095dd ul,
1096dd ol,
1097dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001098 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001099}
Scott Maindb3678b2012-10-23 14:13:41 -07001100li p,
1101li pre,
1102li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001103li ol,
1104li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001105 margin-top:5px;
1106 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001107}
1108pre strong, pre b, a strong, a b, a code {
1109 color: inherit;
1110}
1111pre, code {
1112 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001113 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001114}
1115code {
1116 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001117 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001118}
1119
1120legend {
1121 display: none;
1122}
1123a:link, a:visited {
1124 color: #258aaf;
1125 text-decoration: none;
1126}
1127a:focus, a:hover, a:active {
1128 color: #33B5E5;
1129 text-decoration: none;
1130}
1131strong, b {
1132 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001133 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001134}
1135table {
1136 border-collapse: collapse;
1137 border-spacing: 0;
1138 border:0;
1139 margin: .5em 1em 1em 0;
1140 width:100%; /* consistent table widths; within IE's quirks */
1141 background-color:#f7f7f7;
1142}
1143th, td {
1144 padding: 4px 12px;
1145 vertical-align: top;
1146 text-align: left;
1147}
1148td {
1149 background-color:inherit;
1150 border:solid 1px #DDD;
1151}
Scott Maineb410352013-01-14 19:03:40 -08001152td *:last-child {
1153 margin-bottom:0;
1154}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001155th {
1156 background-color: #999;
1157 color: #fff;
1158 border:solid 1px #DDD;
1159 font-weight: normal;
1160}
1161tr:first-of-type th:first-of-type:empty {
1162 visibility: hidden;
1163}
1164/* --------------------------------------------------------------------------
1165Footer
1166*/
1167.line {
1168 clear: both;
1169 background: #acbc00;
1170 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1171 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1172color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1173 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1174 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1175 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1176 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1177 height: 2px;
1178 margin-top: 150px;
1179 position: relative;
1180 z-index: 11;
1181}
1182#footer {
1183 font-size:11px;
1184 clear: both;
1185 color: #999;
1186 padding: 15px 0;
1187 margin-top:10px;
1188 width:auto;
1189}
1190#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001191 list-style: none;
1192 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001193}
1194#footer-local li {
1195 display: inline;
1196}
1197#footer-local li+li:before {
1198 content: '|';
1199 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001200 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001201}
1202#footer-global {
1203 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001204 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001205}
1206#footer-global {
1207 border-top: 1px solid #ebebeb;
1208 font-size: 11.5px;
1209 line-height: 1.8;
1210 list-style: none;
1211}
1212#footer-global ul {
1213 margin: 0;
1214}
1215#footer-global li {
1216 display: inline;
1217 font-weight: bold;
1218}
1219#footer-global li+li:before {
1220 content: '¬?';
1221 padding: 0 3px;
1222}
1223* html #footer-global li {
1224 margin: 0 13px 0 0;
1225}
1226* [dir='rtl'] #footer-global li {
1227 margin: 0 0 0 13px;
1228}
1229*+html #footer-global li {
1230 margin: 0 13px 0 0;
1231}
1232*+[dir='rtl'] #footer-global li {
1233 margin: 0 0 0 13px;
1234}
1235#footer-global li a {
1236 font-weight: normal;
1237}
1238.locales {
1239 margin: 10px 0 0 0px;
1240}
1241[dir='rtl'] .locales {
1242 background-position: right center;
1243 float: left;
1244 padding: 0 24px 0 0;
1245}
1246.locales form {
Scott Mainb7f96372013-02-07 16:56:43 -08001247 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001248}
1249.locales select, .sites select {
1250 line-height: 3.08;
1251 margin: 0px 0;
1252 border: solid 1px #EBEBEB;
1253 -webkit-appearance: none;
1254 background: white url('../images/arrows-up-down.png') right center no-repeat;
1255 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001256 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001257 line-height: normal;
1258 padding: 5px;
1259 width: 230px;
1260}
1261}
1262
1263/* =============================================================================
1264 Print Only
1265 ========================================================================== */
1266@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001267 /* configure printed page */
1268 @page {
1269 margin: 0.75in 1in;
1270 widows: 4;
1271 orphans: 4;
1272 }
1273
1274 /* reset spacing metrics */
1275 html, body, .wrap {
1276 margin: 0 !important;
1277 padding: 0 !important;
1278 width: auto !important;
1279 }
1280
1281 /* leave enough space on the left for bullets */
1282 body {
1283 padding-left: 20px !important;
1284 }
1285 #doc-col {
1286 margin-left: 0;
1287 }
1288
1289 /* hide a bunch of non-content elements */
1290 #header, #footer, #nav-x, #side-nav,
1291 .training-nav-top, .training-nav-bottom,
1292 #doc-col .content-footer,
1293 .nav-x, .nav-y,
1294 .paging-links,
1295 a.totop {
1296 display: none !important;
1297 }
1298
1299 /* remove extra space above page titles */
1300 #doc-col .content-header {
1301 margin-top: 0;
1302 }
1303
1304 /* bump up spacing above subheadings */
1305 h2 {
1306 margin-top: 40px !important;
1307 }
1308
1309 /* print link URLs where possible and give links default text color */
1310 p a:after {
1311 content: " (" attr(href) ")";
1312 font-size: 80%;
1313 }
1314 p a {
1315 word-wrap: break-word;
1316 }
1317 a {
1318 color: inherit;
1319 }
1320
1321 /* syntax highlighting rules */
1322 .str { color: #060; }
1323 .kwd { color: #006; font-weight: bold; }
1324 .com { color: #600; font-style: italic; }
1325 .typ { color: #404; font-weight: bold; }
1326 .lit { color: #044; }
1327 .pun { color: #440; }
1328 .pln { color: #000; }
1329 .tag { color: #006; font-weight: bold; }
1330 .atn { color: #404; }
1331 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001332}
1333
1334/* =============================================================================
1335 Columns
1336 ========================================================================== */
1337
1338@media screen, projection, print {
1339.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001340 padding: 2.5em 0;
1341 border-top: solid 1px #ddd;
1342 border-bottom: solid 1px #ddd;
1343 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001344}
1345.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001346 margin: 0 auto;
1347 width: 940px;
1348 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001349}
1350.cols {
1351 height: 1%;
1352 margin: 0 -1.533742331288343558282%;
1353 width: 103.06748466257669%}
1354*+html .cols {
1355 margin-bottom: 20px;
1356}
1357.cols:after {
1358 clear: both;
1359 content: ' ';
1360 display: block;
1361 height: 0;
1362 visibility: hidden;
1363}
1364.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1365.col-13, .col-14, .col-15, .col-16 {
1366 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001367 float: left;
1368 margin-left: 10px;
1369 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001370}
1371/*
1372* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1373.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1374 margin: 0;
1375 padding: 0 1.4% 20px;
1376}
1377[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1378[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1379[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1380 float: right;
1381}
1382*/
1383.col-1 { width: 40px }
1384.col-2 { width: 100px }
1385.col-3 { width: 160px }
1386.col-4 { width: 220px }
1387.col-5 { width: 280px }
1388.col-6 { width: 340px }
1389.col-7 { width: 400px }
1390.col-8 { width: 460px }
1391.col-9 { width: 520px }
1392.col-10 { width: 580px }
1393.col-11 { width: 640px }
1394.col-12 { width: 700px }
1395.col-13 { width: 760px }
1396.col-14 { width: 820px }
1397.col-15 { width: 880px }
1398.col-16 { width: 940px }
1399}
1400
1401.col-right {
1402 margin-right:0px;
1403}
1404
1405@media screen and (max-width:772px) {
1406.col-5, .col-6, .col-7 {
1407 clear: both;
1408 width: 97.0238096%}
1409}
1410
1411/* =============================================================================
1412 Layout
1413 ========================================================================== */
1414@media screen, projection, print {
1415
1416/* --------------------------------------------------------------------------
1417Header, Login, Nav-X, Search
1418*/
1419#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001420 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001421}
1422#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001423 content: "";
1424 display: table;
1425 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001426}
1427.logo, .nav-x {
1428 float: left;
1429}
1430.nav-x {
1431 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001432 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001433}
1434.nav-x a {
1435 color: #333;
1436 font-size: 16px;
1437}
1438.design a.selected {
1439 color: #33b5e5;
1440}
1441.develop a.selected {
1442 color: #F80;
1443}
1444.distribute a.selected {
1445 color: #9C0;
1446}
1447
1448
1449
1450.nav-x li {
1451 display: inline;
1452 margin-right: 45px;
1453}
1454.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001455 float: right;
1456 position: relative;
1457 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001458}
1459.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001460 position: absolute;
1461 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001462}
1463.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001464 width: 220px;
1465 height: 1px;
1466 top: 24px;
1467 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001468}
Scott Mainb7f96372013-02-07 16:56:43 -08001469.search .left, .search .right {
1470 height: 5px;
1471 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001472}
Scott Mainb7f96372013-02-07 16:56:43 -08001473.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001474.search .right { top: 19px; right: 0 }
1475.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001476 float: left;
1477 margin-top: 2px;
1478 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001479}
1480.search .close,
1481#player-frame .close {
1482 position: absolute;
1483 right: 8px;
1484 bottom: 4px;
1485 width: 16px;
1486 height: 16px;
1487 margin: 0;
1488 text-indent: -1000em;
1489 background: url(../images/close.png) no-repeat 0 0;
1490 z-index:9999;
1491}
1492.search .close:hover, .search .close:focus,
1493#player-frame .close:hover, #player-frame .close:focus {
1494 background-position: -16px 0;
1495 cursor:pointer;
1496}
1497#player-frame .close {
1498 top: 6px;
1499}
1500.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001501 color: #999;
1502 font-size: 1em;
1503 width: inherit;
1504 border: none;
1505 margin: 0;
1506 padding:0 0 0 6px;
1507 z-index: 1500;
1508 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001509}
1510.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001511 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001512}
1513.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001514 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001515}
1516.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001517 color: #222;
1518 font-weight: bold;
1519 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001520}
1521/* Search Dropdown */
1522.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001523 padding: 15px;
1524 width: 192px;
1525 border: solid 1px #c5c5c5;
1526 background: #fff;
1527 position: absolute;
1528 top: 35px;
1529 left: 0;
1530 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1531 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1532 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001533}
1534.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001535 list-style-type: none;
1536 margin: 0;
1537 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001538}
1539.search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001540 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001541}
1542.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001543 float: left;
1544 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001545}
1546.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001547 color: #222;
1548 margin: 0;
1549 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001550}
1551.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001552 color: #999;
1553 font-size: 11.5px;
1554 line-height: normal;
1555 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001556}
1557.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001558 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001559}
1560/* --------------------------------------------------------------------------
1561Buttons
1562*/
1563.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001564 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001565 -webkit-border-radius: 2px;
1566 -moz-border-radius: 2px;
1567 border-radius: 2px;
1568 cursor: pointer;
1569}
1570.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001571 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001572 background-color: #09c;
1573 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1574 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1575 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1576 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1577 background-image: -o-linear-gradient(top, #2faddb, #09c);
1578 background-image: linear-gradient(top, #2faddb, #09c);
1579 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1580 border: 1px solid #3990ab;
1581 color: #fff;
1582}
1583.button-secondary, a.button-secondary {
1584 background-color: #f3f3f3;
1585 border: 1px solid #dcdcdc;
1586 color: #444;
1587}
1588a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001589 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001590 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001591 min-width: 54px;
1592 outline: 0;
1593 padding: 8px 15px;
1594 text-align: center;
1595}
1596.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001597 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001598 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001599 min-width: 54px;
1600 outline: 0;
1601 padding: 0 15px;
1602 text-align: center;
1603}
1604.button:hover, a.button:hover {
1605 border-color: #09c;
1606 background-color: #4cadcb;
1607 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1608 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1609 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1610 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1611 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1612 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1613 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1614EndColorStr='#4cadcb',GradientType=0);
1615 color: #fff !important;
1616}
1617.button:active, a.button:active {
1618 background-color: #1e799a;
1619 background-image: none;
1620 border-color: #30b7e6;
1621}
Scott Maindb3678b2012-10-23 14:13:41 -07001622a.button.big.subtitle {
1623 line-height:18px;
1624}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001625.button-secondary:hover, a.button-secondary:hover {
1626 border-color: #dbdbdb;
1627 background-color: #f3f3f3;
1628 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1629 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1630 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1631 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1632 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1633 background-image: linear-gradient(top, #f9f9f9, #ececec);
1634 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1635EndColorStr='#ececec');
1636 color: #33B5E5 !important;
1637}
1638.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001639 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001640 background: #ebebeb; /* Old browsers */
1641 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1642 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001643url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1644Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1645eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1646CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1647eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1648YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1649CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1650CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1651CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1652CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1653R3JhZGllbnQ+
1654CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1655Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001656 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001657#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001658 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001659color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1660/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001661 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700166290%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001663 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001664100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001665 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001666100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001667 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001668100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001669 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001670endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001671 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1672 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1673 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1674 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001675}
1676.button.big {
1677 font-size:20px;
1678 display:inline-block;
1679}
Scott Maindb3678b2012-10-23 14:13:41 -07001680.button.big span.small {
1681 font-size:14px;
1682}
1683.button-caption {
1684 margin-top:10px;
1685 font-size:12px;
1686 font-style:italic;
1687}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001688
1689.button.disabled,
1690.button.disabled:hover,
1691.button.disabled:active {
1692 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001693 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001694 border-color:#999;
1695 cursor:default;
1696}
1697
1698.training-nav-top a.button-secondary,
1699.training-nav-bottom a.button-secondary {
1700 display:block;
1701 float:left;
1702 margin:0;
1703 width:130px;
1704 text-transform:uppercase;
1705 font-weight:bold;
1706
1707 background-color: #f3f3f3;
1708 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1709 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1710 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1711 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1712 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1713 background-image: linear-gradient(top, #f9f9f9, #ececec);
1714 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1715EndColorStr='#ececec');
1716 color: #33B5E5;
1717}
1718
1719.training-nav-top a.button-secondary:hover,
1720.training-nav-bottom a.button-secondary:hover {
1721 background-color: #09c;
1722 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1723 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1724 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1725 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1726 background-image: -o-linear-gradient(top, #2faddb, #09c);
1727 background-image: linear-gradient(top, #2faddb, #09c);
1728 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1729 border: 1px solid #3990ab;
1730 color: #fff !important;
1731}
1732
1733.training-nav-top a.button-secondary.last,
1734.training-nav-bottom a.button-secondary.last {
1735 border-left:0;
1736}
1737
1738.training-nav-top a.button-secondary.double-size,
1739.training-nav-bottom a.button-secondary.double-size {
1740 width:291px;
1741}
1742
1743.training-nav-top,
1744.training-nav-bottom {
1745 float:right;
1746 margin:0 0 0 20px;
1747}
1748
1749.training-nav-bottom {
1750 padding:0 0 20px;
1751}
1752
1753#tb-wrapper,
1754#qv-wrapper {
1755 float:right;
1756 clear:right;
Scott Maincef39242013-06-19 20:25:34 -07001757 margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maine4d8f1b2012-06-21 18:03:05 -07001758 padding:0 0 20px;
1759}
1760
Scott Maincef39242013-06-19 20:25:34 -07001761#tb-wrapper {
1762 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1763}
1764
Scott Maine4d8f1b2012-06-21 18:03:05 -07001765#tb,
1766#qv {
1767 font-size:13px;
1768 line-height:18px;
1769 width:238px;
1770 border:1px solid #ccc;
1771 float:right;
1772}
1773
1774#tb {
1775 width:278px;
1776}
1777
1778#tb h2,
1779#qv h2 {
1780 margin:10px 15px;
1781 padding:0;
1782 text-transform:uppercase;
1783 border-bottom:1px solid gainsboro;
1784}
1785
1786#tb *,
1787#qv * {
1788 font-size:inherit;
1789}
1790
1791#tb .download-box {
1792 padding:0 0 0 15px;
1793}
1794
1795#tb .download-box .filename {
1796 font-size:11px;
1797 margin:4px 4px 10px;
1798 color:#666;
1799}
1800
1801
1802/* Dev guide quicknav */
1803
1804.sidebox-wrapper {
1805 float:right;
1806 clear:right;
1807 margin:0 0 0 20px;
1808 padding:0 0 20px;
1809}
1810
1811.sidebox {
1812 width:226px;
1813 font-size:13px;
1814 line-height:18px;
1815 border-left:4px solid #99CC00;
1816 float:right;
1817 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001818 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001819}
1820
1821.sidebox h2,
1822.sidebox h3,
1823.sidebox h4,
1824.sidebox h5 {
1825 font-weight:bold;
1826 margin:0 0 10px;
1827}
1828
1829.sidebox * {
1830 font-size:inherit;
1831}
1832
1833#tb ol,
1834#tb ul,
1835#qv ul {
1836 margin:0 15px 10px 35px;
1837}
1838
1839#qv ol {
1840 list-style:none;
1841 margin:0 15px 15px;
1842 font-size:inherit;
1843 line-height:inherit;
1844}
1845
1846#tb ol ol,
1847#tb ul ul,
1848#qv ol ol,
1849#qv ul ul,
1850.sidebox ol ol,
1851.sidebox ul ul {
1852 margin-bottom:0;
1853}
1854
1855#qv ol ol {
1856 margin:3px 0 3px 15px;
1857}
1858
1859.sidebox p,
1860#qv p,
1861#tb p {
1862 margin: 0 0 10px;
1863}
1864
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001865/* related resources blocks in checklists */
1866
1867.rel-resources {
1868 margin:10px 0px;
1869 border:1px solid #ccc;
1870 background-color:rgba(0, 0, 0, 0.027451);
1871 border:1px solid #ccc;
1872 font-size:13px;
1873 color:#6f6f6f;
1874}
1875
1876.rel-resources ul {
1877padding: .5em 1em 0 1em;
1878}
1879
1880.rel-resources a {
1881font-weight:500;
1882}
1883
1884.rel-resources h3 {
1885 margin:4px 15px 0px 15px;
1886 font-size:13px;
1887 font-weight:600;
1888 text-transform:uppercase;
1889}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001890
1891/* --------------------------------------------------------------------------
1892Form
1893*/
1894.article form {
1895 margin: 0 0 20px;
1896}
1897.article form .form-required {
1898 color: #dd4b39;
1899}
1900.article form fieldset {
1901 margin: 0 0 20px;
1902 padding: 0;
1903}
1904.article form legend {
1905 display: block;
1906 line-height: 1.5;
1907 margin: 0;
1908 padding: 0;
1909}
1910/*
1911.article form ol, .article form ul {
1912 margin: 0 0 0 1em;
1913 padding: 0 0 0 1em;
1914}
1915[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1916 margin: 0 1em 0 0;
1917 padding: 0 1em 0 0;
1918}
1919.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1920ul ul {
1921 list-style: none;
1922 margin: 0;
1923 padding: 0;
1924}
1925.article form li {
1926 margin: 0 0 20px;
1927}
1928.article form li li {
1929 margin: 0 0 5px;
1930}
1931*/
1932.article form label {
1933 display: block;
1934 margin: 0 0 5px;
1935 padding: 0;
1936}
1937.article form input[type='text'], .article form select, .article form textarea, .article form
1938.checkbox-group, .article form .radio-group {
1939 margin-bottom: 15px;
1940}
1941.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001942 width: 13px;
1943 height: 13px;
1944 background: #fff;
1945 border: solid 1px #c6c6c6;
1946 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001947}
1948.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08001949 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07001950}
1951.article form select {
1952 border: solid 1px #ebebeb;
1953 border-top-color: #ddd;
1954 -webkit-appearance: none;
1955 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1956 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001957 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001958 line-height: normal;
1959 padding: 5px;
1960 width: 130px;
1961}
1962
1963.article form .browse .browse-msg {
Scott Mainb7f96372013-02-07 16:56:43 -08001964 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001965}
1966.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001967 height: auto;
1968 line-height: 25px;
1969 font-size: 11px;
1970 padding: 0 8px;
1971 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001972}
1973.article form input[type='text'], .article form textarea {
1974 border: 1px solid #ebebeb;
1975 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001976 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001977 line-height: normal;
1978 padding: 6px 10px;
Scott Mainb7f96372013-02-07 16:56:43 -08001979 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001980}
1981.article form textarea {
1982 height: 150px;
1983}
1984.article form input[type='text']:focus, .article form textarea:focus {
1985 border-color: #33B5E5;
1986 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1987 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1988 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1989 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1990 outline: 0;
1991}
1992.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1993 color: #999;
1994}
1995.article form input[type='text'][disabled], .article form textarea[disabled] {
1996 background-color: #ebebeb;
1997}
1998form .form-error input[type='text'], form .form-error textarea {
1999 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002000 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002001}
2002.aside {
2003 -moz-border-radius: 2px;
2004 -webkit-border-radius: 2px;
2005 border-radius: 2px;
2006 margin: 10px 0;
2007 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002008 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002009 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002010 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002011}
2012/*
2013.aside, .notification, .promo {
2014 -moz-border-radius: 2px;
2015 -webkit-border-radius: 2px;
2016 border-radius: 2px;
2017 margin: 10px 0;
2018 padding: 10px;
2019 position: relative;
2020}
2021.aside>:first-child, .notification>:first-child, .promo>:first-child {
2022 margin-top: 0;
2023}
2024.aside>:last-child, .notification>:last-child, .promo>:last-child {
2025 margin-bottom: 0;
2026}
2027.aside {
2028 background: #f9f9f9;
2029}
2030.notification {
2031 background: #fffbe4;
2032 border-color: #f8f6e6;
2033}
2034.promo {
2035 background: #f6f9ff;
2036 border-color: #eff2f9;
2037}
2038*/
Scott Maindb3678b2012-10-23 14:13:41 -07002039
2040/* SDK TOS styles */
2041
2042div.sdk-terms {
2043 white-space: pre-wrap;
2044 word-wrap: break-word;
2045 font-family: inherit;
2046 font-size: inherit;
2047 padding: 10px;
2048 height: 370px;
2049 width: 738px;
2050 border: 1px solid #444;
2051 background: transparent;
2052 overflow:auto;
2053 margin:0 0 10px;
2054}
2055
2056div.sdk-terms.fullsize {
2057 padding: 0;
2058 height: auto;
2059 width: auto;
2060 border:none;
2061}
2062
2063div.sdk-terms h3,
2064div.sdk-terms h2 {
2065 margin:0;
2066}
2067
2068div#sdk-terms-form {
2069 padding:0 0 0 10px;
2070}
2071
Scott Main11ac05b2012-11-15 14:57:44 -08002072div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002073 display:inline;
2074 margin:4px 4px 4px 0;
2075}
2076
2077
Scott Maine4d8f1b2012-06-21 18:03:05 -07002078/* --------------------------------------------------------------------------
2079Code Style
2080*/
2081pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002082 margin:0 0 1em 0;
2083 padding: 1em;
2084 overflow: auto;
2085 border: solid 1px #ddd;
Scott Mainb7f96372013-02-07 16:56:43 -08002086 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002087}
2088.str { color: #080; }
2089.kwd { color: #008; }
2090.com { color: #800; }
2091.typ { color: #606; }
2092.lit { color: #066; }
2093.pun { color: #660; }
2094.pln { color: #000; }
2095.tag { color: #008; }
2096.atn { color: #828; }
2097.atv { color: #080; }
2098.dec { color: #606; }
2099
2100/* --------------------------------------------------------------------------
2101Three-Pane
2102*/
2103/* Package Nav & Classes Nav */
2104.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002105 position: relative;
2106 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002107}
2108#packages-nav .js-pane,
2109#classes-nav .js-pane {
2110 overflow:visible;
2111}
2112#packages-nav {
2113 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002114 max-height: inherit;
2115 overflow: hidden;
2116 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002117}
2118#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002119 overflow: hidden;
2120 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002121}
2122#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002123 list-style-type: none;
2124 margin: 10px 0 20px 0;
2125 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002126}
2127#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002128 font-weight: bold;
2129 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002130}
2131#packages-nav li,
2132#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002133 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002134}
2135#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2136#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002137 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002138}
2139#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2140#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2141#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002142 color: #222;
2143 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002144}
2145#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2146#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002147 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002148}
2149#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2150a:visited,
2151#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2152a:visited,
2153#nav-tree li div.selected {
2154 font-weight: 500;
2155 color: #0099cc;
2156 background-color:#fff; }
2157 #packages-nav li.selected ul li a,
2158 #classes-nav li.selected ul li a {
2159 /* don't highlight child items */
2160 color: #555555; }
2161#nav-tree li div.selected a {
2162 font-weight: 500;
2163 color: #0099cc;
2164}
2165#nav-swap {
2166 height:30px;
2167 border-top:1px solid #ccc;
2168}
2169#nav-swap a {
2170 display:inline-block;
2171 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002172 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002173 font-size: 12px;
2174 padding: 5px 0 5px 5px;
2175}
2176
2177#nav-swap .fullscreen {
2178 float: right;
2179 width: 24px;
2180 height: 24px;
2181 text-indent: -1000em;
2182 padding:0;
2183 margin:3px 5px 0;
2184 background: url(../images/fullscreen.png) no-repeat -24px 0;
2185}
2186#nav-swap .fullscreen.disabled {
2187 background-position: 0 0;
2188}
2189#nav-swap .fullscreen:hover,
2190#nav-swap .fullscreen:focus {
2191 cursor:pointer;
2192}
2193
2194
2195/* nav tree */
2196#side-nav, #devdoc-nav, #swapper,
2197#nav-tree, #tree-list {
2198 overflow:hidden;
2199 margin-left:0;
2200}
2201
2202#nav-tree ul {
2203 list-style:none;
2204 padding:0;
2205 margin:10px 0;
2206}
2207
2208#nav-tree ul li div {
2209 padding:0 0 0 4px;
2210}
2211
2212#side-nav #nav-tree ul li a,
2213#side-nav #nav-tree ul li span.no-children {
2214 padding: 0;
2215 margin: 0;
2216}
2217
2218#nav-tree .plus {
2219 margin: 0 3px 0 0;
2220}
2221
2222#nav-tree ul ul {
2223 list-style: none;
2224 margin: 0;
2225 padding: 0 0 0 0;
2226}
2227
2228#nav-tree ul li {
2229 margin: 0;
2230 padding: 0 0 0 0;
2231 white-space: nowrap;
2232}
2233
2234#nav-tree .children_ul {
2235 padding:0;
2236 margin:0;
2237}
2238#nav-tree .children_ul li div {
2239 padding:0 0 0 10px;
2240}
2241#nav-tree .children_ul .children_ul li div {
2242 padding:0 0 0 20px;
2243}
2244
2245#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002246 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002247 text-decoration: none;
2248}
2249
2250#nav-tree span.label {
2251 width: 100%;
2252}
2253
2254#nav-tree {
2255 overflow-x: auto;
2256 overflow-y: scroll;
2257 outline:0;
2258}
2259
2260
2261/* Content */
2262#doc-col {
2263 margin-right:0;
2264}
2265#doc-content-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002266 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002267}
2268#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002269 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002270}
2271#doc-header {
Scott Mainb7f96372013-02-07 16:56:43 -08002272 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002273}
2274#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002275 line-height: 0;
2276 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002277}
2278#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002279 float: right;
2280 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002281}
2282#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002283 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002284}
2285#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002286 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002287}
2288#api-nav-header {
2289 height:19px; /* plus 16px padding = 35; same as #nav li */
2290 font-size:14px;
2291 padding: 8px 0;
2292 margin: 0;
2293 border-bottom: 1px solid #CCC;
2294 background:#e9e9e9;
2295 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2296
2297}
2298#api-nav-title {
2299 padding:0 5px;
2300 white-space:nowrap;
2301}
2302
2303#api-level-toggle {
2304 float:right;
2305 padding:0 5px;
2306}
2307
2308#api-level-toggle label {
2309 margin:0;
2310 vertical-align:top;
2311 line-height: 19px;
2312 font-size:13px;
2313 height: 19px;
2314}
2315
2316#api-level-toggle .select-wrapper {
2317 width: 35px;
2318 display: inline-block;
2319 overflow: hidden;
2320}
2321#api-level-toggle select {
2322 border: 0;
2323 appearance:none;
2324 -moz-appearance:none;
2325 -webkit-appearance: none;
2326 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002327 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002328 height: 19px;
2329 line-height: 19px;
2330 padding: 0;
2331 margin:1px 0 0 0;
2332 width:150%;
2333 font-size:13px;
2334 vertical-align:top;
2335 outline:0;
2336}
2337
2338
2339/* Toggle for revision notes and stuff */
2340div.toggle-content.closed .toggle-content-toggleme {
2341 display:none;
2342}
2343
2344#jd-content img.toggle-content-img {
2345 margin:0 5px 5px 0;
2346}
Scott Main220c3442012-07-16 15:40:17 -07002347div.toggle-content p {
2348 margin:10px 0 0;
2349}
2350div.toggle-content-toggleme {
2351 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002352}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002353
2354
2355/* API LEVEL FILTERED MEMBERS */
2356
2357.absent,
2358.absent a:link,
2359.absent a:visited,
2360.absent a:hover,
2361.absent * {
2362 color:#bbb !important;
2363 cursor:default !important;
2364 text-decoration:none !important;
2365}
2366#devdoc-nav li.absent.selected,
2367#devdoc-nav li.absent.selected *,
2368#devdoc-nav div.label.absent.selected,
2369#devdoc-nav div.label.absent.selected * {
2370 background-color:#eaeaea !important;
2371}
2372.absent h4.jd-details-title,
2373.absent h4.jd-details-title * {
2374 background-color:#f6f6f6 !important;
2375}
2376.absent img {
2377 opacity: .3;
2378 filter: alpha(opacity=30);
2379 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2380}
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390/* JQUERY RESIZABLE STYLES */
2391.ui-resizable { position: relative; }
2392.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2393.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2394/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2395body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2396.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2397border-bottom: solid 1px #ededed;
2398 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2399/*
2400.ui-resizable-e {
2401cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24021px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2403*/
2404
2405/* --------------------------------------------------------------------------
2406Lightbox
2407*/
Scott Mainb7f96372013-02-07 16:56:43 -08002408.lightbox {
2409 width: 769px;
2410 padding: 1.5em;
2411 margin: 0 auto;
2412 border: solid 1px #dcdcdc;
2413 background: #fff;
2414 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2415 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2416 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002417}
2418.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002419 float: left;
2420 width: 720px;
2421 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002422}
2423.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002424 float: right;
2425 width: 10px;
2426 height: 10px;
2427 margin: -10px -10px 10px 0;
2428 text-indent: -1000em;
2429 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002430}
2431.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002432 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002433}
2434
2435/* --------------------------------------------------------------------------
2436Misc
2437*/
2438
2439
2440.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002441 content: "";
2442 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002443}
2444.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002445 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002446}
2447.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002448 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002449}
2450table.blank th, table.blank td {
2451 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002452 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002453}
2454.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002455 margin: 0.5em 0 2em 0;
2456 color: #000;
2457 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002458}
2459
2460.nolist {
2461 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002462 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002463}
Scott Main5747d382012-11-30 12:02:42 -08002464#tb .nolist {
2465 margin-left:15px;
2466}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002467
Scott Main8aa725e2013-04-25 10:00:32 -07002468dl.xml>dt {
2469 text-transform:uppercase;
2470}
2471dl.xml dl.attr {
2472 margin-top:0;
2473}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002474
2475pre.classic {
2476 background-color:transparent;
2477 border:none;
2478 padding:0;
2479}
2480
2481p.img-caption {
2482 margin: -10px 0 20px;
2483 font-size:13px;
2484 color:#666;
2485}
2486
Scott Main48dd7f22013-02-21 10:52:02 -08002487div.figure,
2488div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002489 float:right;
2490 clear:right;
2491 margin:10px 0 0 0;
2492 padding:0 0 0 20px;
2493 /* width must be defined w/ an inline style matching the image width */
2494}
2495
Scott Main48dd7f22013-02-21 10:52:02 -08002496div.figure-left {
2497 float:left;
2498 clear:left;
2499 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002500 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002501 /* width must be defined w/ an inline style matching the image width */
2502}
2503
2504img.frame {
2505 border:1px solid #DDD;
2506 padding:4px;
2507}
2508
Scott Maine4d8f1b2012-06-21 18:03:05 -07002509p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002510 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002511 font-size:13px;
2512 color:#666;
2513}
2514
Scott Main24bbcd52012-09-21 14:33:43 -07002515p.code-caption {
2516 margin: 0 0 4px 0;
Scott Maina07be8e2013-03-06 12:12:21 -08002517 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002518 color:#666;
2519}
2520
Scott Main54d2a9b2012-07-24 14:54:32 -07002521div.note,
2522div.caution,
2523div.warning {
2524 margin: 0 0 15px;
2525}
2526
Scott Maine4d8f1b2012-06-21 18:03:05 -07002527p.note, div.note,
2528p.caution, div.caution,
2529p.warning, div.warning {
2530 padding: 0 0 0 10px;
2531 border-left: 4px solid;
2532}
2533
Scott Main24bbcd52012-09-21 14:33:43 -07002534p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002535 border-color: #258AAF;
2536}
2537
Scott Main24bbcd52012-09-21 14:33:43 -07002538p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002539 border-color: #FF8800;
2540}
2541
Scott Main24bbcd52012-09-21 14:33:43 -07002542p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002543 border-color: #ff4443;
2544}
2545
Scott Main412eaf22012-06-22 14:36:33 -07002546div.note.design {
2547 border-left: 4px solid #33B5E5;
2548}
2549
2550div.note.develop {
2551 border-left: 4px solid #F80;
2552}
2553
2554div.note.distribute {
2555 border-left: 4px solid #9C0;
2556}
2557
2558.note p, .caution p, .warning p {
2559 margin:0 0 5px;
2560}
2561
2562.note p:last-child, .caution p:last-child, .warning p:last-child {
2563 margin-bottom:0;
2564}
2565
Scott Main5b5ff1a2012-09-12 10:29:45 -07002566body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002567 display:block;
2568 float:right;
2569 width:280px;
2570 font-size:20px;
2571 font-style:italic;
2572 line-height:24px;
2573 color:#33B5E5;
2574 margin:0 0 20px 30px;
2575}
2576
Scott Maine4d8f1b2012-06-21 18:03:05 -07002577div.design-announce p {
2578 margin:0 0 10px;
2579}
2580
2581#devdoc-nav a.totop {
2582 display:block;
2583 top:0;
2584 width:inherit;
2585 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2586 text-indent:-9999em;
2587}
2588#devdoc-nav a.totop {
2589 position:fixed;
2590 display:none;
2591}
2592#devdoc-nav a.totop:hover {
2593 background-color:#33B5E5;
2594}
2595
2596.content-footer a.totop {
2597 text-transform:uppercase;
2598 line-height:30px;
2599}
2600
Scott Maindb3678b2012-10-23 14:13:41 -07002601.expandable {
2602 height:34px;
2603 padding-left:20px;
2604 position:relative;
2605}
2606.expandable:before {
2607 content: '';
2608 background-image: url(../images/styles/disclosure_down.png);
2609 background-repeat:no-repeat;
2610 background-position: -12px -9px;
2611 width: 20px;
2612 height: 20px;
2613 display: inline-block;
2614 position: absolute;
2615 top: 0;
2616 left: 0; }
2617}
2618.expandable.expanded:before {
2619 background-image: url(../images/styles/disclosure_up.png);
2620}
2621
Scott Mainaaf76642013-06-19 18:04:30 -07002622/* notice box for cross links between Design/Develop docs */
2623a.notice-developers,
2624a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002625 float:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002626 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002627 min-height:50px;
2628 margin:0 0 20px 20px;
2629 border:1px solid #ddd;
2630}
Scott Mainaaf76642013-06-19 18:04:30 -07002631a.notice-developers div,
2632a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002633 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002634 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2635 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002636 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002637}
Scott Mainaaf76642013-06-19 18:04:30 -07002638a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002639 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2640 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002641}
2642a.notice-developers:hover,
2643a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002644 background:#eee;
2645}
Scott Mainaaf76642013-06-19 18:04:30 -07002646a.notice-developers h3,
2647a.notice-designers h3 {
Scott Maind2af6d22013-05-13 18:39:06 -07002648 font-size:14px;
2649 font-weight:normal;
2650 text-transform:uppercase;
2651 color:#000 !important;
2652 margin:0;
2653}
Scott Mainaaf76642013-06-19 18:04:30 -07002654a.notice-developers p,
2655a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002656 margin:0;
Scott Main9bfcd732013-05-14 09:14:35 -07002657 line-height:16px;
2658}
Scott Mainaaf76642013-06-19 18:04:30 -07002659a.notice-developers.left,
2660a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002661 margin-left:0;
2662 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002663}
2664
2665
Scott Maind7026f72013-06-17 15:08:49 -07002666/* hide nested list items; companion to hideNestedLists() */
2667.hide-nested li ol,
2668.hide-nested li ul {
2669 display:none;
2670}
2671
2672a.header-toggle {
2673 display:block;
2674 float:right;
2675 text-transform:uppercase;
2676 font-size:.8em !important;
2677 font-weight:normal;
2678 margin-top:2px;
2679}
2680
2681
Dirk Doughertybec14292013-04-10 20:23:40 -07002682/* -----------------------------------------------
2683good/bad example containers
2684*/
Scott Maindb3678b2012-10-23 14:13:41 -07002685
Dirk Doughertybec14292013-04-10 20:23:40 -07002686div.example-block {
2687 background-repeat: no-repeat;
2688 background-position:10px 8px;
2689 background-color:#ccc;
2690 padding:4px;
2691 margin:.8em auto 1.5em 2em;
2692 width:260px;
2693 float:right;
2694}
2695/* red container */
2696.example-block.bad {
2697 background-image: url(/images/example-bad.png);
2698 background-color:#f4cccc;
2699}
2700/* green container */
2701.example-block.good {
2702 background-image: url(/images/example-good.png);
2703 background-color:#d9ead3;
2704}
2705/* container heading div */
2706#jd-content .example-block .heading {
2707 font-weight:bold;
2708 margin:6px 0 9px 36px;
2709 padding:6px auto;
2710}
2711/* container image (if any) */
2712#jd-content .example-block img {
2713 margin:0;
2714 padding:0px;
2715}
2716
2717.example-block table {
2718 margin:0;
2719}
Scott Maindb3678b2012-10-23 14:13:41 -07002720
Scott Maine4d8f1b2012-06-21 18:03:05 -07002721/* -----------------------------------------------
2722Dialog box for popup messages
2723*/
2724
2725div.dialog {
2726 height:0;
2727 margin:0 auto;
2728}
2729
2730div.dialog>div {
2731 z-index:99;
2732 position:fixed;
2733 margin:70px 0;
2734 width: 391px;
2735 height: 200px;
2736 background: #F7F7F7;
2737-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2738-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2739box-shadow: 0 0 15px rgba(0,0,0,0.5);
2740}
2741/* IE6 can't position fixed */
2742* html div.dialog div { position:absolute; }
2743
2744
2745div#deprecatedSticker {
2746 display:none;
2747 z-index:99;
2748 position:fixed;
2749 right:15px;
2750 top:114px;
2751 margin:0;
2752 padding:1em;
2753 background:#FFF;
2754 border:1px solid #dddd00;
2755 box-shadow:-5px 5px 10px #ccc;
2756 -moz-box-shadow:-5px 5px 10px #ccc;
2757 -webkit-box-shadow:-5px 5px 10px #ccc;
2758}
2759
2760div#naMessage {
2761 display:none;
2762 width:555px;
2763 height:0;
2764 margin:0 auto;
2765}
2766
2767div#naMessage div {
2768 z-index:99;
2769 width:450px;
2770 position:fixed;
2771 margin:50px 0;
2772 padding:4em 4em 3em;
2773 background:#FFF;
2774 border:1px solid #999;
2775 box-shadow:-10px 10px 40px #888;
2776 -moz-box-shadow:-10px 10px 40px #888;
2777 -webkit-box-shadow:-10px 10px 40px #888;
2778}
2779/* IE6 can't position fixed */
2780* html div#naMessage div { position:absolute; }
2781
2782div#naMessage strong {
2783 font-size:1.1em;
2784}
2785
2786
2787/* --------------------------------------------------------------------------
2788Slideshow Controls & Next/Prev
2789*/
Scott Mainb7f96372013-02-07 16:56:43 -08002790.slideshow-next, .slideshow-prev {
2791 width: 20px;
2792 height: 36px;
2793 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002794}
2795.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002796 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002797}
2798.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002799 content: "";
2800 display: table;
2801 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002802}
2803a.slideshow-next, a.slideshow-next:visited {
2804
Scott Mainb7f96372013-02-07 16:56:43 -08002805 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002806
Scott Mainb7f96372013-02-07 16:56:43 -08002807 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002808
2809}
2810
2811a.slideshow-prev, a.slideshow-prev:visited {
2812
Scott Mainb7f96372013-02-07 16:56:43 -08002813 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002814
Scott Mainb7f96372013-02-07 16:56:43 -08002815 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002816
2817}
2818
2819.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2820
Scott Mainb7f96372013-02-07 16:56:43 -08002821 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002822
2823}
2824
2825.slideshow-next:active, .slideshow-prev:active {
2826
Scott Mainb7f96372013-02-07 16:56:43 -08002827 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002828
2829}
2830.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002831 width: 74px;
2832 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002833}
2834.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002835 display: inline-block;
2836 width: 12px;
2837 height: 12px;
2838 margin: 0 2px 20px 2px;
2839 background: #ccc;
2840 -webkit-border-radius: 50%;
2841 -moz-border-radius: 50%;
2842 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002843}
2844.slideshow-nav a:hover, .slideshow-nav a:focus {
2845
Scott Mainb7f96372013-02-07 16:56:43 -08002846 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002847}
2848
2849.slideshow-nav a:active {
2850
Scott Mainb7f96372013-02-07 16:56:43 -08002851 background: #1e799a;
2852 background: #ebebeb;
2853 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2854 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2855 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07002856}
2857.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002858 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002859}
2860/* --------------------------------------------------------------------------
2861Tabs
2862*/
2863ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08002864 padding: 0;
2865 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002866}
2867ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002868 content: "";
2869 display: table;
2870 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002871}
2872ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08002873 list-style-type: none;
2874 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002875}
2876ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002877 display: block;
2878 height: 36px;
2879 line-height: 36px;
2880 padding: 0 15px;
2881 margin-right: 2px;
2882 color: #222;
2883 -moz-border-radius-topleft: 2px;
2884 -moz-border-radius-topright: 2px;
2885 -moz-border-radius-bottomright: px;
2886 -moz-border-radius-bottomleft: px;
2887 -webkit-border-radius: 2px 2px px px;
2888 border-radius: 2px 2px px px;
2889 border-top: solid 1px #ebebeb;
2890 border-left: solid 1px #ebebeb;
2891 border-right: solid 1px #ebebeb;
2892 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002893 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2894 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2895 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2896 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2897 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2898 background-image: linear-gradient(top, #ffffff, #fafafa);
2899 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2900EndColorStr='#fafafa');
2901}
2902ul.tabs li a:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002903 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002904}
2905ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08002906 height: 37px;
2907 color: #33B5E5;
2908 background-color: #f7f7f7;
2909 background-image: none;
2910 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002911}
2912.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002913 padding: 1.2em;
2914 margin: -1px 0 2em 0;
2915 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002916 -moz-border-radius: 2px;
2917 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08002918 border: solid 1px #ddd;
2919 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002920}
2921/* --------------------------------------------------------------------------
2922Feature Boxes
2923*/
2924.feature-box {
2925 width: 291px;
2926 height: 200px;
2927 position: relative;
2928 background: #F7F7F7;
2929}
2930.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08002931 z-index: 100;
2932 position: absolute;
2933 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002934}
2935.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08002936 width: 291px;
2937 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002938}
2939.dialog .box-border .top,
2940.dialog .box-border .bottom { width:391px; }
2941
Scott Mainb7f96372013-02-07 16:56:43 -08002942.box-border .left, .box-border .right {
2943 width: 1px;
2944 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002945}
2946.box-border .top { top: 0; left: 0 }
2947.box-border .top .left { top: 1px; left: 0 }
2948.box-border .top .right { top: 1px; right: 0 }
2949.box-border .bottom .left { top: -8px; left: 0 }
2950.box-border .bottom { top: 200px; left: 0 }
2951.box-border .bottom .right { top: -8px; right: 0 }
2952
2953.feature-box h4,
2954.dialog h4 {
2955 margin: 15px 18px 10px;
2956 padding:0;
2957}
2958
2959.feature-box p,
2960.dialog p {
2961 margin: 10px 18px;
2962 padding:0;
2963}
2964.feature-box .link,
2965.dialog .link {
2966 border-top: 1px solid #dedede;
2967 bottom: 0;
2968 position: absolute;
2969 width: inherit;
2970}
2971.feature-box a, .feature-box h4,
2972.dialog a, .dialog h4 {
2973 -webkit-transition: color .4s ease;
2974 -moz-transition: color .4s ease;
2975 -o-transition: color .4s ease;
2976 transition: color .4s ease;
2977}
2978.feature-box:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002979 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002980}
2981.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Mainb7f96372013-02-07 16:56:43 -08002982.left, .feature-box:hover .right {
2983 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002984}
2985.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08002986 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002987}
2988/* --------------------------------------------------------------------------
2989Page-Specific Styles
2990*/
2991.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08002992 position: relative;
2993 float: left;
2994 width: 92px;
2995 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002996}
2997.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08002998 color: #fff;
2999 font-size: 11.5px;
3000 width: 82px;
3001 height: 82px;
3002 margin-top:-30px;
3003 line-height: 82px;
3004 text-align: center;
3005 border: solid 5px #fff;
3006 -webkit-border-radius: 50%;
3007 -moz-border-radius: 50%;
3008 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003009}
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024/* ########### REFERENCE DOCS ################## */
3025
3026#packages-nav h2,
3027#classes-nav h2 {
3028 font-size:18px;
3029 margin:0;
3030 padding:0 0 0 4px;
3031}
3032
3033#jd-header {
3034 padding: 0 0 5px;
3035 margin: 20px 0 10px;
3036 font-size:13px;
3037 border-bottom:solid 1px #ccc;
3038}
3039
3040#jd-header h1 {
3041 margin:0;
3042 padding:0;
3043}
3044
3045/* page-top-right container for reference pages (holds
3046links to summary tables) */
3047#api-info-block {
3048 font-size:13px;
3049 margin:20px 0 0;
3050 padding:0 10px 6px;
3051 font-weight:normal;
3052 float:right;
3053 text-align:right;
3054 color:#999;
3055 max-width:70%;
3056}
3057
3058#api-info-block div.api-level {
3059 font-weight:bold;
3060 font-size:inherit;
3061 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003062 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003063 padding:0;
3064 margin:0;
3065}
3066
3067/* inheritance table */
3068.jd-inheritance-table {
3069 border-spacing:0;
3070 margin:0;
3071 padding:0;
3072 font-size:13px;
3073 background-color:transparent;
3074}
3075.jd-inheritance-table tr td {
3076 border: none;
3077 margin: 0;
3078 padding: 0;
3079 background-color:transparent;
3080}
3081.jd-inheritance-table .jd-inheritance-space {
3082 font-weight:bold;
3083 width:1em;
3084}
3085.jd-inheritance-table .jd-inheritance-interface-cell {
3086 padding-left: 17px;
3087}
3088
3089
3090
3091.jd-sumtable a {
3092 text-decoration:none;
3093}
3094
3095.jd-sumtable a:hover {
3096 text-decoration:underline;
3097}
3098
3099/* the link inside a sumtable for "Show All/Hide All" */
3100.toggle-all {
3101 display:block;
3102 float:right;
3103 font-weight:normal;
3104 font-size:0.9em;
3105}
3106
3107/* adjustments for in/direct subclasses tables */
3108.jd-sumtable.jd-sumtable-subclasses {
3109 margin: 1em 0 0 0;
3110 max-width:968px;
3111 background-color:transparent;
3112 font-size:13px;
3113}
3114
3115/* extra space between end of method name and open-paren */
3116.sympad {
3117 margin-right: 2px;
3118}
3119
3120/* right alignment for the return type in sumtable */
3121.jd-sumtable .jd-typecol {
3122 text-align:right;
3123}
3124
3125/* adjustments for the expando table-in-table */
3126.jd-sumtable-expando {
3127 margin:.5em 0;
3128 padding:0;
3129}
3130
3131/* a div that holds a short description */
3132.jd-descrdiv {
3133 padding:3px 1em 0 1em;
3134 margin:0;
3135 border:0;
3136}
3137
3138#jd-content img.jd-expando-trigger-img {
3139 padding:0 4px 4px 0;
3140 margin:0;
3141}
3142
3143.jd-sumtable-subclasses div#subclasses-direct,
3144.jd-sumtable-subclasses div#subclasses-indirect {
3145 margin:0 0 0 13px;
3146}
3147
3148
3149
3150/********* MEMBER REF *************/
3151
3152
3153.jd-details {
3154/* border:1px solid #669999;
3155 padding:4px; */
3156 margin:0 0 1em;
3157}
3158
3159/* API reference: a container for the
3160.tagdata blocks that make up the detailed
3161description */
3162.jd-details-descr {
3163 padding:0;
3164 margin:.5em .25em;
3165}
3166
3167/* API reference: a block containing
3168a detailed description, a params table,
3169seealso list, etc */
3170.jd-tagdata {
3171 margin:.5em 1em;
3172}
3173
3174.jd-tagdata p {
3175 margin:0 0 1em 1em;
3176}
3177
3178/* API reference: adjustments to
3179the detailed description block */
3180.jd-tagdescr {
3181 margin:.25em 0 .75em 0;
3182}
3183
3184.jd-tagdescr ol,
3185.jd-tagdescr ul {
3186 margin:0 2.5em;
3187 padding:0;
3188}
3189
3190.jd-tagdescr table,
3191.jd-tagdescr img {
3192 margin:.25em 1em;
3193}
3194
3195.jd-tagdescr li {
3196margin:0 0 .25em 0;
3197padding:0;
3198}
3199
3200/* API reference: heading marking
3201the details section for constants,
3202attrs, methods, etc. */
3203h4.jd-details-title {
3204 font-size:1.15em;
3205 background-color: #E2E2E2;
3206 margin:1.5em 0 .6em;
3207 padding:3px 95px 3px 3px; /* room for api-level */
3208}
Scott Mainab4daf42012-11-30 11:27:17 -08003209body.google h4.jd-details-title {
3210 background-color: #FFF;
3211 padding-top:5px;
3212 border-top: 1px solid #ccc;
3213}
3214body.google table.jd-sumtable th {
3215 background-color: #FFF;
3216 color:#000;
3217}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003218
3219h4.jd-tagtitle {
3220 margin:0;
3221}
3222
3223h4 .normal {
3224 font-weight:normal;
3225}
3226
3227/* API reference: heading for "Parameters", "See Also", etc.,
3228in details sections */
3229h5.jd-tagtitle {
3230 margin:0 0 .25em 0;
3231 font-size:1em;
3232}
3233
3234.jd-tagtable {
3235 margin:0;
3236 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003237 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003238}
3239
3240.jd-tagtable td,
3241.jd-tagtable th {
3242 border:none;
3243 background-color:#fff;
3244 vertical-align:top;
3245 font-weight:normal;
3246 padding:2px 10px;
3247}
3248
3249.jd-tagtable th {
3250 font-style:italic;
3251}
3252
3253/* Inline api level indicator for methods */
3254div.api-level {
3255 font-size:.8em;
3256 font-weight:normal;
3257 color:#999;
3258 float:right;
3259 padding:0 8px 0;
3260 margin-top:-30px;
3261}
3262
3263table.jd-tagtable td,
3264table.jd-tagtable th {
3265 background-color:transparent;
3266}
3267
3268table.jd-tagtable th {
3269 color:inherit;
3270}
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294/* SEARCH FILTER */
3295
Scott Main0e76e7e2013-03-12 10:24:07 -07003296.menu-container {
3297 position:relative;
3298}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003299#search_autocomplete {
3300 font-weight:normal;
3301}
3302
Scott Main0e76e7e2013-03-12 10:24:07 -07003303.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003304 width: 193px;
3305 float: right;
3306}
Scott Main0e76e7e2013-03-12 10:24:07 -07003307.search_filtered_wrapper.docs {
3308 width:875px;
3309 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003310 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003311 top:26px;
3312 right:66px;
3313}
3314.suggest-card {
3315 position:relative;
3316 width:170px;
3317 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003318 padding:5px;
3319 border: solid 1px #C5C5C5;
3320 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003321 top: 15px;
3322 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003323 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3324 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3325 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3326}
Scott Main0e76e7e2013-03-12 10:24:07 -07003327.suggest-card.reference {
3328 position:absolute;
3329 z-index:999;
3330 min-width:171px; /* +padding and border makes this match input width */
3331 min-height:93px; /* add 3px because this has 1 not 4px top border */
3332 width:auto;
3333 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003334 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003335}
3336.suggest-card.develop {
3337 z-index:997;
3338 border-top: solid 4px #F80;
3339 float:right;
3340}
3341.suggest-card.design {
3342 z-index:996;
3343 border-top: solid 4px #33b5e5;
3344 float:right;
3345}
3346.suggest-card.distribute {
3347 z-index:995;
3348 border-top: solid 4px #9C0;
3349 float:right;
3350}
3351.child-card {
3352 width:100%;
3353}
3354.suggest-card.dummy {
3355 width:172px;
3356 float:right;
3357 border:0;
3358 background:transparent;
3359 -moz-box-shadow: none;
3360 -webkit-box-shadow: none;
3361 box-shadow: none;
3362}
3363
3364ul.search_filtered {
3365 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003366 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003367 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003368 padding: 0;
3369}
Scott Main0e76e7e2013-03-12 10:24:07 -07003370.search_filtered .jd-selected {
3371 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003372 cursor:pointer;
3373}
Scott Main0e76e7e2013-03-12 10:24:07 -07003374.search_filtered .jd-selected,
3375.search_filtered .jd-selected a {
3376 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003377}
3378
3379.no-display {
3380 display: none;
3381}
3382
Scott Main0e76e7e2013-03-12 10:24:07 -07003383.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003384 font-size: 0.81em;
3385 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003386 margin: 0 0 2px;
3387 padding: 0;
3388 line-height:1.5em;
3389}
3390
Scott Main0e76e7e2013-03-12 10:24:07 -07003391.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003392 padding:0 5px;
3393 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003394 display:inline-block;
3395 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003396}
3397
Scott Main0e76e7e2013-03-12 10:24:07 -07003398.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003399 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003400 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003401 border: none;
3402 margin: 8px 0 2px;
3403 padding:1px 5px;
3404 line-height:1.5em;
3405}
Scott Main0e76e7e2013-03-12 10:24:07 -07003406.search_filtered li.header.small {
3407 font-size:0.85em;
3408}
Scott Main7e447ed2013-02-19 17:22:37 -08003409
Scott Main0e76e7e2013-03-12 10:24:07 -07003410.suggest-card.reference
3411.search_filtered li.header {
3412 color:#aaa;
3413 font-size: 0.81em;
3414}
3415
3416.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003417 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003418}
3419
3420.show-item {
3421 display: table-row;
3422}
3423.hide-item {
3424 display: hidden;
3425}
3426
3427
3428
3429
3430
3431/* SEARCH RESULTS */
3432
Scott Maine4d8f1b2012-06-21 18:03:05 -07003433
3434#leftSearchControl .gsc-twiddle {
3435 background-image : none;
3436}
3437
3438#leftSearchControl td, #searchForm td {
3439 border: 0px solid #000;
3440 padding:0;
3441}
3442
3443#leftSearchControl .gsc-resultsHeader .gsc-title {
3444 padding-left : 0px;
3445 font-weight : bold;
3446 font-size : 13px;
3447 color:#006699;
3448 display : none;
3449}
3450
3451#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3452 display : none;
3453}
3454
3455#leftSearchControl .gsc-resultsRoot {
3456 padding-top : 6px;
3457}
3458
3459#leftSearchControl div.gs-visibleUrl-long {
3460 display : block;
3461 color:#006699;
3462}
3463
3464#leftSearchControl .gsc-webResult {
3465 padding:0 0 20px 0;
3466}
3467
3468.gsc-webResult div.gs-visibleUrl-short,
3469table.gsc-branding,
3470.gsc-clear-button {
3471 display : none;
3472}
3473
3474.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3475.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3476#leftSearchControl a,
3477#leftSearchControl a b {
3478 color:#006699;
3479}
3480
3481.gsc-resultsHeader {
3482 display: none;
3483}
3484
3485/* Disable built in search forms */
3486.gsc-control form.gsc-search-box {
3487 display : none;
3488}
3489table.gsc-search-box {
3490 margin:6px 0 0 0;
3491 border-collapse:collapse;
3492}
3493
3494td.gsc-input {
3495 padding:0 2px;
3496 width:100%;
3497 vertical-align:middle;
3498}
3499
3500input.gsc-input {
3501 border:1px solid #BCCDF0;
3502 width:99%;
3503 padding-left:2px;
3504 font-size:.95em;
3505}
3506
3507td.gsc-search-button {
3508 text-align: right;
3509 padding:0;
3510 vertical-align:top;
3511}
3512
3513
3514#searchResults {
3515 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3516(it doesn't) */
3517 height:auto;
3518}
3519
3520#searchResults .gsc-control {
3521 position:relative;
3522 width:auto;
3523 padding:0 0 10px;
3524}
3525
3526#searchResults .gsc-tabsArea {
3527 position:relative;
3528 white-space:nowrap;
3529 float:left;
3530 width:200px;
3531}
3532
3533#searchResults .gsc-above-wrapper-area {
3534 display:none;
3535}
3536
3537#searchResults .gsc-resultsbox-visible {
3538 float:left;
3539 width:720px;
3540 margin-left:20px;
3541}
3542
3543#searchResults .gsc-tabHeader {
3544 padding: 3px 6px;
3545 position:relative;
3546 width:auto;
3547 display:block;
3548}
3549
3550#searchResults h2#searchTitle {
3551 padding:0;
3552 margin:5px 0;
3553 border:none;
3554}
3555
3556#searchResults h2#searchTitle em {
3557 font-style:normal;
3558 color:#33B5E5;
3559}
3560
3561#searchResults .gsc-table-result {
3562 margin:5px 0 10px 0;
3563 background-color:transparent;
3564}
3565#searchResults .gs-web-image-box, .gs-promotion-image-box {
3566 width:120px;
3567}
3568#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3569 max-width:120px;
3570}
3571
3572#searchResults .gsc-table-result .gsc-thumbnail {
3573 padding:0 20px 0 0;
3574}
3575
3576#searchResults td {
3577 background-color:transparent;
3578}
3579
3580#searchResults .gsc-expansionArea {
3581 position:relative;
3582}
3583#searchResults .gsc-tabsArea .gsc-cursor-box {
3584 width:200px;
3585 padding:20px 0 0 1px;
3586}
3587#searchResults .gsc-cursor-page {
3588 display:inline-block;
3589 float:left;
3590 margin:-1px 0 0 -1px;
3591 padding:0;
3592 height:27px;
3593 width:27px;
3594 text-align:center;
3595 line-height:2;
3596}
3597
3598#searchResults .gsc-tabHeader.gsc-tabhInactive,
3599#searchResults .gsc-cursor-page {
3600 text-decoration:none;
3601 color:#258AAF;
3602 border: solid 1px #DADADA;
3603}
3604
3605#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3606#searchResults .gsc-cursor-page:hover {
3607 border-color: #DBDBDB;
3608 background-color: #F3F3F3;
3609 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3610 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3611 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3612 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3613 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3614 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3615 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3616EndColorStr='#ececec');
3617 color: #33B5E5;
3618}
3619
3620#searchResults .gsc-tabHeader.gsc-tabhActive,
3621#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3622#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3623#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3624 color:#fff;
3625 background-color: #09C;
3626 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3627 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3628 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3629 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3630 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3631 background-image: linear-gradient(top, #2FADDB, #09C);
3632 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3633 border: 1px solid #3990AB;
3634 z-index:100;
3635}
3636
3637}
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651/*********** PREVIOUSLY dac-styles.css ***************/
3652
3653
Scott Maine4d8f1b2012-06-21 18:03:05 -07003654#header {
3655 border-bottom:0;
3656}
3657
3658#header .wrap {
3659 max-width:940px;
3660 height:41px;
3661 border-bottom:1px solid;
3662 border-color: #ccc;
3663 position:relative;
3664}
3665
3666.about #header .wrap {
3667 border-color: #9933CC;
3668}
3669
3670.design #header .wrap {
3671 border-color: #33b5e5;
3672}
3673
3674.develop #header .wrap {
3675 border-color: #F80;
3676}
3677
3678.distribute #header .wrap {
3679 border-color: #9C0;
3680}
3681
3682.logo a {
3683 width:123px;
3684 float:left;
3685}
3686
3687#header .logo {
3688 margin-top: -6px;
3689 margin-left: 0px;
3690 margin-bottom:0px;
3691 width: 160px;
3692 padding-right:10px;
3693}
3694
3695.search {
3696 height:25px;
3697 margin-top: -3px;
3698 margin-bottom: 0px;
3699}
3700
3701
3702
3703/* Quicknav */
3704.btn-quicknav {
3705 width:20px;
3706 height:28px;
3707 float:left;
3708 margin-left:6px;
3709 padding-right:10px;
3710 position:relative;
3711 cursor:pointer;
3712 border-right:1px solid #CCC;
3713}
3714
3715.btn-quicknav a {
3716 zoom:1;
3717 position:absolute;
3718 top:13px;
3719 left:5px;
3720 display:block;
3721 text-indent:-9999em;
3722 width:10px;
3723 height:5px;
3724 background:url(../images/quicknav_arrow.png) no-repeat;
3725}
3726
3727.btn-quicknav a.arrow-active {
3728 background-position: 0 -5px;
3729 display:none;
3730}
3731
3732#header-wrap.quicknav a.arrow-inactive {
3733 display:none;
3734}
3735
3736.btn-quicknav.active a.arrow-active {
3737 display:block;
3738}
3739
3740.nav-x li {
3741 display:block;
3742 float:left;
3743 margin-right:45px;
3744 -webkit-transition: all 0.25s linear;
3745 -moz-transition: all 0.25s linear;
3746 -ms-transition: all 0.25s linear;
3747 -o-transition: all 0.25s linear;
3748 transition: all 0.25s linear;
3749}
3750
3751#header-wrap.quicknav .nav-x li {
3752 min-width:160px;
3753 margin-right:20px;
3754}
3755
3756#header-wrap.quicknav li.last {
3757 margin-right:0px;
3758}
3759
3760#quicknav {
3761 float:none;
3762 clear:both;
3763 margin-left:180px;
3764 margin-top:-30px;
3765 display:none;
3766 overflow:hidden;
3767}
3768
3769#header-wrap.quicknav #quicknav {
3770
3771}
3772
3773#quicknav ul {
3774 margin:10px 0;
3775 padding:0;
3776}
3777
3778#quicknav ul li.design {
3779 border-top:1px solid #33b5e5;
3780}
3781
3782#quicknav ul li.develop {
3783 border-top:1px solid #FF8800;
3784}
3785
3786#quicknav ul li.distribute {
3787 border-top:1px solid #99cc00;
3788}
3789
3790#quicknav ul li {
3791 display:block;
3792 float:left;
3793 margin:0 20px 0 0;
3794 min-width:140px;
3795}
3796
3797#quicknav ul li.last {
3798 margin-right:0px;
3799}
3800
3801#quicknav ul li ul li {
3802 float:none;
3803}
3804
3805#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003806 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003807}
3808
3809#quicknav ul li li ul,
3810#quicknav ul li li ul li {
3811 margin:0;
3812}
3813
3814#quicknav ul li li ul li:before {
3815 content:"\21B3";
3816}
3817
3818#header-wrap {
3819 -webkit-transition: all 0.25s ease-out;
3820 -moz-transition: all 0.25s ease-out;
3821 -ms-transition: all 0.25s ease-out;
3822 -o-transition: all 0.25s ease-out;
3823 transition: all 0.25s ease-out;
3824
3825}
3826
3827#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003828 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003829
3830}
3831
3832/* SEARCH AND MORE */
3833.search {
3834 position: absolute;
3835 width: 50px;
3836 height:28px;
3837 display: block;
3838 margin-top:-3px;
3839 margin-bottom:7px;
3840 overflow:hidden;
3841 z-index:100;
3842 right:54px;
3843 -webkit-transition: width 0.4s ease;
3844 -moz-transition: width 0.4s ease;
3845 -o-transition: width 0.4s ease;
3846 transition: width 0.4s ease;
3847}
3848
3849.search #search-btn {
3850 width:50px;
3851 height:28px;
3852 background:url(../images/icon_search.png) no-repeat;
3853 float:left;
3854}
3855
3856.search-inner {
3857 width:245px;
3858}
3859
3860.search:hover, .search.active {
3861 width:245px;
3862}
3863
3864.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003865 position: absolute;
3866 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07003867}
3868
3869.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003870 width: 214px;
3871 height: 1px;
3872 top: 24px;
3873 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003874}
3875
Scott Mainb7f96372013-02-07 16:56:43 -08003876.search .left, .search .right {
3877 height: 5px;
3878 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003879}
3880
3881.search .left {
3882 top: 22px;
3883 left: 56px;
3884 background-color:#CCC;
3885}
3886
3887.search .right {
3888 top: 22px;
3889 left: 238px;
3890 background-color:#CCC;
3891}
3892
3893.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08003894 margin-top: 2px;
3895 width: 162px;
3896 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003897}
3898
3899.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08003900 color: #2f2f2f;
3901 font-size: 0.95em;
3902 width: 178px;
3903 border: none;
3904 margin-left: 6px;
3905 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003906 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08003907 background-color: transparent;
3908 border-bottom:1px solid #CCC;
3909 padding:0 0 0 4px;
3910 outline:none;
3911 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003912}
3913
3914.search:hover form input {
3915 border-bottom:1px solid #33B5E5;
3916}
3917
3918.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003919 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003920}
3921
3922.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08003923 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003924}
3925
3926.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08003927 color: #222;
3928 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07003929}
3930
3931.moremenu {
3932 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08003933 position: relative;
3934 width: 50px;
3935 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003936 display: block;
3937 margin-top:-3px;
3938 margin-bottom:7px;
3939 overflow:hidden;
3940 -webkit-transition: width 0.25s ease;
3941 -moz-transition: width 0.25s ease;
3942 -o-transition: width 0.25s ease;
3943 transition: width 0.25s ease;
3944}
3945
3946.moremenu #more-btn {
3947 width:40px;
3948 height:28px;
3949 background:url(../images/icon_more.png) no-repeat;
3950 border-left:1px solid #CCC;
3951 float:left;
3952 cursor:pointer;
3953}
3954
3955.moremenu:hover #more-btn {
3956 background-position:0 -28px;
3957}
3958
3959.morehover {
3960 position:absolute;
3961 right:6px;
3962 top:-9px;
3963 width:40px;
3964 height:35px;
3965 z-index:99;
3966 overflow:hidden;
3967
3968 -webkit-opacity:0;
3969 -moz-opacity:0;
3970 -o-opacity:0;
3971 opacity:0;
3972
3973 -webkit-transform-origin:100% 0%;
3974 -moz-transform-origin:100% 0%;
3975 -o-transform-origin:100% 0%;
3976 transform-origin:100% 0%;
3977
3978 -webkit-transition-property: -webkit-opacity;
3979 -webkit-transition-duration: .25s;
3980 -webkit-transition-timing-function:ease;
3981
Scott Main0e76e7e2013-03-12 10:24:07 -07003982 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003983 -moz-transition-duration: .25s;
3984 -moz-transition-timing-function:ease;
3985
Scott Main0e76e7e2013-03-12 10:24:07 -07003986 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003987 -o-transition-duration: .25s;
3988 -o-transition-timing-function:ease;
3989
Scott Main0e76e7e2013-03-12 10:24:07 -07003990 transition-property: opacity;
3991 transition-duration: .25s;
3992 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003993}
3994
Scott Maine05e6f92013-01-29 13:34:17 -08003995.morehover:hover,
3996.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003997 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07003998 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003999 width:268px;
4000 -webkit-transition-property:height, -webkit-opacity;
4001}
4002
4003.morehover .top {
4004 width:268px;
4005 height:39px;
4006 background:url(../images/more_top.png) no-repeat;
4007}
4008
4009.morehover .mid {
4010 width:228px;
4011 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004012 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004013}
4014
4015.morehover .mid .header {
4016 border-bottom:1px solid #ccc;
4017 font-weight:bold;
4018}
4019
4020.morehover .bottom {
4021 width:268px;
4022 height:6px;
4023 background:url(../images/more_bottom.png) no-repeat;
4024}
4025
4026.morehover ul {
4027 margin:10px 10px 20px 0;
4028}
4029
4030.morehover ul li {
4031 list-style:none;
4032}
4033
4034.morehover ul li.active a,
4035.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004036 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004037}
4038
4039.morehover ul li.active img {
4040 margin-right:4px;
4041}
4042
4043
4044
4045
4046/* MARQUEE */
4047.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004048 width:100%;
4049 overflow:hidden;
4050 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004051}
4052.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004053 position:absolute;
4054 top:50%;
4055 left:0px;
4056 margin-top:-36px;
4057 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004058}
4059.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004060 position:absolute;
4061 top:50%;
4062 margin-top:-36px;
4063 z-index:99;
4064 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004065}
4066
4067.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004068 position:absolute;
4069 bottom:20px;
4070 width:100%;
4071 text-align:center;
4072 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004073}
4074.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004075 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004076}
4077.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004078 display: inline-block;
4079 width:12px;
4080 height:12px;
4081 text-indent:-8000px;
4082 list-style:none;
4083 margin: 0 2px;
4084 border-radius:6px;
4085 background-color:#ccc;
4086 cursor:pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004087 -webkit-transition:color .5s ease-in;
4088 -moz-transition:color .5s ease-in;
4089 -o-transition:color .5s ease-in;
4090 transition:color .5s ease-in;
4091}
4092.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004093 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004094}
4095.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004096 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004097}
4098.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004099 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004100}
4101.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004102 display:inline;
4103 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004104}
4105
4106
4107
4108
4109a.download-sdk {
4110 float:right;
4111 margin:-10px 0;
4112 height:30px;
4113 padding-top:4px;
4114 padding-bottom:0px;
4115}
4116
4117#nav-x {
4118 padding-top: 14px;
4119}
4120
Scott Main1d62fa82012-07-17 13:15:12 -07004121#nav-x .wrap {
4122 min-height:34px;
4123}
4124
Scott Maine4d8f1b2012-06-21 18:03:05 -07004125#nav-x .wrap,
4126#searchResults.wrap {
4127 max-width:940px;
4128 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004129}
4130
Scott Maina214d842012-07-16 17:14:40 -07004131#searchResults.wrap #leftSearchControl {
4132 min-height:700px
4133}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004134.nav-x {
4135 margin-left:0;
4136 margin-bottom:0;
4137}
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148/*
4149 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4150 */
4151
4152.jspContainer {
4153 overflow: hidden;
4154 position: relative;
4155}
4156
4157.jspPane {
4158 position: absolute;
4159 overflow: hidden;
Scott Main2d967c62013-03-11 09:21:07 -07004160 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004161}
4162
4163.jspVerticalBar {
4164 position: absolute;
4165 top: 0;
4166 right: 0;
4167 width: 4px;
4168 height: 100%;
4169 background: #f5f5f5;
4170}
4171
4172.jspHorizontalBar {
4173 position: absolute;
4174 bottom: 0;
4175 left: 0;
4176 width: 100%;
4177 height: 4px;
4178 background: #f5f5f5;
4179}
4180
4181.jspVerticalBar *,
4182.jspHorizontalBar * {
4183 margin: 0;
4184 padding: 0;
4185}
4186.jspCap {
4187 display: block;
4188}
4189
4190.jspVerticalBar .jspCap {
4191 height: 4px;
4192}
4193
4194.jspHorizontalBar .jspCap {
4195 width: 0;
4196 height: 100%;
4197}
4198
4199.jspHorizontalBar .jspCap {
4200 float: left;
4201}
4202
4203.jspTrack {
4204 position: relative;
4205}
4206
4207.jspDrag {
4208 background: #bbb;
4209 position: relative;
4210 top: 0;
4211 left: 0;
4212 cursor: pointer;
4213}
4214
4215.jspDrag:hover,
4216.jspDrag:active {
4217 border-color: #09c;
4218 background-color: #4cadcb;
4219 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4220 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4221 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4222 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4223 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4224 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Mainb7f96372013-02-07 16:56:43 -08004225 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004226}
4227
4228.jspHorizontalBar .jspTrack,
4229.jspHorizontalBar .jspDrag {
4230 float: left;
4231 height: 100%;
4232}
4233
4234.jspArrow {
4235 background: #999;
4236 text-indent: -20000px;
4237 display: block;
4238 cursor: pointer;
4239}
4240
4241.jspArrow.jspDisabled {
4242 cursor: default;
4243 background: #ccc;
4244}
4245
4246.jspVerticalBar .jspArrow {
4247 height: 16px;
4248}
4249
4250.jspHorizontalBar .jspArrow {
4251 width: 16px;
4252 float: left;
4253 height: 100%;
4254}
4255
4256.jspVerticalBar .jspArrow:focus {
4257 outline: none;
4258}
4259
4260.jspCorner {
4261 float: left;
4262 height: 100%;
4263}
4264
4265/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4266* html .jspCorner {
4267 margin: 0 -3px 0 0;
4268}
4269/******* end of jscrollpane *********/
4270
4271
4272
4273
4274
4275/************ DEVELOP HOMEPAGE ******************/
4276
4277/* Slideshow */
4278.slideshow-develop {
4279 height: 300px;
4280 width: 940px;
4281 position: relative;
4282 overflow:hidden;
4283}
4284.slideshow-develop .frame {
4285 width: 940px;
4286 height: 300px;
4287}
4288.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004289 max-width:350px;
4290 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004291 margin:20px 0 0 90px;
4292 -webkit-transform: perspective(800px ) rotateY( 35deg );
4293 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4294 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4295 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4296}
4297.slideshow-develop img.play.no-shadow {
4298 box-shadow: none;
4299 -moz-box-shadow: none;
4300 -webkit-box-shadow: none;
4301}
4302.slideshow-develop img.play.no-transform {
4303 -webkit-transform: none;
4304}
4305.slideshow-develop a.slideshow-next {
4306 background: url(../images/arrow-right-develop.png);
4307}
4308.slideshow-develop a.slideshow-prev {
4309 background: url(../images/arrow-left-develop.png);
4310}
4311.slideshow-develop .content-right {
4312 float: left;
4313}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004314.slideshow-develop .content-right h2 {
4315 padding:0;
4316 margin-bottom:10px;
4317 border:none;
4318}
4319.slideshow-develop .item {
4320 height: 300px;
4321 width: 940px;
4322}
4323.slideshow-develop .pagination ul li.active {
4324 background-color: #F80;
4325}
4326.slideshow-develop .pagination ul li.active:hover {
4327 background-color: #F80;
4328}
Scott Main0e585702012-10-22 20:30:22 -07004329.slideshow-develop .item hr {
4330 margin:5px 0 10px;
4331}
4332.slideshow-develop .item p {
4333 margin:10px 0;
4334}
4335.slideshow-develop .item p.title-intro {
4336 position:absolute;
4337 margin:0;
4338}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004339
4340/* Feeds */
4341.feed ul {
4342 margin: 0;
4343}
4344.feed .feed-nav {
4345 height: 25px;
4346 border-bottom: 1px solid #CCC;
4347}
4348.feed .feed-nav li {
4349 list-style: none;
4350 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004351 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004352 margin-right: 25px;
4353 cursor: pointer;
4354}
4355.feed .feed-nav li.active {
4356 color: #000;
4357 border-bottom: 4px solid #F80;
4358}
4359.feed .feed-container {
4360 overflow: hidden;
4361 width: 460px;
4362}
4363.feed .feed-container .feed-frame {
4364 width: 1000px;
4365}
4366.feed .feed-container .feed-frame ul {
4367 float: left;
4368 width:460px;
4369}
4370.feed .feed-container .feed-frame ul ul {
4371 float: none;
4372 margin:10px 0 0 30px;
4373}
4374.feed .feed-container .feed-frame li {
4375 list-style: none;
4376 margin: 20px 0 20px 0;
4377 width: 460px;
4378 height:93px;
4379}
4380.feed .feed-container .feed-frame li.playlist {
4381 height:auto;
4382}
4383.feed .feed-container .feed-frame li.playlist a {
4384 height:93px;
4385 display:block;
4386}
4387.feed .feed-container .feed-frame li.more {
4388 height:20px;
4389 margin:10px 0 5px 5px;
4390}
4391.feed .feed-container .feed-frame li.more a {
4392 height:inherit;
4393}
4394.feed .feed-container .feed-frame li.playlist-video {
4395 list-style: none;
4396 margin: 0;
4397 width: 460px;
4398 height:55px;
4399 font-size:12px;
4400}
4401.feed .feed-container .feed-frame li.playlist-video a {
4402 height:45px;
4403 padding:5px;
4404}
4405.feed .feed-container .feed-frame li.playlist-video h5 {
4406 font-size:12px;
4407 line-height:13px;
4408 margin:0;
4409}
4410.feed .feed-container .feed-frame li.playlist-video p {
4411 margin:5px 0 0;
4412 line-height:15px;
4413}
4414.feed-container .feed-frame div.feed-image {
4415 float: left;
4416 border: 1px solid #999;
4417 margin:0 20px 0 0;
4418 width:122px;
4419 height:92px;
4420 background:url('../images/blog-default.png') no-repeat 0 0;
4421 background-size:180px;
4422}
4423#jd-content .feed .feed-container .feed-frame li img {
4424 float: left;
4425 border: 1px solid #999;
4426 margin:0 20px 0 0;
4427 width:122px;
4428 height:92px;
4429}
4430#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4431 width:inherit;
4432 height:inherit;
4433}
4434
4435.feed .feed-container .feed-frame li a,
4436.feed .feed-container .feed-frame li a:active {
4437 color:#555 !important;
4438}
4439
4440.feed .feed-container .feed-frame li a:hover,
4441.feed .feed-container .feed-frame li a:hover * {
4442 color:#7AA1B0 !important;
4443}
4444
4445/* Video player */
4446#player-wrapper {
4447 display:none;
4448 margin: -1px auto 0;
4449 position: relative;
4450 width: 940px;
4451 height: 0px;
4452}
4453#player-frame {
4454 background: #EFEFEF;
4455 border: 1px solid #CCC;
4456 padding: 0px 207px;
4457 z-index: 10; /* stay above marque, but below search suggestions */
4458 width: 525px;
4459 height: 330px;
4460 position: relative;
4461}
4462
4463
4464
4465/************ DISTRIBUTE HOMEPAGE ***************/
4466
4467.marquee {
4468 width: 760px;
4469}
4470.marquee .main-img {
4471 float: left;
4472 margin-top: 20px;
4473 width: 490px;
4474}
4475.marquee .copy {
4476 width: 270px;
4477 float: left;
4478 margin-top: 30px;
4479}
4480.distribute-features {
4481 margin: 0;
4482}
4483.distribute-features ul {
4484 margin: 0;
4485}
4486.distribute-features ul li {
4487 list-style: none;
4488 float: left;
4489 border-top: 1px solid #9C0;
4490 width: 220px;
4491 margin-right: 50px;
4492}
4493.distribute-features ul li.last {
4494 margin-right: 0px;
4495}
4496
Dirk Doughertye5862e82013-05-15 02:19:54 -07004497.distribute-features .distribute-link li a {
4498 color:red !important;
4499}
4500
4501.distribute-features .distribute-link li a,
4502.distribute-features .distribute-link li a:active {
4503 color:#555 !important;
4504}
4505
4506.distribute-features .distribute-link li a:hover,
4507.distribute-features .distribute-link li a:hover * {
4508 color:#7AA1B0 !important;
4509}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004510
Scott Main8fa53512012-11-30 20:16:42 -08004511
Scott Maine4d8f1b2012-06-21 18:03:05 -07004512/************ DEVELOP TOPIC CONTAINERS ************/
4513
4514.landing-banner,
4515.landing-docs {
4516 margin:20px 0 0;
4517}
Scott Main8fa53512012-11-30 20:16:42 -08004518.landing-banner div:first-child,
4519.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004520.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004521 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004522 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004523}
Scott Main8fa53512012-11-30 20:16:42 -08004524.landing-banner div:last-child,
4525.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004526.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004527 margin-right:0;
4528}
4529
4530.landing-banner h1 {
4531 margin-top:0;
4532}
Scott Main0e71cee2012-08-07 13:59:43 -07004533.landing-docs {
4534 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004535 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004536}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004537.landing-docs h3 {
4538 font-size:14px;
4539 line-height:21px;
4540 color:#555;
4541 text-transform:uppercase;
4542 border-bottom:1px solid #CCC;
4543 margin:0 0 20px;
4544}
4545.landing-docs a {
4546 color:#333 !important;
4547}
Robert Ly40e90992012-11-28 17:46:17 -08004548
Scott Maine4d8f1b2012-06-21 18:03:05 -07004549.landing-docs a:hover,
4550.landing-docs a:hover * {
4551 color:#7AA1B0 !important
4552}
4553
Robert Ly40e90992012-11-28 17:46:17 -08004554.landing-docs .normal-links a {
4555 color:#258aaf !important;
4556}
4557
Scott Maine4d8f1b2012-06-21 18:03:05 -07004558.plusone {
4559 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004560}
Scott Main9edfa6d2012-08-14 15:04:40 -07004561
4562
4563
4564/************* HOME/LANDING PAGE *****************/
4565
4566.slideshow-home {
4567 height: 500px;
4568 width: 940px;
4569 border-bottom: 1px solid #CCC;
4570 position: relative;
4571 margin: 0;
4572}
4573.slideshow-home .frame {
4574 width: 940px;
4575 height: 500px;
4576}
4577.slideshow-home .content-left {
4578 float: left;
4579 text-align: center;
4580 vertical-align: center;
4581 margin: 0 0 0 35px;
4582}
4583.slideshow-home .content-right {
4584 margin: 80px 0 0 0;
4585}
4586.slideshow-home .content-right p {
4587 margin-bottom: 10px;
4588}
4589.slideshow-home .content-right p:last-child {
4590 margin-top: 15px;
4591}
4592.slideshow-home .content-right h1 {
4593 padding:0;
4594}
4595.slideshow-home .item {
4596 height: 500px;
4597 width: 940px;
4598}
4599.home-sections {
4600 padding: 30px 20px 20px;
4601 margin: 20px 0;
4602 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4603}
4604.home-sections ul {
4605 margin: 0;
4606}
4607.home-sections ul li {
4608 float: left;
4609 display: block;
4610 list-style: none;
4611 width: 170px;
4612 height: 35px;
4613 border: 1px solid #ccc;
4614 background: white;
4615 margin-right: 10px;
4616 border-radius: 1px;
4617 -webkit-border-radius: 1px;
4618 -moz-border-radius: 1px;
4619 box-shadow: 1px 1px 5px #EEE;
4620 -webkit-box-shadow: 1px 1px 5px #EEE;
4621 -moz-box-shadow: 1px 1px 5px #EEE;
4622 background: white;
4623}
4624.home-sections ul li:hover {
4625 background: #F9F9F9;
4626 border: 1px solid #CCC;
4627}
4628.home-sections ul li a,
4629.home-sections ul li a:hover {
4630 font-weight: bold;
4631 margin-top: 8px;
4632 line-height: 18px;
4633 float: left;
4634 width: 100%;
4635 text-align: center;
4636 color: #09c !important;
4637}
4638.home-sections ul li a {
4639 font-weight: bold;
4640 margin-top: 8px;
4641 line-height: 18px;
4642 float: left;
4643 width:100%;
4644 text-align:center;
4645}
4646.home-sections ul li img {
4647 float: left;
4648 margin: -8px 0 0 10px;
4649}
4650.home-sections ul li.last {
4651 margin-right: 0px;
4652}
Scott Mainf5089842012-08-14 16:31:07 -07004653.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004654 margin-top: -40px;
4655}