blob: c76d9ef2efdbef93dd15f43bf920476facd6651a [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;
1757 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1758 padding:0 0 20px;
1759}
1760
1761#tb,
1762#qv {
1763 font-size:13px;
1764 line-height:18px;
1765 width:238px;
1766 border:1px solid #ccc;
1767 float:right;
1768}
1769
1770#tb {
1771 width:278px;
1772}
1773
1774#tb h2,
1775#qv h2 {
1776 margin:10px 15px;
1777 padding:0;
1778 text-transform:uppercase;
1779 border-bottom:1px solid gainsboro;
1780}
1781
1782#tb *,
1783#qv * {
1784 font-size:inherit;
1785}
1786
Scott Main8c0f5b32013-07-08 15:12:02 -07001787#tb .download-box,
1788#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001789 padding:0 0 0 15px;
1790}
1791
Scott Main8c0f5b32013-07-08 15:12:02 -07001792#tb .download-box .filename,
1793#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001794 font-size:11px;
1795 margin:4px 4px 10px;
1796 color:#666;
1797}
1798
1799
1800/* Dev guide quicknav */
1801
1802.sidebox-wrapper {
1803 float:right;
1804 clear:right;
1805 margin:0 0 0 20px;
1806 padding:0 0 20px;
1807}
1808
1809.sidebox {
1810 width:226px;
1811 font-size:13px;
1812 line-height:18px;
1813 border-left:4px solid #99CC00;
1814 float:right;
1815 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001816 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001817}
1818
1819.sidebox h2,
1820.sidebox h3,
1821.sidebox h4,
1822.sidebox h5 {
1823 font-weight:bold;
1824 margin:0 0 10px;
1825}
1826
1827.sidebox * {
1828 font-size:inherit;
1829}
1830
1831#tb ol,
1832#tb ul,
1833#qv ul {
1834 margin:0 15px 10px 35px;
1835}
1836
1837#qv ol {
1838 list-style:none;
1839 margin:0 15px 15px;
1840 font-size:inherit;
1841 line-height:inherit;
1842}
1843
1844#tb ol ol,
1845#tb ul ul,
1846#qv ol ol,
1847#qv ul ul,
1848.sidebox ol ol,
1849.sidebox ul ul {
1850 margin-bottom:0;
1851}
1852
1853#qv ol ol {
1854 margin:3px 0 3px 15px;
1855}
1856
1857.sidebox p,
1858#qv p,
1859#tb p {
1860 margin: 0 0 10px;
1861}
1862
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001863/* related resources blocks in checklists */
1864
1865.rel-resources {
1866 margin:10px 0px;
1867 border:1px solid #ccc;
1868 background-color:rgba(0, 0, 0, 0.027451);
1869 border:1px solid #ccc;
1870 font-size:13px;
1871 color:#6f6f6f;
1872}
1873
1874.rel-resources ul {
1875padding: .5em 1em 0 1em;
1876}
1877
1878.rel-resources a {
1879font-weight:500;
1880}
1881
1882.rel-resources h3 {
1883 margin:4px 15px 0px 15px;
1884 font-size:13px;
1885 font-weight:600;
1886 text-transform:uppercase;
1887}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001888
1889/* --------------------------------------------------------------------------
1890Form
1891*/
1892.article form {
1893 margin: 0 0 20px;
1894}
1895.article form .form-required {
1896 color: #dd4b39;
1897}
1898.article form fieldset {
1899 margin: 0 0 20px;
1900 padding: 0;
1901}
1902.article form legend {
1903 display: block;
1904 line-height: 1.5;
1905 margin: 0;
1906 padding: 0;
1907}
1908/*
1909.article form ol, .article form ul {
1910 margin: 0 0 0 1em;
1911 padding: 0 0 0 1em;
1912}
1913[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1914 margin: 0 1em 0 0;
1915 padding: 0 1em 0 0;
1916}
1917.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1918ul ul {
1919 list-style: none;
1920 margin: 0;
1921 padding: 0;
1922}
1923.article form li {
1924 margin: 0 0 20px;
1925}
1926.article form li li {
1927 margin: 0 0 5px;
1928}
1929*/
1930.article form label {
1931 display: block;
1932 margin: 0 0 5px;
1933 padding: 0;
1934}
1935.article form input[type='text'], .article form select, .article form textarea, .article form
1936.checkbox-group, .article form .radio-group {
1937 margin-bottom: 15px;
1938}
1939.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001940 width: 13px;
1941 height: 13px;
1942 background: #fff;
1943 border: solid 1px #c6c6c6;
1944 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001945}
1946.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08001947 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07001948}
1949.article form select {
1950 border: solid 1px #ebebeb;
1951 border-top-color: #ddd;
1952 -webkit-appearance: none;
1953 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1954 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001955 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001956 line-height: normal;
1957 padding: 5px;
1958 width: 130px;
1959}
1960
1961.article form .browse .browse-msg {
Scott Mainb7f96372013-02-07 16:56:43 -08001962 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001963}
1964.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001965 height: auto;
1966 line-height: 25px;
1967 font-size: 11px;
1968 padding: 0 8px;
1969 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001970}
1971.article form input[type='text'], .article form textarea {
1972 border: 1px solid #ebebeb;
1973 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001974 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001975 line-height: normal;
1976 padding: 6px 10px;
Scott Mainb7f96372013-02-07 16:56:43 -08001977 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001978}
1979.article form textarea {
1980 height: 150px;
1981}
1982.article form input[type='text']:focus, .article form textarea:focus {
1983 border-color: #33B5E5;
1984 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1985 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1986 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1987 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1988 outline: 0;
1989}
1990.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1991 color: #999;
1992}
1993.article form input[type='text'][disabled], .article form textarea[disabled] {
1994 background-color: #ebebeb;
1995}
1996form .form-error input[type='text'], form .form-error textarea {
1997 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08001998 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001999}
2000.aside {
2001 -moz-border-radius: 2px;
2002 -webkit-border-radius: 2px;
2003 border-radius: 2px;
2004 margin: 10px 0;
2005 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002006 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002007 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002008 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002009}
2010/*
2011.aside, .notification, .promo {
2012 -moz-border-radius: 2px;
2013 -webkit-border-radius: 2px;
2014 border-radius: 2px;
2015 margin: 10px 0;
2016 padding: 10px;
2017 position: relative;
2018}
2019.aside>:first-child, .notification>:first-child, .promo>:first-child {
2020 margin-top: 0;
2021}
2022.aside>:last-child, .notification>:last-child, .promo>:last-child {
2023 margin-bottom: 0;
2024}
2025.aside {
2026 background: #f9f9f9;
2027}
2028.notification {
2029 background: #fffbe4;
2030 border-color: #f8f6e6;
2031}
2032.promo {
2033 background: #f6f9ff;
2034 border-color: #eff2f9;
2035}
2036*/
Scott Maindb3678b2012-10-23 14:13:41 -07002037
2038/* SDK TOS styles */
2039
2040div.sdk-terms {
2041 white-space: pre-wrap;
2042 word-wrap: break-word;
2043 font-family: inherit;
2044 font-size: inherit;
2045 padding: 10px;
2046 height: 370px;
2047 width: 738px;
2048 border: 1px solid #444;
2049 background: transparent;
2050 overflow:auto;
2051 margin:0 0 10px;
2052}
2053
2054div.sdk-terms.fullsize {
2055 padding: 0;
2056 height: auto;
2057 width: auto;
2058 border:none;
2059}
2060
2061div.sdk-terms h3,
2062div.sdk-terms h2 {
2063 margin:0;
2064}
2065
2066div#sdk-terms-form {
2067 padding:0 0 0 10px;
2068}
2069
Scott Main11ac05b2012-11-15 14:57:44 -08002070div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002071 display:inline;
2072 margin:4px 4px 4px 0;
2073}
2074
2075
Scott Maine4d8f1b2012-06-21 18:03:05 -07002076/* --------------------------------------------------------------------------
2077Code Style
2078*/
2079pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002080 margin:0 0 1em 0;
2081 padding: 1em;
2082 overflow: auto;
2083 border: solid 1px #ddd;
Scott Mainb7f96372013-02-07 16:56:43 -08002084 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002085}
2086.str { color: #080; }
2087.kwd { color: #008; }
2088.com { color: #800; }
2089.typ { color: #606; }
2090.lit { color: #066; }
2091.pun { color: #660; }
2092.pln { color: #000; }
2093.tag { color: #008; }
2094.atn { color: #828; }
2095.atv { color: #080; }
2096.dec { color: #606; }
2097
2098/* --------------------------------------------------------------------------
2099Three-Pane
2100*/
2101/* Package Nav & Classes Nav */
2102.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002103 position: relative;
2104 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002105}
2106#packages-nav .js-pane,
2107#classes-nav .js-pane {
2108 overflow:visible;
2109}
2110#packages-nav {
2111 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002112 max-height: inherit;
2113 overflow: hidden;
2114 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002115}
2116#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002117 overflow: hidden;
2118 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002119}
2120#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002121 list-style-type: none;
2122 margin: 10px 0 20px 0;
2123 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002124}
2125#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002126 font-weight: bold;
2127 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002128}
2129#packages-nav li,
2130#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002131 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002132}
2133#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2134#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002135 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002136}
2137#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2138#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2139#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002140 color: #222;
2141 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002142}
2143#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2144#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002145 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002146}
2147#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2148a:visited,
2149#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2150a:visited,
2151#nav-tree li div.selected {
2152 font-weight: 500;
2153 color: #0099cc;
2154 background-color:#fff; }
2155 #packages-nav li.selected ul li a,
2156 #classes-nav li.selected ul li a {
2157 /* don't highlight child items */
2158 color: #555555; }
2159#nav-tree li div.selected a {
2160 font-weight: 500;
2161 color: #0099cc;
2162}
2163#nav-swap {
2164 height:30px;
2165 border-top:1px solid #ccc;
2166}
2167#nav-swap a {
2168 display:inline-block;
2169 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002170 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002171 font-size: 12px;
2172 padding: 5px 0 5px 5px;
2173}
2174
2175#nav-swap .fullscreen {
2176 float: right;
2177 width: 24px;
2178 height: 24px;
2179 text-indent: -1000em;
2180 padding:0;
2181 margin:3px 5px 0;
2182 background: url(../images/fullscreen.png) no-repeat -24px 0;
2183}
2184#nav-swap .fullscreen.disabled {
2185 background-position: 0 0;
2186}
2187#nav-swap .fullscreen:hover,
2188#nav-swap .fullscreen:focus {
2189 cursor:pointer;
2190}
2191
2192
2193/* nav tree */
2194#side-nav, #devdoc-nav, #swapper,
2195#nav-tree, #tree-list {
2196 overflow:hidden;
2197 margin-left:0;
2198}
2199
2200#nav-tree ul {
2201 list-style:none;
2202 padding:0;
2203 margin:10px 0;
2204}
2205
2206#nav-tree ul li div {
2207 padding:0 0 0 4px;
2208}
2209
2210#side-nav #nav-tree ul li a,
2211#side-nav #nav-tree ul li span.no-children {
2212 padding: 0;
2213 margin: 0;
2214}
2215
2216#nav-tree .plus {
2217 margin: 0 3px 0 0;
2218}
2219
2220#nav-tree ul ul {
2221 list-style: none;
2222 margin: 0;
2223 padding: 0 0 0 0;
2224}
2225
2226#nav-tree ul li {
2227 margin: 0;
2228 padding: 0 0 0 0;
2229 white-space: nowrap;
2230}
2231
2232#nav-tree .children_ul {
2233 padding:0;
2234 margin:0;
2235}
2236#nav-tree .children_ul li div {
2237 padding:0 0 0 10px;
2238}
2239#nav-tree .children_ul .children_ul li div {
2240 padding:0 0 0 20px;
2241}
2242
2243#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002244 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002245 text-decoration: none;
2246}
2247
2248#nav-tree span.label {
2249 width: 100%;
2250}
2251
2252#nav-tree {
2253 overflow-x: auto;
2254 overflow-y: scroll;
2255 outline:0;
2256}
2257
2258
2259/* Content */
2260#doc-col {
2261 margin-right:0;
2262}
2263#doc-content-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002264 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002265}
2266#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002267 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002268}
2269#doc-header {
Scott Mainb7f96372013-02-07 16:56:43 -08002270 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002271}
2272#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002273 line-height: 0;
2274 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002275}
2276#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002277 float: right;
2278 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002279}
2280#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002281 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002282}
2283#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002284 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002285}
2286#api-nav-header {
2287 height:19px; /* plus 16px padding = 35; same as #nav li */
2288 font-size:14px;
2289 padding: 8px 0;
2290 margin: 0;
2291 border-bottom: 1px solid #CCC;
2292 background:#e9e9e9;
2293 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2294
2295}
2296#api-nav-title {
2297 padding:0 5px;
2298 white-space:nowrap;
2299}
2300
2301#api-level-toggle {
2302 float:right;
2303 padding:0 5px;
2304}
2305
2306#api-level-toggle label {
2307 margin:0;
2308 vertical-align:top;
2309 line-height: 19px;
2310 font-size:13px;
2311 height: 19px;
2312}
2313
2314#api-level-toggle .select-wrapper {
2315 width: 35px;
2316 display: inline-block;
2317 overflow: hidden;
2318}
2319#api-level-toggle select {
2320 border: 0;
2321 appearance:none;
2322 -moz-appearance:none;
2323 -webkit-appearance: none;
2324 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002325 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002326 height: 19px;
2327 line-height: 19px;
2328 padding: 0;
2329 margin:1px 0 0 0;
2330 width:150%;
2331 font-size:13px;
2332 vertical-align:top;
2333 outline:0;
2334}
2335
2336
2337/* Toggle for revision notes and stuff */
2338div.toggle-content.closed .toggle-content-toggleme {
2339 display:none;
2340}
2341
2342#jd-content img.toggle-content-img {
2343 margin:0 5px 5px 0;
2344}
Scott Main220c3442012-07-16 15:40:17 -07002345div.toggle-content p {
2346 margin:10px 0 0;
2347}
2348div.toggle-content-toggleme {
2349 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002350}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002351
2352
2353/* API LEVEL FILTERED MEMBERS */
2354
2355.absent,
2356.absent a:link,
2357.absent a:visited,
2358.absent a:hover,
2359.absent * {
2360 color:#bbb !important;
2361 cursor:default !important;
2362 text-decoration:none !important;
2363}
2364#devdoc-nav li.absent.selected,
2365#devdoc-nav li.absent.selected *,
2366#devdoc-nav div.label.absent.selected,
2367#devdoc-nav div.label.absent.selected * {
2368 background-color:#eaeaea !important;
2369}
2370.absent h4.jd-details-title,
2371.absent h4.jd-details-title * {
2372 background-color:#f6f6f6 !important;
2373}
2374.absent img {
2375 opacity: .3;
2376 filter: alpha(opacity=30);
2377 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2378}
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388/* JQUERY RESIZABLE STYLES */
2389.ui-resizable { position: relative; }
2390.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2391.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2392/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2393body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2394.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2395border-bottom: solid 1px #ededed;
2396 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2397/*
2398.ui-resizable-e {
2399cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24001px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2401*/
2402
2403/* --------------------------------------------------------------------------
2404Lightbox
2405*/
Scott Mainb7f96372013-02-07 16:56:43 -08002406.lightbox {
2407 width: 769px;
2408 padding: 1.5em;
2409 margin: 0 auto;
2410 border: solid 1px #dcdcdc;
2411 background: #fff;
2412 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2413 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2414 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002415}
2416.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002417 float: left;
2418 width: 720px;
2419 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002420}
2421.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002422 float: right;
2423 width: 10px;
2424 height: 10px;
2425 margin: -10px -10px 10px 0;
2426 text-indent: -1000em;
2427 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002428}
2429.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002430 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002431}
2432
2433/* --------------------------------------------------------------------------
2434Misc
2435*/
2436
2437
2438.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002439 content: "";
2440 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002441}
2442.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002443 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002444}
2445.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002446 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002447}
2448table.blank th, table.blank td {
2449 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002450 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002451}
2452.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002453 margin: 0.5em 0 2em 0;
2454 color: #000;
2455 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002456}
2457
2458.nolist {
2459 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002460 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002461}
Scott Main5747d382012-11-30 12:02:42 -08002462#tb .nolist {
2463 margin-left:15px;
2464}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002465
Scott Main8aa725e2013-04-25 10:00:32 -07002466dl.xml>dt {
2467 text-transform:uppercase;
2468}
2469dl.xml dl.attr {
2470 margin-top:0;
2471}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002472
2473pre.classic {
2474 background-color:transparent;
2475 border:none;
2476 padding:0;
2477}
2478
2479p.img-caption {
2480 margin: -10px 0 20px;
2481 font-size:13px;
2482 color:#666;
2483}
2484
Scott Main48dd7f22013-02-21 10:52:02 -08002485div.figure,
2486div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002487 float:right;
2488 clear:right;
2489 margin:10px 0 0 0;
2490 padding:0 0 0 20px;
2491 /* width must be defined w/ an inline style matching the image width */
2492}
2493
Scott Main48dd7f22013-02-21 10:52:02 -08002494div.figure-left {
2495 float:left;
2496 clear:left;
2497 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002498 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002499 /* width must be defined w/ an inline style matching the image width */
2500}
2501
2502img.frame {
2503 border:1px solid #DDD;
2504 padding:4px;
2505}
2506
Scott Maine4d8f1b2012-06-21 18:03:05 -07002507p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002508 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002509 font-size:13px;
2510 color:#666;
2511}
2512
Scott Main24bbcd52012-09-21 14:33:43 -07002513p.code-caption {
2514 margin: 0 0 4px 0;
Scott Maina07be8e2013-03-06 12:12:21 -08002515 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002516 color:#666;
2517}
2518
Scott Main54d2a9b2012-07-24 14:54:32 -07002519div.note,
2520div.caution,
2521div.warning {
2522 margin: 0 0 15px;
2523}
2524
Scott Maine4d8f1b2012-06-21 18:03:05 -07002525p.note, div.note,
2526p.caution, div.caution,
2527p.warning, div.warning {
2528 padding: 0 0 0 10px;
2529 border-left: 4px solid;
2530}
2531
Scott Main24bbcd52012-09-21 14:33:43 -07002532p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002533 border-color: #258AAF;
2534}
2535
Scott Main24bbcd52012-09-21 14:33:43 -07002536p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002537 border-color: #FF8800;
2538}
2539
Scott Main24bbcd52012-09-21 14:33:43 -07002540p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002541 border-color: #ff4443;
2542}
2543
Scott Main412eaf22012-06-22 14:36:33 -07002544div.note.design {
2545 border-left: 4px solid #33B5E5;
2546}
2547
2548div.note.develop {
2549 border-left: 4px solid #F80;
2550}
2551
2552div.note.distribute {
2553 border-left: 4px solid #9C0;
2554}
2555
2556.note p, .caution p, .warning p {
2557 margin:0 0 5px;
2558}
2559
2560.note p:last-child, .caution p:last-child, .warning p:last-child {
2561 margin-bottom:0;
2562}
2563
Scott Main5b5ff1a2012-09-12 10:29:45 -07002564body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002565 display:block;
2566 float:right;
2567 width:280px;
2568 font-size:20px;
2569 font-style:italic;
2570 line-height:24px;
2571 color:#33B5E5;
2572 margin:0 0 20px 30px;
2573}
2574
Scott Maine4d8f1b2012-06-21 18:03:05 -07002575div.design-announce p {
2576 margin:0 0 10px;
2577}
2578
2579#devdoc-nav a.totop {
2580 display:block;
2581 top:0;
2582 width:inherit;
2583 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2584 text-indent:-9999em;
2585}
2586#devdoc-nav a.totop {
2587 position:fixed;
2588 display:none;
2589}
2590#devdoc-nav a.totop:hover {
2591 background-color:#33B5E5;
2592}
2593
2594.content-footer a.totop {
2595 text-transform:uppercase;
2596 line-height:30px;
2597}
2598
Scott Maindb3678b2012-10-23 14:13:41 -07002599.expandable {
2600 height:34px;
2601 padding-left:20px;
2602 position:relative;
2603}
2604.expandable:before {
2605 content: '';
2606 background-image: url(../images/styles/disclosure_down.png);
2607 background-repeat:no-repeat;
2608 background-position: -12px -9px;
2609 width: 20px;
2610 height: 20px;
2611 display: inline-block;
2612 position: absolute;
2613 top: 0;
2614 left: 0; }
2615}
2616.expandable.expanded:before {
2617 background-image: url(../images/styles/disclosure_up.png);
2618}
2619
Scott Maind2af6d22013-05-13 18:39:06 -07002620/* notice sidebox link used in Design docs */
2621a.notice-developers {
2622 float:right;
2623 width:240px;
2624 min-height:50px;
2625 margin:0 0 20px 20px;
2626 border:1px solid #ddd;
2627}
2628a.notice-developers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002629 min-height:40px;
2630 background:url('../images/styles/notice-developers.png') no-repeat 10px 10px;
2631 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002632}
2633a.notice-developers:hover {
2634 background:#eee;
2635}
2636a.notice-developers h3 {
2637 font-size:14px;
2638 font-weight:normal;
2639 text-transform:uppercase;
2640 color:#000 !important;
2641 margin:0;
2642}
2643a.notice-developers p {
2644 margin:0;
Scott Main9bfcd732013-05-14 09:14:35 -07002645 line-height:16px;
2646}
2647a.notice-developers.left {
2648 margin-left:0;
2649 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002650}
2651
2652
Dirk Doughertybec14292013-04-10 20:23:40 -07002653/* -----------------------------------------------
2654good/bad example containers
2655*/
Scott Maindb3678b2012-10-23 14:13:41 -07002656
Dirk Doughertybec14292013-04-10 20:23:40 -07002657div.example-block {
2658 background-repeat: no-repeat;
2659 background-position:10px 8px;
2660 background-color:#ccc;
2661 padding:4px;
2662 margin:.8em auto 1.5em 2em;
2663 width:260px;
2664 float:right;
2665}
2666/* red container */
2667.example-block.bad {
2668 background-image: url(/images/example-bad.png);
2669 background-color:#f4cccc;
2670}
2671/* green container */
2672.example-block.good {
2673 background-image: url(/images/example-good.png);
2674 background-color:#d9ead3;
2675}
2676/* container heading div */
2677#jd-content .example-block .heading {
2678 font-weight:bold;
2679 margin:6px 0 9px 36px;
2680 padding:6px auto;
2681}
2682/* container image (if any) */
2683#jd-content .example-block img {
2684 margin:0;
2685 padding:0px;
2686}
2687
2688.example-block table {
2689 margin:0;
2690}
Scott Maindb3678b2012-10-23 14:13:41 -07002691
Scott Maine4d8f1b2012-06-21 18:03:05 -07002692/* -----------------------------------------------
2693Dialog box for popup messages
2694*/
2695
2696div.dialog {
2697 height:0;
2698 margin:0 auto;
2699}
2700
2701div.dialog>div {
2702 z-index:99;
2703 position:fixed;
2704 margin:70px 0;
2705 width: 391px;
2706 height: 200px;
2707 background: #F7F7F7;
2708-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2709-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2710box-shadow: 0 0 15px rgba(0,0,0,0.5);
2711}
2712/* IE6 can't position fixed */
2713* html div.dialog div { position:absolute; }
2714
2715
2716div#deprecatedSticker {
2717 display:none;
2718 z-index:99;
2719 position:fixed;
2720 right:15px;
2721 top:114px;
2722 margin:0;
2723 padding:1em;
2724 background:#FFF;
2725 border:1px solid #dddd00;
2726 box-shadow:-5px 5px 10px #ccc;
2727 -moz-box-shadow:-5px 5px 10px #ccc;
2728 -webkit-box-shadow:-5px 5px 10px #ccc;
2729}
2730
2731div#naMessage {
2732 display:none;
2733 width:555px;
2734 height:0;
2735 margin:0 auto;
2736}
2737
2738div#naMessage div {
2739 z-index:99;
2740 width:450px;
2741 position:fixed;
2742 margin:50px 0;
2743 padding:4em 4em 3em;
2744 background:#FFF;
2745 border:1px solid #999;
2746 box-shadow:-10px 10px 40px #888;
2747 -moz-box-shadow:-10px 10px 40px #888;
2748 -webkit-box-shadow:-10px 10px 40px #888;
2749}
2750/* IE6 can't position fixed */
2751* html div#naMessage div { position:absolute; }
2752
2753div#naMessage strong {
2754 font-size:1.1em;
2755}
2756
2757
2758/* --------------------------------------------------------------------------
2759Slideshow Controls & Next/Prev
2760*/
Scott Mainb7f96372013-02-07 16:56:43 -08002761.slideshow-next, .slideshow-prev {
2762 width: 20px;
2763 height: 36px;
2764 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002765}
2766.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002767 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002768}
2769.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002770 content: "";
2771 display: table;
2772 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002773}
2774a.slideshow-next, a.slideshow-next:visited {
2775
Scott Mainb7f96372013-02-07 16:56:43 -08002776 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002777
Scott Mainb7f96372013-02-07 16:56:43 -08002778 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002779
2780}
2781
2782a.slideshow-prev, a.slideshow-prev:visited {
2783
Scott Mainb7f96372013-02-07 16:56:43 -08002784 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002785
Scott Mainb7f96372013-02-07 16:56:43 -08002786 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002787
2788}
2789
2790.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2791
Scott Mainb7f96372013-02-07 16:56:43 -08002792 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002793
2794}
2795
2796.slideshow-next:active, .slideshow-prev:active {
2797
Scott Mainb7f96372013-02-07 16:56:43 -08002798 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002799
2800}
2801.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002802 width: 74px;
2803 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002804}
2805.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002806 display: inline-block;
2807 width: 12px;
2808 height: 12px;
2809 margin: 0 2px 20px 2px;
2810 background: #ccc;
2811 -webkit-border-radius: 50%;
2812 -moz-border-radius: 50%;
2813 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002814}
2815.slideshow-nav a:hover, .slideshow-nav a:focus {
2816
Scott Mainb7f96372013-02-07 16:56:43 -08002817 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002818}
2819
2820.slideshow-nav a:active {
2821
Scott Mainb7f96372013-02-07 16:56:43 -08002822 background: #1e799a;
2823 background: #ebebeb;
2824 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2825 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2826 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07002827}
2828.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002829 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002830}
2831/* --------------------------------------------------------------------------
2832Tabs
2833*/
2834ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08002835 padding: 0;
2836 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002837}
2838ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002839 content: "";
2840 display: table;
2841 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002842}
2843ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08002844 list-style-type: none;
2845 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002846}
2847ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002848 display: block;
2849 height: 36px;
2850 line-height: 36px;
2851 padding: 0 15px;
2852 margin-right: 2px;
2853 color: #222;
2854 -moz-border-radius-topleft: 2px;
2855 -moz-border-radius-topright: 2px;
2856 -moz-border-radius-bottomright: px;
2857 -moz-border-radius-bottomleft: px;
2858 -webkit-border-radius: 2px 2px px px;
2859 border-radius: 2px 2px px px;
2860 border-top: solid 1px #ebebeb;
2861 border-left: solid 1px #ebebeb;
2862 border-right: solid 1px #ebebeb;
2863 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002864 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2865 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2866 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2867 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2868 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2869 background-image: linear-gradient(top, #ffffff, #fafafa);
2870 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2871EndColorStr='#fafafa');
2872}
2873ul.tabs li a:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002874 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002875}
2876ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08002877 height: 37px;
2878 color: #33B5E5;
2879 background-color: #f7f7f7;
2880 background-image: none;
2881 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002882}
2883.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002884 padding: 1.2em;
2885 margin: -1px 0 2em 0;
2886 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002887 -moz-border-radius: 2px;
2888 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08002889 border: solid 1px #ddd;
2890 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002891}
2892/* --------------------------------------------------------------------------
2893Feature Boxes
2894*/
2895.feature-box {
2896 width: 291px;
2897 height: 200px;
2898 position: relative;
2899 background: #F7F7F7;
2900}
2901.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08002902 z-index: 100;
2903 position: absolute;
2904 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002905}
2906.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08002907 width: 291px;
2908 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002909}
2910.dialog .box-border .top,
2911.dialog .box-border .bottom { width:391px; }
2912
Scott Mainb7f96372013-02-07 16:56:43 -08002913.box-border .left, .box-border .right {
2914 width: 1px;
2915 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002916}
2917.box-border .top { top: 0; left: 0 }
2918.box-border .top .left { top: 1px; left: 0 }
2919.box-border .top .right { top: 1px; right: 0 }
2920.box-border .bottom .left { top: -8px; left: 0 }
2921.box-border .bottom { top: 200px; left: 0 }
2922.box-border .bottom .right { top: -8px; right: 0 }
2923
2924.feature-box h4,
2925.dialog h4 {
2926 margin: 15px 18px 10px;
2927 padding:0;
2928}
2929
2930.feature-box p,
2931.dialog p {
2932 margin: 10px 18px;
2933 padding:0;
2934}
2935.feature-box .link,
2936.dialog .link {
2937 border-top: 1px solid #dedede;
2938 bottom: 0;
2939 position: absolute;
2940 width: inherit;
2941}
2942.feature-box a, .feature-box h4,
2943.dialog a, .dialog h4 {
2944 -webkit-transition: color .4s ease;
2945 -moz-transition: color .4s ease;
2946 -o-transition: color .4s ease;
2947 transition: color .4s ease;
2948}
2949.feature-box:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002950 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002951}
2952.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Mainb7f96372013-02-07 16:56:43 -08002953.left, .feature-box:hover .right {
2954 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002955}
2956.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08002957 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002958}
2959/* --------------------------------------------------------------------------
2960Page-Specific Styles
2961*/
2962.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08002963 position: relative;
2964 float: left;
2965 width: 92px;
2966 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002967}
2968.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08002969 color: #fff;
2970 font-size: 11.5px;
2971 width: 82px;
2972 height: 82px;
2973 margin-top:-30px;
2974 line-height: 82px;
2975 text-align: center;
2976 border: solid 5px #fff;
2977 -webkit-border-radius: 50%;
2978 -moz-border-radius: 50%;
2979 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002980}
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995/* ########### REFERENCE DOCS ################## */
2996
2997#packages-nav h2,
2998#classes-nav h2 {
2999 font-size:18px;
3000 margin:0;
3001 padding:0 0 0 4px;
3002}
3003
3004#jd-header {
3005 padding: 0 0 5px;
3006 margin: 20px 0 10px;
3007 font-size:13px;
3008 border-bottom:solid 1px #ccc;
3009}
3010
3011#jd-header h1 {
3012 margin:0;
3013 padding:0;
3014}
3015
3016/* page-top-right container for reference pages (holds
3017links to summary tables) */
3018#api-info-block {
3019 font-size:13px;
3020 margin:20px 0 0;
3021 padding:0 10px 6px;
3022 font-weight:normal;
3023 float:right;
3024 text-align:right;
3025 color:#999;
3026 max-width:70%;
3027}
3028
3029#api-info-block div.api-level {
3030 font-weight:bold;
3031 font-size:inherit;
3032 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003033 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003034 padding:0;
3035 margin:0;
3036}
3037
3038/* inheritance table */
3039.jd-inheritance-table {
3040 border-spacing:0;
3041 margin:0;
3042 padding:0;
3043 font-size:13px;
3044 background-color:transparent;
3045}
3046.jd-inheritance-table tr td {
3047 border: none;
3048 margin: 0;
3049 padding: 0;
3050 background-color:transparent;
3051}
3052.jd-inheritance-table .jd-inheritance-space {
3053 font-weight:bold;
3054 width:1em;
3055}
3056.jd-inheritance-table .jd-inheritance-interface-cell {
3057 padding-left: 17px;
3058}
3059
3060
3061
3062.jd-sumtable a {
3063 text-decoration:none;
3064}
3065
3066.jd-sumtable a:hover {
3067 text-decoration:underline;
3068}
3069
3070/* the link inside a sumtable for "Show All/Hide All" */
3071.toggle-all {
3072 display:block;
3073 float:right;
3074 font-weight:normal;
3075 font-size:0.9em;
3076}
3077
3078/* adjustments for in/direct subclasses tables */
3079.jd-sumtable.jd-sumtable-subclasses {
3080 margin: 1em 0 0 0;
3081 max-width:968px;
3082 background-color:transparent;
3083 font-size:13px;
3084}
3085
3086/* extra space between end of method name and open-paren */
3087.sympad {
3088 margin-right: 2px;
3089}
3090
3091/* right alignment for the return type in sumtable */
3092.jd-sumtable .jd-typecol {
3093 text-align:right;
3094}
3095
3096/* adjustments for the expando table-in-table */
3097.jd-sumtable-expando {
3098 margin:.5em 0;
3099 padding:0;
3100}
3101
3102/* a div that holds a short description */
3103.jd-descrdiv {
3104 padding:3px 1em 0 1em;
3105 margin:0;
3106 border:0;
3107}
3108
3109#jd-content img.jd-expando-trigger-img {
3110 padding:0 4px 4px 0;
3111 margin:0;
3112}
3113
3114.jd-sumtable-subclasses div#subclasses-direct,
3115.jd-sumtable-subclasses div#subclasses-indirect {
3116 margin:0 0 0 13px;
3117}
3118
3119
3120
3121/********* MEMBER REF *************/
3122
3123
3124.jd-details {
3125/* border:1px solid #669999;
3126 padding:4px; */
3127 margin:0 0 1em;
3128}
3129
3130/* API reference: a container for the
3131.tagdata blocks that make up the detailed
3132description */
3133.jd-details-descr {
3134 padding:0;
3135 margin:.5em .25em;
3136}
3137
3138/* API reference: a block containing
3139a detailed description, a params table,
3140seealso list, etc */
3141.jd-tagdata {
3142 margin:.5em 1em;
3143}
3144
3145.jd-tagdata p {
3146 margin:0 0 1em 1em;
3147}
3148
3149/* API reference: adjustments to
3150the detailed description block */
3151.jd-tagdescr {
3152 margin:.25em 0 .75em 0;
3153}
3154
3155.jd-tagdescr ol,
3156.jd-tagdescr ul {
3157 margin:0 2.5em;
3158 padding:0;
3159}
3160
3161.jd-tagdescr table,
3162.jd-tagdescr img {
3163 margin:.25em 1em;
3164}
3165
3166.jd-tagdescr li {
3167margin:0 0 .25em 0;
3168padding:0;
3169}
3170
3171/* API reference: heading marking
3172the details section for constants,
3173attrs, methods, etc. */
3174h4.jd-details-title {
3175 font-size:1.15em;
3176 background-color: #E2E2E2;
3177 margin:1.5em 0 .6em;
3178 padding:3px 95px 3px 3px; /* room for api-level */
3179}
Scott Mainab4daf42012-11-30 11:27:17 -08003180body.google h4.jd-details-title {
3181 background-color: #FFF;
3182 padding-top:5px;
3183 border-top: 1px solid #ccc;
3184}
3185body.google table.jd-sumtable th {
3186 background-color: #FFF;
3187 color:#000;
3188}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003189
3190h4.jd-tagtitle {
3191 margin:0;
3192}
3193
3194h4 .normal {
3195 font-weight:normal;
3196}
3197
3198/* API reference: heading for "Parameters", "See Also", etc.,
3199in details sections */
3200h5.jd-tagtitle {
3201 margin:0 0 .25em 0;
3202 font-size:1em;
3203}
3204
3205.jd-tagtable {
3206 margin:0;
3207 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003208 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003209}
3210
3211.jd-tagtable td,
3212.jd-tagtable th {
3213 border:none;
3214 background-color:#fff;
3215 vertical-align:top;
3216 font-weight:normal;
3217 padding:2px 10px;
3218}
3219
3220.jd-tagtable th {
3221 font-style:italic;
3222}
3223
3224/* Inline api level indicator for methods */
3225div.api-level {
3226 font-size:.8em;
3227 font-weight:normal;
3228 color:#999;
3229 float:right;
3230 padding:0 8px 0;
3231 margin-top:-30px;
3232}
3233
3234table.jd-tagtable td,
3235table.jd-tagtable th {
3236 background-color:transparent;
3237}
3238
3239table.jd-tagtable th {
3240 color:inherit;
3241}
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265/* SEARCH FILTER */
3266
Scott Main0e76e7e2013-03-12 10:24:07 -07003267.menu-container {
3268 position:relative;
3269}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003270#search_autocomplete {
3271 font-weight:normal;
3272}
3273
Scott Main0e76e7e2013-03-12 10:24:07 -07003274.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003275 width: 193px;
3276 float: right;
3277}
Scott Main0e76e7e2013-03-12 10:24:07 -07003278.search_filtered_wrapper.docs {
3279 width:875px;
3280 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003281 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003282 top:26px;
3283 right:66px;
3284}
3285.suggest-card {
3286 position:relative;
3287 width:170px;
3288 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003289 padding:5px;
3290 border: solid 1px #C5C5C5;
3291 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003292 top: 15px;
3293 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003294 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3295 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3296 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3297}
Scott Main0e76e7e2013-03-12 10:24:07 -07003298.suggest-card.reference {
3299 position:absolute;
3300 z-index:999;
3301 min-width:171px; /* +padding and border makes this match input width */
3302 min-height:93px; /* add 3px because this has 1 not 4px top border */
3303 width:auto;
3304 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003305 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003306}
3307.suggest-card.develop {
3308 z-index:997;
3309 border-top: solid 4px #F80;
3310 float:right;
3311}
3312.suggest-card.design {
3313 z-index:996;
3314 border-top: solid 4px #33b5e5;
3315 float:right;
3316}
3317.suggest-card.distribute {
3318 z-index:995;
3319 border-top: solid 4px #9C0;
3320 float:right;
3321}
3322.child-card {
3323 width:100%;
3324}
3325.suggest-card.dummy {
3326 width:172px;
3327 float:right;
3328 border:0;
3329 background:transparent;
3330 -moz-box-shadow: none;
3331 -webkit-box-shadow: none;
3332 box-shadow: none;
3333}
3334
3335ul.search_filtered {
3336 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003337 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003338 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003339 padding: 0;
3340}
Scott Main0e76e7e2013-03-12 10:24:07 -07003341.search_filtered .jd-selected {
3342 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003343 cursor:pointer;
3344}
Scott Main0e76e7e2013-03-12 10:24:07 -07003345.search_filtered .jd-selected,
3346.search_filtered .jd-selected a {
3347 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003348}
3349
3350.no-display {
3351 display: none;
3352}
3353
Scott Main0e76e7e2013-03-12 10:24:07 -07003354.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003355 font-size: 0.81em;
3356 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003357 margin: 0 0 2px;
3358 padding: 0;
3359 line-height:1.5em;
3360}
3361
Scott Main0e76e7e2013-03-12 10:24:07 -07003362.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003363 padding:0 5px;
3364 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003365 display:inline-block;
3366 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003367}
3368
Scott Main0e76e7e2013-03-12 10:24:07 -07003369.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003370 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003371 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003372 border: none;
3373 margin: 8px 0 2px;
3374 padding:1px 5px;
3375 line-height:1.5em;
3376}
Scott Main0e76e7e2013-03-12 10:24:07 -07003377.search_filtered li.header.small {
3378 font-size:0.85em;
3379}
Scott Main7e447ed2013-02-19 17:22:37 -08003380
Scott Main0e76e7e2013-03-12 10:24:07 -07003381.suggest-card.reference
3382.search_filtered li.header {
3383 color:#aaa;
3384 font-size: 0.81em;
3385}
3386
3387.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003388 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003389}
3390
3391.show-item {
3392 display: table-row;
3393}
3394.hide-item {
3395 display: hidden;
3396}
3397
3398
3399
3400
3401
3402/* SEARCH RESULTS */
3403
Scott Maine4d8f1b2012-06-21 18:03:05 -07003404
3405#leftSearchControl .gsc-twiddle {
3406 background-image : none;
3407}
3408
3409#leftSearchControl td, #searchForm td {
3410 border: 0px solid #000;
3411 padding:0;
3412}
3413
3414#leftSearchControl .gsc-resultsHeader .gsc-title {
3415 padding-left : 0px;
3416 font-weight : bold;
3417 font-size : 13px;
3418 color:#006699;
3419 display : none;
3420}
3421
3422#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3423 display : none;
3424}
3425
3426#leftSearchControl .gsc-resultsRoot {
3427 padding-top : 6px;
3428}
3429
3430#leftSearchControl div.gs-visibleUrl-long {
3431 display : block;
3432 color:#006699;
3433}
3434
3435#leftSearchControl .gsc-webResult {
3436 padding:0 0 20px 0;
3437}
3438
3439.gsc-webResult div.gs-visibleUrl-short,
3440table.gsc-branding,
3441.gsc-clear-button {
3442 display : none;
3443}
3444
3445.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3446.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3447#leftSearchControl a,
3448#leftSearchControl a b {
3449 color:#006699;
3450}
3451
3452.gsc-resultsHeader {
3453 display: none;
3454}
3455
3456/* Disable built in search forms */
3457.gsc-control form.gsc-search-box {
3458 display : none;
3459}
3460table.gsc-search-box {
3461 margin:6px 0 0 0;
3462 border-collapse:collapse;
3463}
3464
3465td.gsc-input {
3466 padding:0 2px;
3467 width:100%;
3468 vertical-align:middle;
3469}
3470
3471input.gsc-input {
3472 border:1px solid #BCCDF0;
3473 width:99%;
3474 padding-left:2px;
3475 font-size:.95em;
3476}
3477
3478td.gsc-search-button {
3479 text-align: right;
3480 padding:0;
3481 vertical-align:top;
3482}
3483
3484
3485#searchResults {
3486 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3487(it doesn't) */
3488 height:auto;
3489}
3490
3491#searchResults .gsc-control {
3492 position:relative;
3493 width:auto;
3494 padding:0 0 10px;
3495}
3496
3497#searchResults .gsc-tabsArea {
3498 position:relative;
3499 white-space:nowrap;
3500 float:left;
3501 width:200px;
3502}
3503
3504#searchResults .gsc-above-wrapper-area {
3505 display:none;
3506}
3507
3508#searchResults .gsc-resultsbox-visible {
3509 float:left;
3510 width:720px;
3511 margin-left:20px;
3512}
3513
3514#searchResults .gsc-tabHeader {
3515 padding: 3px 6px;
3516 position:relative;
3517 width:auto;
3518 display:block;
3519}
3520
3521#searchResults h2#searchTitle {
3522 padding:0;
3523 margin:5px 0;
3524 border:none;
3525}
3526
3527#searchResults h2#searchTitle em {
3528 font-style:normal;
3529 color:#33B5E5;
3530}
3531
3532#searchResults .gsc-table-result {
3533 margin:5px 0 10px 0;
3534 background-color:transparent;
3535}
3536#searchResults .gs-web-image-box, .gs-promotion-image-box {
3537 width:120px;
3538}
3539#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3540 max-width:120px;
3541}
3542
3543#searchResults .gsc-table-result .gsc-thumbnail {
3544 padding:0 20px 0 0;
3545}
3546
3547#searchResults td {
3548 background-color:transparent;
3549}
3550
3551#searchResults .gsc-expansionArea {
3552 position:relative;
3553}
3554#searchResults .gsc-tabsArea .gsc-cursor-box {
3555 width:200px;
3556 padding:20px 0 0 1px;
3557}
3558#searchResults .gsc-cursor-page {
3559 display:inline-block;
3560 float:left;
3561 margin:-1px 0 0 -1px;
3562 padding:0;
3563 height:27px;
3564 width:27px;
3565 text-align:center;
3566 line-height:2;
3567}
3568
3569#searchResults .gsc-tabHeader.gsc-tabhInactive,
3570#searchResults .gsc-cursor-page {
3571 text-decoration:none;
3572 color:#258AAF;
3573 border: solid 1px #DADADA;
3574}
3575
3576#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3577#searchResults .gsc-cursor-page:hover {
3578 border-color: #DBDBDB;
3579 background-color: #F3F3F3;
3580 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3581 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3582 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3583 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3584 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3585 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3586 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3587EndColorStr='#ececec');
3588 color: #33B5E5;
3589}
3590
3591#searchResults .gsc-tabHeader.gsc-tabhActive,
3592#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3593#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3594#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3595 color:#fff;
3596 background-color: #09C;
3597 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3598 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3599 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3600 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3601 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3602 background-image: linear-gradient(top, #2FADDB, #09C);
3603 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3604 border: 1px solid #3990AB;
3605 z-index:100;
3606}
3607
3608}
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622/*********** PREVIOUSLY dac-styles.css ***************/
3623
3624
Scott Maine4d8f1b2012-06-21 18:03:05 -07003625#header {
3626 border-bottom:0;
3627}
3628
3629#header .wrap {
3630 max-width:940px;
3631 height:41px;
3632 border-bottom:1px solid;
3633 border-color: #ccc;
3634 position:relative;
3635}
3636
3637.about #header .wrap {
3638 border-color: #9933CC;
3639}
3640
3641.design #header .wrap {
3642 border-color: #33b5e5;
3643}
3644
3645.develop #header .wrap {
3646 border-color: #F80;
3647}
3648
3649.distribute #header .wrap {
3650 border-color: #9C0;
3651}
3652
3653.logo a {
3654 width:123px;
3655 float:left;
3656}
3657
3658#header .logo {
3659 margin-top: -6px;
3660 margin-left: 0px;
3661 margin-bottom:0px;
3662 width: 160px;
3663 padding-right:10px;
3664}
3665
3666.search {
3667 height:25px;
3668 margin-top: -3px;
3669 margin-bottom: 0px;
3670}
3671
3672
3673
3674/* Quicknav */
3675.btn-quicknav {
3676 width:20px;
3677 height:28px;
3678 float:left;
3679 margin-left:6px;
3680 padding-right:10px;
3681 position:relative;
3682 cursor:pointer;
3683 border-right:1px solid #CCC;
3684}
3685
3686.btn-quicknav a {
3687 zoom:1;
3688 position:absolute;
3689 top:13px;
3690 left:5px;
3691 display:block;
3692 text-indent:-9999em;
3693 width:10px;
3694 height:5px;
3695 background:url(../images/quicknav_arrow.png) no-repeat;
3696}
3697
3698.btn-quicknav a.arrow-active {
3699 background-position: 0 -5px;
3700 display:none;
3701}
3702
3703#header-wrap.quicknav a.arrow-inactive {
3704 display:none;
3705}
3706
3707.btn-quicknav.active a.arrow-active {
3708 display:block;
3709}
3710
3711.nav-x li {
3712 display:block;
3713 float:left;
3714 margin-right:45px;
3715 -webkit-transition: all 0.25s linear;
3716 -moz-transition: all 0.25s linear;
3717 -ms-transition: all 0.25s linear;
3718 -o-transition: all 0.25s linear;
3719 transition: all 0.25s linear;
3720}
3721
3722#header-wrap.quicknav .nav-x li {
3723 min-width:160px;
3724 margin-right:20px;
3725}
3726
3727#header-wrap.quicknav li.last {
3728 margin-right:0px;
3729}
3730
3731#quicknav {
3732 float:none;
3733 clear:both;
3734 margin-left:180px;
3735 margin-top:-30px;
3736 display:none;
3737 overflow:hidden;
3738}
3739
3740#header-wrap.quicknav #quicknav {
3741
3742}
3743
3744#quicknav ul {
3745 margin:10px 0;
3746 padding:0;
3747}
3748
3749#quicknav ul li.design {
3750 border-top:1px solid #33b5e5;
3751}
3752
3753#quicknav ul li.develop {
3754 border-top:1px solid #FF8800;
3755}
3756
3757#quicknav ul li.distribute {
3758 border-top:1px solid #99cc00;
3759}
3760
3761#quicknav ul li {
3762 display:block;
3763 float:left;
3764 margin:0 20px 0 0;
3765 min-width:140px;
3766}
3767
3768#quicknav ul li.last {
3769 margin-right:0px;
3770}
3771
3772#quicknav ul li ul li {
3773 float:none;
3774}
3775
3776#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003777 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003778}
3779
3780#quicknav ul li li ul,
3781#quicknav ul li li ul li {
3782 margin:0;
3783}
3784
3785#quicknav ul li li ul li:before {
3786 content:"\21B3";
3787}
3788
3789#header-wrap {
3790 -webkit-transition: all 0.25s ease-out;
3791 -moz-transition: all 0.25s ease-out;
3792 -ms-transition: all 0.25s ease-out;
3793 -o-transition: all 0.25s ease-out;
3794 transition: all 0.25s ease-out;
3795
3796}
3797
3798#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003799 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003800
3801}
3802
3803/* SEARCH AND MORE */
3804.search {
3805 position: absolute;
3806 width: 50px;
3807 height:28px;
3808 display: block;
3809 margin-top:-3px;
3810 margin-bottom:7px;
3811 overflow:hidden;
3812 z-index:100;
3813 right:54px;
3814 -webkit-transition: width 0.4s ease;
3815 -moz-transition: width 0.4s ease;
3816 -o-transition: width 0.4s ease;
3817 transition: width 0.4s ease;
3818}
3819
3820.search #search-btn {
3821 width:50px;
3822 height:28px;
3823 background:url(../images/icon_search.png) no-repeat;
3824 float:left;
3825}
3826
3827.search-inner {
3828 width:245px;
3829}
3830
3831.search:hover, .search.active {
3832 width:245px;
3833}
3834
3835.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003836 position: absolute;
3837 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07003838}
3839
3840.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003841 width: 214px;
3842 height: 1px;
3843 top: 24px;
3844 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003845}
3846
Scott Mainb7f96372013-02-07 16:56:43 -08003847.search .left, .search .right {
3848 height: 5px;
3849 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003850}
3851
3852.search .left {
3853 top: 22px;
3854 left: 56px;
3855 background-color:#CCC;
3856}
3857
3858.search .right {
3859 top: 22px;
3860 left: 238px;
3861 background-color:#CCC;
3862}
3863
3864.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08003865 margin-top: 2px;
3866 width: 162px;
3867 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003868}
3869
3870.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08003871 color: #2f2f2f;
3872 font-size: 0.95em;
3873 width: 178px;
3874 border: none;
3875 margin-left: 6px;
3876 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003877 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08003878 background-color: transparent;
3879 border-bottom:1px solid #CCC;
3880 padding:0 0 0 4px;
3881 outline:none;
3882 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003883}
3884
3885.search:hover form input {
3886 border-bottom:1px solid #33B5E5;
3887}
3888
3889.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003890 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003891}
3892
3893.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08003894 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003895}
3896
3897.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08003898 color: #222;
3899 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07003900}
3901
3902.moremenu {
3903 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08003904 position: relative;
3905 width: 50px;
3906 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003907 display: block;
3908 margin-top:-3px;
3909 margin-bottom:7px;
3910 overflow:hidden;
3911 -webkit-transition: width 0.25s ease;
3912 -moz-transition: width 0.25s ease;
3913 -o-transition: width 0.25s ease;
3914 transition: width 0.25s ease;
3915}
3916
3917.moremenu #more-btn {
3918 width:40px;
3919 height:28px;
3920 background:url(../images/icon_more.png) no-repeat;
3921 border-left:1px solid #CCC;
3922 float:left;
3923 cursor:pointer;
3924}
3925
3926.moremenu:hover #more-btn {
3927 background-position:0 -28px;
3928}
3929
3930.morehover {
3931 position:absolute;
3932 right:6px;
3933 top:-9px;
3934 width:40px;
3935 height:35px;
3936 z-index:99;
3937 overflow:hidden;
3938
3939 -webkit-opacity:0;
3940 -moz-opacity:0;
3941 -o-opacity:0;
3942 opacity:0;
3943
3944 -webkit-transform-origin:100% 0%;
3945 -moz-transform-origin:100% 0%;
3946 -o-transform-origin:100% 0%;
3947 transform-origin:100% 0%;
3948
3949 -webkit-transition-property: -webkit-opacity;
3950 -webkit-transition-duration: .25s;
3951 -webkit-transition-timing-function:ease;
3952
Scott Main0e76e7e2013-03-12 10:24:07 -07003953 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003954 -moz-transition-duration: .25s;
3955 -moz-transition-timing-function:ease;
3956
Scott Main0e76e7e2013-03-12 10:24:07 -07003957 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003958 -o-transition-duration: .25s;
3959 -o-transition-timing-function:ease;
3960
Scott Main0e76e7e2013-03-12 10:24:07 -07003961 transition-property: opacity;
3962 transition-duration: .25s;
3963 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003964}
3965
Scott Maine05e6f92013-01-29 13:34:17 -08003966.morehover:hover,
3967.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003968 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07003969 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003970 width:268px;
3971 -webkit-transition-property:height, -webkit-opacity;
3972}
3973
3974.morehover .top {
3975 width:268px;
3976 height:39px;
3977 background:url(../images/more_top.png) no-repeat;
3978}
3979
3980.morehover .mid {
3981 width:228px;
3982 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07003983 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003984}
3985
3986.morehover .mid .header {
3987 border-bottom:1px solid #ccc;
3988 font-weight:bold;
3989}
3990
3991.morehover .bottom {
3992 width:268px;
3993 height:6px;
3994 background:url(../images/more_bottom.png) no-repeat;
3995}
3996
3997.morehover ul {
3998 margin:10px 10px 20px 0;
3999}
4000
4001.morehover ul li {
4002 list-style:none;
4003}
4004
4005.morehover ul li.active a,
4006.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004007 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004008}
4009
4010.morehover ul li.active img {
4011 margin-right:4px;
4012}
4013
4014
4015
4016
4017/* MARQUEE */
4018.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004019 width:100%;
4020 overflow:hidden;
4021 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004022}
4023.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004024 position:absolute;
4025 top:50%;
4026 left:0px;
4027 margin-top:-36px;
4028 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004029}
4030.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004031 position:absolute;
4032 top:50%;
4033 margin-top:-36px;
4034 z-index:99;
4035 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004036}
4037
4038.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004039 position:absolute;
4040 bottom:20px;
4041 width:100%;
4042 text-align:center;
4043 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004044}
4045.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004046 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004047}
4048.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004049 display: inline-block;
4050 width:12px;
4051 height:12px;
4052 text-indent:-8000px;
4053 list-style:none;
4054 margin: 0 2px;
4055 border-radius:6px;
4056 background-color:#ccc;
4057 cursor:pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004058 -webkit-transition:color .5s ease-in;
4059 -moz-transition:color .5s ease-in;
4060 -o-transition:color .5s ease-in;
4061 transition:color .5s ease-in;
4062}
4063.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004064 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004065}
4066.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004067 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004068}
4069.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004070 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004071}
4072.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004073 display:inline;
4074 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004075}
4076
4077
4078
4079
4080a.download-sdk {
4081 float:right;
4082 margin:-10px 0;
4083 height:30px;
4084 padding-top:4px;
4085 padding-bottom:0px;
4086}
4087
4088#nav-x {
4089 padding-top: 14px;
4090}
4091
Scott Main1d62fa82012-07-17 13:15:12 -07004092#nav-x .wrap {
4093 min-height:34px;
4094}
4095
Scott Maine4d8f1b2012-06-21 18:03:05 -07004096#nav-x .wrap,
4097#searchResults.wrap {
4098 max-width:940px;
4099 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004100}
4101
Scott Maina214d842012-07-16 17:14:40 -07004102#searchResults.wrap #leftSearchControl {
4103 min-height:700px
4104}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004105.nav-x {
4106 margin-left:0;
4107 margin-bottom:0;
4108}
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119/*
4120 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4121 */
4122
4123.jspContainer {
4124 overflow: hidden;
4125 position: relative;
4126}
4127
4128.jspPane {
4129 position: absolute;
4130 overflow: hidden;
Scott Main2d967c62013-03-11 09:21:07 -07004131 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004132}
4133
4134.jspVerticalBar {
4135 position: absolute;
4136 top: 0;
4137 right: 0;
4138 width: 4px;
4139 height: 100%;
4140 background: #f5f5f5;
4141}
4142
4143.jspHorizontalBar {
4144 position: absolute;
4145 bottom: 0;
4146 left: 0;
4147 width: 100%;
4148 height: 4px;
4149 background: #f5f5f5;
4150}
4151
4152.jspVerticalBar *,
4153.jspHorizontalBar * {
4154 margin: 0;
4155 padding: 0;
4156}
4157.jspCap {
4158 display: block;
4159}
4160
4161.jspVerticalBar .jspCap {
4162 height: 4px;
4163}
4164
4165.jspHorizontalBar .jspCap {
4166 width: 0;
4167 height: 100%;
4168}
4169
4170.jspHorizontalBar .jspCap {
4171 float: left;
4172}
4173
4174.jspTrack {
4175 position: relative;
4176}
4177
4178.jspDrag {
4179 background: #bbb;
4180 position: relative;
4181 top: 0;
4182 left: 0;
4183 cursor: pointer;
4184}
4185
4186.jspDrag:hover,
4187.jspDrag:active {
4188 border-color: #09c;
4189 background-color: #4cadcb;
4190 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4191 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4192 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4193 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4194 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4195 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Mainb7f96372013-02-07 16:56:43 -08004196 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004197}
4198
4199.jspHorizontalBar .jspTrack,
4200.jspHorizontalBar .jspDrag {
4201 float: left;
4202 height: 100%;
4203}
4204
4205.jspArrow {
4206 background: #999;
4207 text-indent: -20000px;
4208 display: block;
4209 cursor: pointer;
4210}
4211
4212.jspArrow.jspDisabled {
4213 cursor: default;
4214 background: #ccc;
4215}
4216
4217.jspVerticalBar .jspArrow {
4218 height: 16px;
4219}
4220
4221.jspHorizontalBar .jspArrow {
4222 width: 16px;
4223 float: left;
4224 height: 100%;
4225}
4226
4227.jspVerticalBar .jspArrow:focus {
4228 outline: none;
4229}
4230
4231.jspCorner {
4232 float: left;
4233 height: 100%;
4234}
4235
4236/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4237* html .jspCorner {
4238 margin: 0 -3px 0 0;
4239}
4240/******* end of jscrollpane *********/
4241
4242
4243
4244
4245
4246/************ DEVELOP HOMEPAGE ******************/
4247
4248/* Slideshow */
4249.slideshow-develop {
4250 height: 300px;
4251 width: 940px;
4252 position: relative;
4253 overflow:hidden;
4254}
4255.slideshow-develop .frame {
4256 width: 940px;
4257 height: 300px;
4258}
4259.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004260 max-width:350px;
4261 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004262 margin:20px 0 0 90px;
4263 -webkit-transform: perspective(800px ) rotateY( 35deg );
4264 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4265 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4266 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4267}
4268.slideshow-develop img.play.no-shadow {
4269 box-shadow: none;
4270 -moz-box-shadow: none;
4271 -webkit-box-shadow: none;
4272}
4273.slideshow-develop img.play.no-transform {
4274 -webkit-transform: none;
4275}
4276.slideshow-develop a.slideshow-next {
4277 background: url(../images/arrow-right-develop.png);
4278}
4279.slideshow-develop a.slideshow-prev {
4280 background: url(../images/arrow-left-develop.png);
4281}
4282.slideshow-develop .content-right {
4283 float: left;
4284}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004285.slideshow-develop .content-right h2 {
4286 padding:0;
4287 margin-bottom:10px;
4288 border:none;
4289}
4290.slideshow-develop .item {
4291 height: 300px;
4292 width: 940px;
4293}
4294.slideshow-develop .pagination ul li.active {
4295 background-color: #F80;
4296}
4297.slideshow-develop .pagination ul li.active:hover {
4298 background-color: #F80;
4299}
Scott Main0e585702012-10-22 20:30:22 -07004300.slideshow-develop .item hr {
4301 margin:5px 0 10px;
4302}
4303.slideshow-develop .item p {
4304 margin:10px 0;
4305}
4306.slideshow-develop .item p.title-intro {
4307 position:absolute;
4308 margin:0;
4309}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004310
4311/* Feeds */
4312.feed ul {
4313 margin: 0;
4314}
4315.feed .feed-nav {
4316 height: 25px;
4317 border-bottom: 1px solid #CCC;
4318}
4319.feed .feed-nav li {
4320 list-style: none;
4321 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004322 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004323 margin-right: 25px;
4324 cursor: pointer;
4325}
4326.feed .feed-nav li.active {
4327 color: #000;
4328 border-bottom: 4px solid #F80;
4329}
4330.feed .feed-container {
4331 overflow: hidden;
4332 width: 460px;
4333}
4334.feed .feed-container .feed-frame {
4335 width: 1000px;
4336}
4337.feed .feed-container .feed-frame ul {
4338 float: left;
4339 width:460px;
4340}
4341.feed .feed-container .feed-frame ul ul {
4342 float: none;
4343 margin:10px 0 0 30px;
4344}
4345.feed .feed-container .feed-frame li {
4346 list-style: none;
4347 margin: 20px 0 20px 0;
4348 width: 460px;
4349 height:93px;
4350}
4351.feed .feed-container .feed-frame li.playlist {
4352 height:auto;
4353}
4354.feed .feed-container .feed-frame li.playlist a {
4355 height:93px;
4356 display:block;
4357}
4358.feed .feed-container .feed-frame li.more {
4359 height:20px;
4360 margin:10px 0 5px 5px;
4361}
4362.feed .feed-container .feed-frame li.more a {
4363 height:inherit;
4364}
4365.feed .feed-container .feed-frame li.playlist-video {
4366 list-style: none;
4367 margin: 0;
4368 width: 460px;
4369 height:55px;
4370 font-size:12px;
4371}
4372.feed .feed-container .feed-frame li.playlist-video a {
4373 height:45px;
4374 padding:5px;
4375}
4376.feed .feed-container .feed-frame li.playlist-video h5 {
4377 font-size:12px;
4378 line-height:13px;
4379 margin:0;
4380}
4381.feed .feed-container .feed-frame li.playlist-video p {
4382 margin:5px 0 0;
4383 line-height:15px;
4384}
4385.feed-container .feed-frame div.feed-image {
4386 float: left;
4387 border: 1px solid #999;
4388 margin:0 20px 0 0;
4389 width:122px;
4390 height:92px;
4391 background:url('../images/blog-default.png') no-repeat 0 0;
4392 background-size:180px;
4393}
4394#jd-content .feed .feed-container .feed-frame li img {
4395 float: left;
4396 border: 1px solid #999;
4397 margin:0 20px 0 0;
4398 width:122px;
4399 height:92px;
4400}
4401#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4402 width:inherit;
4403 height:inherit;
4404}
4405
4406.feed .feed-container .feed-frame li a,
4407.feed .feed-container .feed-frame li a:active {
4408 color:#555 !important;
4409}
4410
4411.feed .feed-container .feed-frame li a:hover,
4412.feed .feed-container .feed-frame li a:hover * {
4413 color:#7AA1B0 !important;
4414}
4415
4416/* Video player */
4417#player-wrapper {
4418 display:none;
4419 margin: -1px auto 0;
4420 position: relative;
4421 width: 940px;
4422 height: 0px;
4423}
4424#player-frame {
4425 background: #EFEFEF;
4426 border: 1px solid #CCC;
4427 padding: 0px 207px;
4428 z-index: 10; /* stay above marque, but below search suggestions */
4429 width: 525px;
4430 height: 330px;
4431 position: relative;
4432}
4433
4434
4435
4436/************ DISTRIBUTE HOMEPAGE ***************/
4437
4438.marquee {
4439 width: 760px;
4440}
4441.marquee .main-img {
4442 float: left;
4443 margin-top: 20px;
4444 width: 490px;
4445}
4446.marquee .copy {
4447 width: 270px;
4448 float: left;
4449 margin-top: 30px;
4450}
4451.distribute-features {
4452 margin: 0;
4453}
4454.distribute-features ul {
4455 margin: 0;
4456}
4457.distribute-features ul li {
4458 list-style: none;
4459 float: left;
4460 border-top: 1px solid #9C0;
4461 width: 220px;
4462 margin-right: 50px;
4463}
4464.distribute-features ul li.last {
4465 margin-right: 0px;
4466}
4467
Dirk Doughertye5862e82013-05-15 02:19:54 -07004468.distribute-features .distribute-link li a {
4469 color:red !important;
4470}
4471
4472.distribute-features .distribute-link li a,
4473.distribute-features .distribute-link li a:active {
4474 color:#555 !important;
4475}
4476
4477.distribute-features .distribute-link li a:hover,
4478.distribute-features .distribute-link li a:hover * {
4479 color:#7AA1B0 !important;
4480}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004481
Scott Main8fa53512012-11-30 20:16:42 -08004482
Scott Maine4d8f1b2012-06-21 18:03:05 -07004483/************ DEVELOP TOPIC CONTAINERS ************/
4484
4485.landing-banner,
4486.landing-docs {
4487 margin:20px 0 0;
4488}
Scott Main8fa53512012-11-30 20:16:42 -08004489.landing-banner div:first-child,
4490.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004491.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004492 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004493 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004494}
Scott Main8fa53512012-11-30 20:16:42 -08004495.landing-banner div:last-child,
4496.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004497.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004498 margin-right:0;
4499}
4500
4501.landing-banner h1 {
4502 margin-top:0;
4503}
Scott Main0e71cee2012-08-07 13:59:43 -07004504.landing-docs {
4505 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004506 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004507}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004508.landing-docs h3 {
4509 font-size:14px;
4510 line-height:21px;
4511 color:#555;
4512 text-transform:uppercase;
4513 border-bottom:1px solid #CCC;
4514 margin:0 0 20px;
4515}
4516.landing-docs a {
4517 color:#333 !important;
4518}
Robert Ly40e90992012-11-28 17:46:17 -08004519
Scott Maine4d8f1b2012-06-21 18:03:05 -07004520.landing-docs a:hover,
4521.landing-docs a:hover * {
4522 color:#7AA1B0 !important
4523}
4524
Robert Ly40e90992012-11-28 17:46:17 -08004525.landing-docs .normal-links a {
4526 color:#258aaf !important;
4527}
4528
Scott Maine4d8f1b2012-06-21 18:03:05 -07004529.plusone {
4530 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004531}
Scott Main9edfa6d2012-08-14 15:04:40 -07004532
4533
4534
4535/************* HOME/LANDING PAGE *****************/
4536
4537.slideshow-home {
4538 height: 500px;
4539 width: 940px;
4540 border-bottom: 1px solid #CCC;
4541 position: relative;
4542 margin: 0;
4543}
4544.slideshow-home .frame {
4545 width: 940px;
4546 height: 500px;
4547}
4548.slideshow-home .content-left {
4549 float: left;
4550 text-align: center;
4551 vertical-align: center;
4552 margin: 0 0 0 35px;
4553}
4554.slideshow-home .content-right {
4555 margin: 80px 0 0 0;
4556}
4557.slideshow-home .content-right p {
4558 margin-bottom: 10px;
4559}
4560.slideshow-home .content-right p:last-child {
4561 margin-top: 15px;
4562}
4563.slideshow-home .content-right h1 {
4564 padding:0;
4565}
4566.slideshow-home .item {
4567 height: 500px;
4568 width: 940px;
4569}
4570.home-sections {
4571 padding: 30px 20px 20px;
4572 margin: 20px 0;
4573 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4574}
4575.home-sections ul {
4576 margin: 0;
4577}
4578.home-sections ul li {
4579 float: left;
4580 display: block;
4581 list-style: none;
4582 width: 170px;
4583 height: 35px;
4584 border: 1px solid #ccc;
4585 background: white;
4586 margin-right: 10px;
4587 border-radius: 1px;
4588 -webkit-border-radius: 1px;
4589 -moz-border-radius: 1px;
4590 box-shadow: 1px 1px 5px #EEE;
4591 -webkit-box-shadow: 1px 1px 5px #EEE;
4592 -moz-box-shadow: 1px 1px 5px #EEE;
4593 background: white;
4594}
4595.home-sections ul li:hover {
4596 background: #F9F9F9;
4597 border: 1px solid #CCC;
4598}
4599.home-sections ul li a,
4600.home-sections ul li a:hover {
4601 font-weight: bold;
4602 margin-top: 8px;
4603 line-height: 18px;
4604 float: left;
4605 width: 100%;
4606 text-align: center;
4607 color: #09c !important;
4608}
4609.home-sections ul li a {
4610 font-weight: bold;
4611 margin-top: 8px;
4612 line-height: 18px;
4613 float: left;
4614 width:100%;
4615 text-align:center;
4616}
4617.home-sections ul li img {
4618 float: left;
4619 margin: -8px 0 0 10px;
4620}
4621.home-sections ul li.last {
4622 margin-right: 0px;
4623}
Scott Mainf5089842012-08-14 16:31:07 -07004624.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004625 margin-top: -40px;
4626}