blob: 9ab45b3f63ac0865438fca546e1afc0e66b27bcb [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
Scott Main27403b82013-07-10 16:36:05 -0700847.framed-nexus4-port-216 {
848 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
849scroll top left;
850 background-size:240px 465px;
851 padding: 52px 12px 52px 12px;
852 overflow: hidden; }
853 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
854 .framed-nexus4-port-216 img {
855 width: 216px;
856 height: 360px; }
857
858
Scott Maine4d8f1b2012-06-21 18:03:05 -0700859/* landing page disclosures */
860.landing-page-link {
861 text-decoration: none;
862 font-weight: 500;
863 color: #333333; }
864 .landing-page-link:after {
865 content: '';
866 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
867 width: 10px;
868 height: 10px;
869 display: inline-block;
870 margin-left: 5px; }
871
872/* tooltips */
873.tooltip-box {
874 position: absolute;
875 background-color: rgba(0, 0, 0, 0.9);
876 border-radius: 2px;
877 font-size: 14px;
878 line-height: 20px;
879 color: #fff;
880 padding: 6px 10px;
881 max-width: 250px;
882 z-index: 10000; }
883 .tooltip-box.below:after {
884 position: absolute;
885 content: '';
886 line-height: 0;
887 display: block;
888 top: -10px;
889 left: 5px;
890 border: 5px solid transparent;
891 border-bottom-color: rgba(0, 0, 0, 0.9); }
892
893/* video note */
894.video-instructions {
895 margin-top: 10px;
896 margin-bottom: 10px; }
897 .video-instructions:before {
898 content: '';
899 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
900 display: inline-block;
901 width: 12px;
902 height: 12px;
903 margin-right: 8px; }
904 .video-instructions:after {
905 content: 'Click device screen to replay movie.'; }
906
907/* download buttons */
908.download-button {
909 display: block;
910 margin-bottom: 5px;
911 text-decoration: none;
912 background-color: #33b5e5;
913 color: #fff !important;
914 font-weight: 500;
915 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
916 padding: 6px 12px;
917 border-radius: 2px; }
918 .download-button:hover, .download-button:focus {
919 background-color: #0099cc;
920 color: #fff !important; }
921 .download-button:active {
922 background-color: #006699; }
923
924/* UI tables and other things found in Writing style and Settings pattern */
925.ui-table {
926 width: 100%;
927 background-color: #282828;
928 color: #fff;
929 border-radius: 2px;
930 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
931 border-collapse: separate; }
932 .ui-table th,
933 .ui-table td {
934 padding: 5px 10px;
935 background-color: inherit;
936 border:0;}
937 .ui-table thead th {
938 font-weight: bold; }
939 .ui-table tfoot td {
940 border-top: 1px solid #494949;
941 border-right: 1px solid #494949;
942 text-align: center; }
943 .ui-table tfoot td:last-child {
944 border-right: 0; }
945
946.layout-with-list-item-margins {
947 margin-left: 30px !important; }
948
949.emulate-content-left-padding {
950 margin-left: 10px; }
951
952.do-dont-label {
953 margin-bottom: 10px;
954 padding-left: 20px;
955 background: transparent none no-repeat scroll 0px 3px; }
956 .do-dont-label.bad {
957 background-image: url(../images/styles/ico_wrong.png); }
958 .do-dont-label.good {
959 background-image: url(../images/styles/ico_good.png); }
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979/***** PREVIOUSLY style.css ******************/
980
981
982
983
984
985@media screen, projection, print {
986[dir='rtl'] {
987 direction: rtl;
988}
989html {
990 line-height: 20px;
991}
992pre, table, input, textarea, code {
993 font-size: 1em;
994}
995address, abbr, cite {
996 font-style: normal;
997}
998[dir='rtl'] th {
999 text-align: right;
1000}
1001html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1002html[lang^=zh] blockquote, html[lang^=zh] q {
1003 font-style: normal;
1004}
1005q {
1006 font-style: italic;
1007}
1008fieldset, iframe, img {
1009 border: 0;
1010}
1011img {
Scott Mainb7f96372013-02-07 16:56:43 -08001012 -ms-interpolation-mode: bicubic;
1013 vertical-align: middle;
1014 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001015}
1016q {
1017 quotes: none;
1018}
1019sup, sub {
1020 font-size: 11px;
1021 line-height: 0;
1022}
1023}
1024
1025@media screen, projection {
1026
1027table, fieldset {
1028 margin: 0;
1029}
1030h1 {
1031 color:#333;
1032 font-size: 22px;
1033 margin: 20px 0 20px;
1034 padding:0 0 10px;
1035}
1036h1, h2 {
1037 line-height: 32px;
1038}
1039h1.short {
1040 margin-right:320px;
1041}
1042h1.short {
1043 margin-right:320px;
1044}
1045h1.super {
Scott Mainb7f96372013-02-07 16:56:43 -08001046 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001047}
1048h2 {
1049 color:#333;
1050 font-size: 20px;
1051 margin: 20px 0 20px;
1052 padding:0;
1053}
1054h3 {
1055 color:#333;
1056 font-size: 18px;
1057}
1058h3, h4 {
1059 color:#333;
1060 line-height: 20px;
1061 margin: 10px 0;
1062}
1063h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001064 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001065}
1066h5 {
Scott Mainb7f96372013-02-07 16:56:43 -08001067 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001068}
1069h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001070 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001071}
1072h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001073 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001074}
1075hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001076 height: 1px;
1077 margin: 5px 0 20px;
1078 border: 0;
1079 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001080}
1081p, pre, table, form {
1082 margin: 0 0 15px;
1083}
1084small {
Scott Mainb7f96372013-02-07 16:56:43 -08001085 font-size: 11.5px;
1086 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001087}
1088ul, ol {
1089 margin: 0 0 15px 18px;
1090 padding: 0;
1091}
1092[dir='rtl'] ul, [dir='rtl'] ol {
1093 margin: 10px 30px 10px 10px;
1094}
1095ul ul, ul ol, ol ul, ol ol {
1096 margin-bottom: 0;
1097 margin-top: 0;
1098}
1099li {
Scott Main52948fc2012-09-18 11:27:59 -07001100 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001101}
1102dd {
1103 margin:0 0 10px 30px;
1104}
Scott Maina07be8e2013-03-06 12:12:21 -08001105dd p,
1106dd pre,
1107dd ul,
1108dd ol,
1109dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001110 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001111}
Scott Maindb3678b2012-10-23 14:13:41 -07001112li p,
1113li pre,
1114li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001115li ol,
1116li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001117 margin-top:5px;
1118 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001119}
1120pre strong, pre b, a strong, a b, a code {
1121 color: inherit;
1122}
1123pre, code {
1124 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001125 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001126}
1127code {
1128 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001129 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001130}
1131
1132legend {
1133 display: none;
1134}
1135a:link, a:visited {
1136 color: #258aaf;
1137 text-decoration: none;
1138}
1139a:focus, a:hover, a:active {
1140 color: #33B5E5;
1141 text-decoration: none;
1142}
1143strong, b {
1144 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001145 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001146}
1147table {
1148 border-collapse: collapse;
1149 border-spacing: 0;
1150 border:0;
1151 margin: .5em 1em 1em 0;
1152 width:100%; /* consistent table widths; within IE's quirks */
1153 background-color:#f7f7f7;
1154}
1155th, td {
1156 padding: 4px 12px;
1157 vertical-align: top;
1158 text-align: left;
1159}
1160td {
1161 background-color:inherit;
1162 border:solid 1px #DDD;
1163}
Scott Maineb410352013-01-14 19:03:40 -08001164td *:last-child {
1165 margin-bottom:0;
1166}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001167th {
1168 background-color: #999;
1169 color: #fff;
1170 border:solid 1px #DDD;
1171 font-weight: normal;
1172}
1173tr:first-of-type th:first-of-type:empty {
1174 visibility: hidden;
1175}
1176/* --------------------------------------------------------------------------
1177Footer
1178*/
1179.line {
1180 clear: both;
1181 background: #acbc00;
1182 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1183 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1184color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1185 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1186 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1187 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1188 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1189 height: 2px;
1190 margin-top: 150px;
1191 position: relative;
1192 z-index: 11;
1193}
1194#footer {
1195 font-size:11px;
1196 clear: both;
1197 color: #999;
1198 padding: 15px 0;
1199 margin-top:10px;
1200 width:auto;
1201}
1202#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001203 list-style: none;
1204 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001205}
1206#footer-local li {
1207 display: inline;
1208}
1209#footer-local li+li:before {
1210 content: '|';
1211 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001212 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001213}
1214#footer-global {
1215 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001216 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001217}
1218#footer-global {
1219 border-top: 1px solid #ebebeb;
1220 font-size: 11.5px;
1221 line-height: 1.8;
1222 list-style: none;
1223}
1224#footer-global ul {
1225 margin: 0;
1226}
1227#footer-global li {
1228 display: inline;
1229 font-weight: bold;
1230}
1231#footer-global li+li:before {
1232 content: '¬?';
1233 padding: 0 3px;
1234}
1235* html #footer-global li {
1236 margin: 0 13px 0 0;
1237}
1238* [dir='rtl'] #footer-global li {
1239 margin: 0 0 0 13px;
1240}
1241*+html #footer-global li {
1242 margin: 0 13px 0 0;
1243}
1244*+[dir='rtl'] #footer-global li {
1245 margin: 0 0 0 13px;
1246}
1247#footer-global li a {
1248 font-weight: normal;
1249}
1250.locales {
1251 margin: 10px 0 0 0px;
1252}
1253[dir='rtl'] .locales {
1254 background-position: right center;
1255 float: left;
1256 padding: 0 24px 0 0;
1257}
1258.locales form {
Scott Mainb7f96372013-02-07 16:56:43 -08001259 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001260}
1261.locales select, .sites select {
1262 line-height: 3.08;
1263 margin: 0px 0;
1264 border: solid 1px #EBEBEB;
1265 -webkit-appearance: none;
1266 background: white url('../images/arrows-up-down.png') right center no-repeat;
1267 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001268 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001269 line-height: normal;
1270 padding: 5px;
1271 width: 230px;
1272}
1273}
1274
1275/* =============================================================================
1276 Print Only
1277 ========================================================================== */
1278@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001279 /* configure printed page */
1280 @page {
1281 margin: 0.75in 1in;
1282 widows: 4;
1283 orphans: 4;
1284 }
1285
1286 /* reset spacing metrics */
1287 html, body, .wrap {
1288 margin: 0 !important;
1289 padding: 0 !important;
1290 width: auto !important;
1291 }
1292
1293 /* leave enough space on the left for bullets */
1294 body {
1295 padding-left: 20px !important;
1296 }
1297 #doc-col {
1298 margin-left: 0;
1299 }
1300
1301 /* hide a bunch of non-content elements */
1302 #header, #footer, #nav-x, #side-nav,
1303 .training-nav-top, .training-nav-bottom,
1304 #doc-col .content-footer,
1305 .nav-x, .nav-y,
1306 .paging-links,
1307 a.totop {
1308 display: none !important;
1309 }
1310
1311 /* remove extra space above page titles */
1312 #doc-col .content-header {
1313 margin-top: 0;
1314 }
1315
1316 /* bump up spacing above subheadings */
1317 h2 {
1318 margin-top: 40px !important;
1319 }
1320
1321 /* print link URLs where possible and give links default text color */
1322 p a:after {
1323 content: " (" attr(href) ")";
1324 font-size: 80%;
1325 }
1326 p a {
1327 word-wrap: break-word;
1328 }
1329 a {
1330 color: inherit;
1331 }
1332
1333 /* syntax highlighting rules */
1334 .str { color: #060; }
1335 .kwd { color: #006; font-weight: bold; }
1336 .com { color: #600; font-style: italic; }
1337 .typ { color: #404; font-weight: bold; }
1338 .lit { color: #044; }
1339 .pun { color: #440; }
1340 .pln { color: #000; }
1341 .tag { color: #006; font-weight: bold; }
1342 .atn { color: #404; }
1343 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001344}
1345
1346/* =============================================================================
1347 Columns
1348 ========================================================================== */
1349
1350@media screen, projection, print {
1351.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001352 padding: 2.5em 0;
1353 border-top: solid 1px #ddd;
1354 border-bottom: solid 1px #ddd;
1355 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001356}
1357.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001358 margin: 0 auto;
1359 width: 940px;
1360 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001361}
1362.cols {
1363 height: 1%;
1364 margin: 0 -1.533742331288343558282%;
1365 width: 103.06748466257669%}
1366*+html .cols {
1367 margin-bottom: 20px;
1368}
1369.cols:after {
1370 clear: both;
1371 content: ' ';
1372 display: block;
1373 height: 0;
1374 visibility: hidden;
1375}
1376.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1377.col-13, .col-14, .col-15, .col-16 {
1378 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001379 float: left;
1380 margin-left: 10px;
1381 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001382}
1383/*
1384* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1385.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1386 margin: 0;
1387 padding: 0 1.4% 20px;
1388}
1389[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1390[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1391[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1392 float: right;
1393}
1394*/
1395.col-1 { width: 40px }
1396.col-2 { width: 100px }
1397.col-3 { width: 160px }
1398.col-4 { width: 220px }
1399.col-5 { width: 280px }
1400.col-6 { width: 340px }
1401.col-7 { width: 400px }
1402.col-8 { width: 460px }
1403.col-9 { width: 520px }
1404.col-10 { width: 580px }
1405.col-11 { width: 640px }
1406.col-12 { width: 700px }
1407.col-13 { width: 760px }
1408.col-14 { width: 820px }
1409.col-15 { width: 880px }
1410.col-16 { width: 940px }
1411}
1412
1413.col-right {
1414 margin-right:0px;
1415}
1416
1417@media screen and (max-width:772px) {
1418.col-5, .col-6, .col-7 {
1419 clear: both;
1420 width: 97.0238096%}
1421}
1422
1423/* =============================================================================
1424 Layout
1425 ========================================================================== */
1426@media screen, projection, print {
1427
1428/* --------------------------------------------------------------------------
1429Header, Login, Nav-X, Search
1430*/
1431#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001432 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001433}
1434#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001435 content: "";
1436 display: table;
1437 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001438}
1439.logo, .nav-x {
1440 float: left;
1441}
1442.nav-x {
1443 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001444 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001445}
1446.nav-x a {
1447 color: #333;
1448 font-size: 16px;
1449}
1450.design a.selected {
1451 color: #33b5e5;
1452}
1453.develop a.selected {
1454 color: #F80;
1455}
1456.distribute a.selected {
1457 color: #9C0;
1458}
1459
1460
1461
1462.nav-x li {
1463 display: inline;
1464 margin-right: 45px;
1465}
1466.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001467 float: right;
1468 position: relative;
1469 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001470}
1471.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001472 position: absolute;
1473 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001474}
1475.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001476 width: 220px;
1477 height: 1px;
1478 top: 24px;
1479 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001480}
Scott Mainb7f96372013-02-07 16:56:43 -08001481.search .left, .search .right {
1482 height: 5px;
1483 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001484}
Scott Mainb7f96372013-02-07 16:56:43 -08001485.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001486.search .right { top: 19px; right: 0 }
1487.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001488 float: left;
1489 margin-top: 2px;
1490 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001491}
1492.search .close,
1493#player-frame .close {
1494 position: absolute;
1495 right: 8px;
1496 bottom: 4px;
1497 width: 16px;
1498 height: 16px;
1499 margin: 0;
1500 text-indent: -1000em;
1501 background: url(../images/close.png) no-repeat 0 0;
1502 z-index:9999;
1503}
1504.search .close:hover, .search .close:focus,
1505#player-frame .close:hover, #player-frame .close:focus {
1506 background-position: -16px 0;
1507 cursor:pointer;
1508}
1509#player-frame .close {
1510 top: 6px;
1511}
1512.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001513 color: #999;
1514 font-size: 1em;
1515 width: inherit;
1516 border: none;
1517 margin: 0;
1518 padding:0 0 0 6px;
1519 z-index: 1500;
1520 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001521}
1522.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001523 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001524}
1525.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001526 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001527}
1528.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001529 color: #222;
1530 font-weight: bold;
1531 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001532}
1533/* Search Dropdown */
1534.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001535 padding: 15px;
1536 width: 192px;
1537 border: solid 1px #c5c5c5;
1538 background: #fff;
1539 position: absolute;
1540 top: 35px;
1541 left: 0;
1542 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1543 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1544 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001545}
1546.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001547 list-style-type: none;
1548 margin: 0;
1549 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001550}
1551.search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001552 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001553}
1554.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001555 float: left;
1556 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001557}
1558.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001559 color: #222;
1560 margin: 0;
1561 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001562}
1563.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001564 color: #999;
1565 font-size: 11.5px;
1566 line-height: normal;
1567 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001568}
1569.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001570 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001571}
1572/* --------------------------------------------------------------------------
1573Buttons
1574*/
1575.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001576 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001577 -webkit-border-radius: 2px;
1578 -moz-border-radius: 2px;
1579 border-radius: 2px;
1580 cursor: pointer;
1581}
1582.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001583 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001584 background-color: #09c;
1585 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1586 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1587 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1588 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1589 background-image: -o-linear-gradient(top, #2faddb, #09c);
1590 background-image: linear-gradient(top, #2faddb, #09c);
1591 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1592 border: 1px solid #3990ab;
1593 color: #fff;
1594}
1595.button-secondary, a.button-secondary {
1596 background-color: #f3f3f3;
1597 border: 1px solid #dcdcdc;
1598 color: #444;
1599}
1600a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001601 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001602 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001603 min-width: 54px;
1604 outline: 0;
1605 padding: 8px 15px;
1606 text-align: center;
1607}
1608.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001609 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001610 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001611 min-width: 54px;
1612 outline: 0;
1613 padding: 0 15px;
1614 text-align: center;
1615}
1616.button:hover, a.button:hover {
1617 border-color: #09c;
1618 background-color: #4cadcb;
1619 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1620 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1621 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1622 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1623 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1624 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1625 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1626EndColorStr='#4cadcb',GradientType=0);
1627 color: #fff !important;
1628}
1629.button:active, a.button:active {
1630 background-color: #1e799a;
1631 background-image: none;
1632 border-color: #30b7e6;
1633}
Scott Maindb3678b2012-10-23 14:13:41 -07001634a.button.big.subtitle {
1635 line-height:18px;
1636}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001637.button-secondary:hover, a.button-secondary:hover {
1638 border-color: #dbdbdb;
1639 background-color: #f3f3f3;
1640 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1641 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1642 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1643 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1644 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1645 background-image: linear-gradient(top, #f9f9f9, #ececec);
1646 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1647EndColorStr='#ececec');
1648 color: #33B5E5 !important;
1649}
1650.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001651 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001652 background: #ebebeb; /* Old browsers */
1653 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1654 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001655url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1656Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1657eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1658CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1659eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1660YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1661CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1662CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1663CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1664CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1665R3JhZGllbnQ+
1666CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1667Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001668 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001669#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001670 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001671color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1672/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001673 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700167490%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001675 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001676100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001677 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001678100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001679 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001680100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001681 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001682endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001683 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1684 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1685 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1686 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001687}
1688.button.big {
1689 font-size:20px;
1690 display:inline-block;
1691}
Scott Maindb3678b2012-10-23 14:13:41 -07001692.button.big span.small {
1693 font-size:14px;
1694}
1695.button-caption {
1696 margin-top:10px;
1697 font-size:12px;
1698 font-style:italic;
1699}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001700
1701.button.disabled,
1702.button.disabled:hover,
1703.button.disabled:active {
1704 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001705 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001706 border-color:#999;
1707 cursor:default;
1708}
1709
1710.training-nav-top a.button-secondary,
1711.training-nav-bottom a.button-secondary {
1712 display:block;
1713 float:left;
1714 margin:0;
1715 width:130px;
1716 text-transform:uppercase;
1717 font-weight:bold;
1718
1719 background-color: #f3f3f3;
1720 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1721 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1722 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1723 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1724 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1725 background-image: linear-gradient(top, #f9f9f9, #ececec);
1726 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1727EndColorStr='#ececec');
1728 color: #33B5E5;
1729}
1730
1731.training-nav-top a.button-secondary:hover,
1732.training-nav-bottom a.button-secondary:hover {
1733 background-color: #09c;
1734 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1735 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1736 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1737 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1738 background-image: -o-linear-gradient(top, #2faddb, #09c);
1739 background-image: linear-gradient(top, #2faddb, #09c);
1740 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1741 border: 1px solid #3990ab;
1742 color: #fff !important;
1743}
1744
1745.training-nav-top a.button-secondary.last,
1746.training-nav-bottom a.button-secondary.last {
1747 border-left:0;
1748}
1749
1750.training-nav-top a.button-secondary.double-size,
1751.training-nav-bottom a.button-secondary.double-size {
1752 width:291px;
1753}
1754
1755.training-nav-top,
1756.training-nav-bottom {
1757 float:right;
1758 margin:0 0 0 20px;
1759}
1760
1761.training-nav-bottom {
1762 padding:0 0 20px;
1763}
1764
1765#tb-wrapper,
1766#qv-wrapper {
1767 float:right;
1768 clear:right;
Scott Maincef39242013-06-19 20:25:34 -07001769 margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maine4d8f1b2012-06-21 18:03:05 -07001770 padding:0 0 20px;
1771}
1772
Scott Maincef39242013-06-19 20:25:34 -07001773#tb-wrapper {
1774 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1775}
1776
Scott Maine4d8f1b2012-06-21 18:03:05 -07001777#tb,
1778#qv {
1779 font-size:13px;
1780 line-height:18px;
1781 width:238px;
1782 border:1px solid #ccc;
1783 float:right;
1784}
1785
1786#tb {
1787 width:278px;
1788}
1789
1790#tb h2,
1791#qv h2 {
1792 margin:10px 15px;
1793 padding:0;
1794 text-transform:uppercase;
1795 border-bottom:1px solid gainsboro;
1796}
1797
1798#tb *,
1799#qv * {
1800 font-size:inherit;
1801}
1802
Scott Main8c0f5b32013-07-08 15:12:02 -07001803#tb .download-box,
1804#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001805 padding:0 0 0 15px;
1806}
1807
Scott Main8c0f5b32013-07-08 15:12:02 -07001808#tb .download-box .filename,
1809#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001810 font-size:11px;
1811 margin:4px 4px 10px;
1812 color:#666;
1813}
1814
1815
1816/* Dev guide quicknav */
1817
1818.sidebox-wrapper {
1819 float:right;
1820 clear:right;
1821 margin:0 0 0 20px;
1822 padding:0 0 20px;
1823}
1824
1825.sidebox {
1826 width:226px;
1827 font-size:13px;
1828 line-height:18px;
1829 border-left:4px solid #99CC00;
1830 float:right;
1831 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001832 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001833}
1834
1835.sidebox h2,
1836.sidebox h3,
1837.sidebox h4,
1838.sidebox h5 {
1839 font-weight:bold;
1840 margin:0 0 10px;
1841}
1842
1843.sidebox * {
1844 font-size:inherit;
1845}
1846
1847#tb ol,
1848#tb ul,
1849#qv ul {
1850 margin:0 15px 10px 35px;
1851}
1852
1853#qv ol {
1854 list-style:none;
1855 margin:0 15px 15px;
1856 font-size:inherit;
1857 line-height:inherit;
1858}
1859
1860#tb ol ol,
1861#tb ul ul,
1862#qv ol ol,
1863#qv ul ul,
1864.sidebox ol ol,
1865.sidebox ul ul {
1866 margin-bottom:0;
1867}
1868
1869#qv ol ol {
1870 margin:3px 0 3px 15px;
1871}
1872
1873.sidebox p,
1874#qv p,
1875#tb p {
1876 margin: 0 0 10px;
1877}
1878
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001879/* related resources blocks in checklists */
1880
1881.rel-resources {
1882 margin:10px 0px;
1883 border:1px solid #ccc;
1884 background-color:rgba(0, 0, 0, 0.027451);
1885 border:1px solid #ccc;
1886 font-size:13px;
1887 color:#6f6f6f;
1888}
1889
1890.rel-resources ul {
1891padding: .5em 1em 0 1em;
1892}
1893
1894.rel-resources a {
1895font-weight:500;
1896}
1897
1898.rel-resources h3 {
1899 margin:4px 15px 0px 15px;
1900 font-size:13px;
1901 font-weight:600;
1902 text-transform:uppercase;
1903}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001904
1905/* --------------------------------------------------------------------------
1906Form
1907*/
1908.article form {
1909 margin: 0 0 20px;
1910}
1911.article form .form-required {
1912 color: #dd4b39;
1913}
1914.article form fieldset {
1915 margin: 0 0 20px;
1916 padding: 0;
1917}
1918.article form legend {
1919 display: block;
1920 line-height: 1.5;
1921 margin: 0;
1922 padding: 0;
1923}
1924/*
1925.article form ol, .article form ul {
1926 margin: 0 0 0 1em;
1927 padding: 0 0 0 1em;
1928}
1929[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1930 margin: 0 1em 0 0;
1931 padding: 0 1em 0 0;
1932}
1933.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1934ul ul {
1935 list-style: none;
1936 margin: 0;
1937 padding: 0;
1938}
1939.article form li {
1940 margin: 0 0 20px;
1941}
1942.article form li li {
1943 margin: 0 0 5px;
1944}
1945*/
1946.article form label {
1947 display: block;
1948 margin: 0 0 5px;
1949 padding: 0;
1950}
1951.article form input[type='text'], .article form select, .article form textarea, .article form
1952.checkbox-group, .article form .radio-group {
1953 margin-bottom: 15px;
1954}
1955.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001956 width: 13px;
1957 height: 13px;
1958 background: #fff;
1959 border: solid 1px #c6c6c6;
1960 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001961}
1962.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08001963 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07001964}
1965.article form select {
1966 border: solid 1px #ebebeb;
1967 border-top-color: #ddd;
1968 -webkit-appearance: none;
1969 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1970 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001971 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001972 line-height: normal;
1973 padding: 5px;
1974 width: 130px;
1975}
1976
1977.article form .browse .browse-msg {
Scott Mainb7f96372013-02-07 16:56:43 -08001978 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001979}
1980.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001981 height: auto;
1982 line-height: 25px;
1983 font-size: 11px;
1984 padding: 0 8px;
1985 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001986}
1987.article form input[type='text'], .article form textarea {
1988 border: 1px solid #ebebeb;
1989 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001990 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001991 line-height: normal;
1992 padding: 6px 10px;
Scott Mainb7f96372013-02-07 16:56:43 -08001993 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001994}
1995.article form textarea {
1996 height: 150px;
1997}
1998.article form input[type='text']:focus, .article form textarea:focus {
1999 border-color: #33B5E5;
2000 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2001 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2002 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2003 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2004 outline: 0;
2005}
2006.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2007 color: #999;
2008}
2009.article form input[type='text'][disabled], .article form textarea[disabled] {
2010 background-color: #ebebeb;
2011}
2012form .form-error input[type='text'], form .form-error textarea {
2013 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002014 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002015}
2016.aside {
2017 -moz-border-radius: 2px;
2018 -webkit-border-radius: 2px;
2019 border-radius: 2px;
2020 margin: 10px 0;
2021 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002022 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002023 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002024 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002025}
2026/*
2027.aside, .notification, .promo {
2028 -moz-border-radius: 2px;
2029 -webkit-border-radius: 2px;
2030 border-radius: 2px;
2031 margin: 10px 0;
2032 padding: 10px;
2033 position: relative;
2034}
2035.aside>:first-child, .notification>:first-child, .promo>:first-child {
2036 margin-top: 0;
2037}
2038.aside>:last-child, .notification>:last-child, .promo>:last-child {
2039 margin-bottom: 0;
2040}
2041.aside {
2042 background: #f9f9f9;
2043}
2044.notification {
2045 background: #fffbe4;
2046 border-color: #f8f6e6;
2047}
2048.promo {
2049 background: #f6f9ff;
2050 border-color: #eff2f9;
2051}
2052*/
Scott Maindb3678b2012-10-23 14:13:41 -07002053
2054/* SDK TOS styles */
2055
2056div.sdk-terms {
2057 white-space: pre-wrap;
2058 word-wrap: break-word;
2059 font-family: inherit;
2060 font-size: inherit;
2061 padding: 10px;
2062 height: 370px;
2063 width: 738px;
2064 border: 1px solid #444;
2065 background: transparent;
2066 overflow:auto;
2067 margin:0 0 10px;
2068}
2069
2070div.sdk-terms.fullsize {
2071 padding: 0;
2072 height: auto;
2073 width: auto;
2074 border:none;
2075}
2076
2077div.sdk-terms h3,
2078div.sdk-terms h2 {
2079 margin:0;
2080}
2081
2082div#sdk-terms-form {
2083 padding:0 0 0 10px;
2084}
2085
Scott Main11ac05b2012-11-15 14:57:44 -08002086div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002087 display:inline;
2088 margin:4px 4px 4px 0;
2089}
2090
2091
Scott Maine4d8f1b2012-06-21 18:03:05 -07002092/* --------------------------------------------------------------------------
2093Code Style
2094*/
2095pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002096 margin:0 0 1em 0;
2097 padding: 1em;
2098 overflow: auto;
2099 border: solid 1px #ddd;
Scott Mainb7f96372013-02-07 16:56:43 -08002100 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002101}
2102.str { color: #080; }
2103.kwd { color: #008; }
2104.com { color: #800; }
2105.typ { color: #606; }
2106.lit { color: #066; }
2107.pun { color: #660; }
2108.pln { color: #000; }
2109.tag { color: #008; }
2110.atn { color: #828; }
2111.atv { color: #080; }
2112.dec { color: #606; }
2113
2114/* --------------------------------------------------------------------------
2115Three-Pane
2116*/
2117/* Package Nav & Classes Nav */
2118.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002119 position: relative;
2120 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002121}
2122#packages-nav .js-pane,
2123#classes-nav .js-pane {
2124 overflow:visible;
2125}
2126#packages-nav {
2127 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002128 max-height: inherit;
2129 overflow: hidden;
2130 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002131}
2132#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002133 overflow: hidden;
2134 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002135}
2136#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002137 list-style-type: none;
2138 margin: 10px 0 20px 0;
2139 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002140}
2141#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002142 font-weight: bold;
2143 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002144}
2145#packages-nav li,
2146#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002147 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002148}
2149#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2150#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002151 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002152}
2153#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2154#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2155#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002156 color: #222;
2157 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002158}
2159#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2160#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002161 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002162}
2163#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2164a:visited,
2165#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2166a:visited,
2167#nav-tree li div.selected {
2168 font-weight: 500;
2169 color: #0099cc;
2170 background-color:#fff; }
2171 #packages-nav li.selected ul li a,
2172 #classes-nav li.selected ul li a {
2173 /* don't highlight child items */
2174 color: #555555; }
2175#nav-tree li div.selected a {
2176 font-weight: 500;
2177 color: #0099cc;
2178}
2179#nav-swap {
2180 height:30px;
2181 border-top:1px solid #ccc;
2182}
2183#nav-swap a {
2184 display:inline-block;
2185 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002186 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002187 font-size: 12px;
2188 padding: 5px 0 5px 5px;
2189}
2190
2191#nav-swap .fullscreen {
2192 float: right;
2193 width: 24px;
2194 height: 24px;
2195 text-indent: -1000em;
2196 padding:0;
2197 margin:3px 5px 0;
2198 background: url(../images/fullscreen.png) no-repeat -24px 0;
2199}
2200#nav-swap .fullscreen.disabled {
2201 background-position: 0 0;
2202}
2203#nav-swap .fullscreen:hover,
2204#nav-swap .fullscreen:focus {
2205 cursor:pointer;
2206}
2207
2208
2209/* nav tree */
2210#side-nav, #devdoc-nav, #swapper,
2211#nav-tree, #tree-list {
2212 overflow:hidden;
2213 margin-left:0;
2214}
2215
2216#nav-tree ul {
2217 list-style:none;
2218 padding:0;
2219 margin:10px 0;
2220}
2221
2222#nav-tree ul li div {
2223 padding:0 0 0 4px;
2224}
2225
2226#side-nav #nav-tree ul li a,
2227#side-nav #nav-tree ul li span.no-children {
2228 padding: 0;
2229 margin: 0;
2230}
2231
2232#nav-tree .plus {
2233 margin: 0 3px 0 0;
2234}
2235
2236#nav-tree ul ul {
2237 list-style: none;
2238 margin: 0;
2239 padding: 0 0 0 0;
2240}
2241
2242#nav-tree ul li {
2243 margin: 0;
2244 padding: 0 0 0 0;
2245 white-space: nowrap;
2246}
2247
2248#nav-tree .children_ul {
2249 padding:0;
2250 margin:0;
2251}
2252#nav-tree .children_ul li div {
2253 padding:0 0 0 10px;
2254}
2255#nav-tree .children_ul .children_ul li div {
2256 padding:0 0 0 20px;
2257}
2258
2259#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002260 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002261 text-decoration: none;
2262}
2263
2264#nav-tree span.label {
2265 width: 100%;
2266}
2267
2268#nav-tree {
2269 overflow-x: auto;
2270 overflow-y: scroll;
2271 outline:0;
2272}
2273
2274
2275/* Content */
2276#doc-col {
2277 margin-right:0;
2278}
2279#doc-content-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002280 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002281}
2282#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002283 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002284}
2285#doc-header {
Scott Mainb7f96372013-02-07 16:56:43 -08002286 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002287}
2288#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002289 line-height: 0;
2290 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002291}
2292#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002293 float: right;
2294 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002295}
2296#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002297 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002298}
2299#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002300 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002301}
2302#api-nav-header {
2303 height:19px; /* plus 16px padding = 35; same as #nav li */
2304 font-size:14px;
2305 padding: 8px 0;
2306 margin: 0;
2307 border-bottom: 1px solid #CCC;
2308 background:#e9e9e9;
2309 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2310
2311}
2312#api-nav-title {
2313 padding:0 5px;
2314 white-space:nowrap;
2315}
2316
2317#api-level-toggle {
2318 float:right;
2319 padding:0 5px;
2320}
2321
2322#api-level-toggle label {
2323 margin:0;
2324 vertical-align:top;
2325 line-height: 19px;
2326 font-size:13px;
2327 height: 19px;
2328}
2329
2330#api-level-toggle .select-wrapper {
2331 width: 35px;
2332 display: inline-block;
2333 overflow: hidden;
2334}
2335#api-level-toggle select {
2336 border: 0;
2337 appearance:none;
2338 -moz-appearance:none;
2339 -webkit-appearance: none;
2340 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002341 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002342 height: 19px;
2343 line-height: 19px;
2344 padding: 0;
2345 margin:1px 0 0 0;
2346 width:150%;
2347 font-size:13px;
2348 vertical-align:top;
2349 outline:0;
2350}
2351
2352
2353/* Toggle for revision notes and stuff */
2354div.toggle-content.closed .toggle-content-toggleme {
2355 display:none;
2356}
2357
2358#jd-content img.toggle-content-img {
2359 margin:0 5px 5px 0;
2360}
Scott Main220c3442012-07-16 15:40:17 -07002361div.toggle-content p {
2362 margin:10px 0 0;
2363}
2364div.toggle-content-toggleme {
2365 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002366}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002367
2368
2369/* API LEVEL FILTERED MEMBERS */
2370
2371.absent,
2372.absent a:link,
2373.absent a:visited,
2374.absent a:hover,
2375.absent * {
2376 color:#bbb !important;
2377 cursor:default !important;
2378 text-decoration:none !important;
2379}
2380#devdoc-nav li.absent.selected,
2381#devdoc-nav li.absent.selected *,
2382#devdoc-nav div.label.absent.selected,
2383#devdoc-nav div.label.absent.selected * {
2384 background-color:#eaeaea !important;
2385}
2386.absent h4.jd-details-title,
2387.absent h4.jd-details-title * {
2388 background-color:#f6f6f6 !important;
2389}
2390.absent img {
2391 opacity: .3;
2392 filter: alpha(opacity=30);
2393 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2394}
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404/* JQUERY RESIZABLE STYLES */
2405.ui-resizable { position: relative; }
2406.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2407.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2408/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2409body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2410.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2411border-bottom: solid 1px #ededed;
2412 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2413/*
2414.ui-resizable-e {
2415cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24161px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2417*/
2418
2419/* --------------------------------------------------------------------------
2420Lightbox
2421*/
Scott Mainb7f96372013-02-07 16:56:43 -08002422.lightbox {
2423 width: 769px;
2424 padding: 1.5em;
2425 margin: 0 auto;
2426 border: solid 1px #dcdcdc;
2427 background: #fff;
2428 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2429 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2430 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002431}
2432.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002433 float: left;
2434 width: 720px;
2435 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002436}
2437.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002438 float: right;
2439 width: 10px;
2440 height: 10px;
2441 margin: -10px -10px 10px 0;
2442 text-indent: -1000em;
2443 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002444}
2445.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002446 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002447}
2448
2449/* --------------------------------------------------------------------------
Dirk Dougherty4c2dfcf2013-07-08 16:05:05 -07002450Butterbar
2451*/
2452#butterbar-wrapper {
2453 position:absolute;
2454 top:0;
2455 left:0;
2456 width:100%;
2457}
2458#butterbar {
2459 width:940px;
2460 margin:0 auto;
2461}
2462#butterbar-message {
2463 background-color:#f80;
2464 float:right;
2465 font-size:12px;
2466 font-weight:bold;
2467 padding:0 10px;
2468 border-radius: 0 0 5px 5px;
2469}
2470#butterbar-message a {color:#fff !important}
2471#butterbar-message a:hover {text-decoration:underline;}
2472
2473/* --------------------------------------------------------------------------
Scott Maine4d8f1b2012-06-21 18:03:05 -07002474Misc
2475*/
2476
2477
2478.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002479 content: "";
2480 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002481}
2482.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002483 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002484}
2485.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002486 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002487}
2488table.blank th, table.blank td {
2489 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002490 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002491}
2492.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002493 margin: 0.5em 0 2em 0;
2494 color: #000;
2495 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002496}
2497
2498.nolist {
2499 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002500 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002501}
Scott Main5747d382012-11-30 12:02:42 -08002502#tb .nolist {
2503 margin-left:15px;
2504}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002505
Scott Main8aa725e2013-04-25 10:00:32 -07002506dl.xml>dt {
2507 text-transform:uppercase;
2508}
2509dl.xml dl.attr {
2510 margin-top:0;
2511}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002512
2513pre.classic {
2514 background-color:transparent;
2515 border:none;
2516 padding:0;
2517}
2518
2519p.img-caption {
2520 margin: -10px 0 20px;
2521 font-size:13px;
2522 color:#666;
2523}
2524
Scott Main48dd7f22013-02-21 10:52:02 -08002525div.figure,
2526div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002527 float:right;
2528 clear:right;
2529 margin:10px 0 0 0;
2530 padding:0 0 0 20px;
2531 /* width must be defined w/ an inline style matching the image width */
2532}
2533
Scott Main48dd7f22013-02-21 10:52:02 -08002534div.figure-left {
2535 float:left;
2536 clear:left;
2537 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002538 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002539 /* width must be defined w/ an inline style matching the image width */
2540}
2541
2542img.frame {
2543 border:1px solid #DDD;
2544 padding:4px;
2545}
2546
Scott Maine4d8f1b2012-06-21 18:03:05 -07002547p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002548 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002549 font-size:13px;
2550 color:#666;
2551}
2552
Scott Main24bbcd52012-09-21 14:33:43 -07002553p.code-caption {
2554 margin: 0 0 4px 0;
Scott Maina07be8e2013-03-06 12:12:21 -08002555 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002556 color:#666;
2557}
2558
Scott Main54d2a9b2012-07-24 14:54:32 -07002559div.note,
2560div.caution,
2561div.warning {
2562 margin: 0 0 15px;
2563}
2564
Scott Maine4d8f1b2012-06-21 18:03:05 -07002565p.note, div.note,
2566p.caution, div.caution,
2567p.warning, div.warning {
2568 padding: 0 0 0 10px;
2569 border-left: 4px solid;
2570}
2571
Scott Main24bbcd52012-09-21 14:33:43 -07002572p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002573 border-color: #258AAF;
2574}
2575
Scott Main24bbcd52012-09-21 14:33:43 -07002576p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002577 border-color: #FF8800;
2578}
2579
Scott Main24bbcd52012-09-21 14:33:43 -07002580p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002581 border-color: #ff4443;
2582}
2583
Scott Main412eaf22012-06-22 14:36:33 -07002584div.note.design {
2585 border-left: 4px solid #33B5E5;
2586}
2587
2588div.note.develop {
2589 border-left: 4px solid #F80;
2590}
2591
2592div.note.distribute {
2593 border-left: 4px solid #9C0;
2594}
2595
2596.note p, .caution p, .warning p {
2597 margin:0 0 5px;
2598}
2599
2600.note p:last-child, .caution p:last-child, .warning p:last-child {
2601 margin-bottom:0;
2602}
2603
Scott Main5b5ff1a2012-09-12 10:29:45 -07002604body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002605 display:block;
2606 float:right;
2607 width:280px;
2608 font-size:20px;
2609 font-style:italic;
2610 line-height:24px;
2611 color:#33B5E5;
2612 margin:0 0 20px 30px;
2613}
2614
Scott Maine4d8f1b2012-06-21 18:03:05 -07002615div.design-announce p {
2616 margin:0 0 10px;
2617}
2618
2619#devdoc-nav a.totop {
2620 display:block;
2621 top:0;
2622 width:inherit;
2623 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2624 text-indent:-9999em;
2625}
2626#devdoc-nav a.totop {
2627 position:fixed;
2628 display:none;
2629}
2630#devdoc-nav a.totop:hover {
2631 background-color:#33B5E5;
2632}
2633
2634.content-footer a.totop {
2635 text-transform:uppercase;
2636 line-height:30px;
2637}
2638
Scott Maindb3678b2012-10-23 14:13:41 -07002639.expandable {
2640 height:34px;
2641 padding-left:20px;
2642 position:relative;
2643}
2644.expandable:before {
2645 content: '';
2646 background-image: url(../images/styles/disclosure_down.png);
2647 background-repeat:no-repeat;
2648 background-position: -12px -9px;
2649 width: 20px;
2650 height: 20px;
2651 display: inline-block;
2652 position: absolute;
2653 top: 0;
2654 left: 0; }
2655}
2656.expandable.expanded:before {
2657 background-image: url(../images/styles/disclosure_up.png);
2658}
2659
Scott Mainaaf76642013-06-19 18:04:30 -07002660/* notice box for cross links between Design/Develop docs */
2661a.notice-developers,
2662a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002663 float:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002664 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002665 min-height:50px;
2666 margin:0 0 20px 20px;
2667 border:1px solid #ddd;
2668}
Scott Mainaaf76642013-06-19 18:04:30 -07002669a.notice-developers div,
2670a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002671 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002672 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2673 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002674 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002675}
Scott Mainaaf76642013-06-19 18:04:30 -07002676a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002677 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2678 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002679}
2680a.notice-developers:hover,
2681a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002682 background:#eee;
2683}
Scott Mainaaf76642013-06-19 18:04:30 -07002684a.notice-developers h3,
2685a.notice-designers h3 {
Scott Maind2af6d22013-05-13 18:39:06 -07002686 font-size:14px;
2687 font-weight:normal;
2688 text-transform:uppercase;
2689 color:#000 !important;
2690 margin:0;
2691}
Scott Mainaaf76642013-06-19 18:04:30 -07002692a.notice-developers p,
2693a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002694 margin:0;
Scott Main9bfcd732013-05-14 09:14:35 -07002695 line-height:16px;
2696}
Scott Mainaaf76642013-06-19 18:04:30 -07002697a.notice-developers.left,
2698a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002699 margin-left:0;
2700 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002701}
2702
2703
Scott Maind7026f72013-06-17 15:08:49 -07002704/* hide nested list items; companion to hideNestedLists() */
2705.hide-nested li ol,
2706.hide-nested li ul {
2707 display:none;
2708}
2709
2710a.header-toggle {
2711 display:block;
2712 float:right;
2713 text-transform:uppercase;
2714 font-size:.8em !important;
2715 font-weight:normal;
2716 margin-top:2px;
2717}
2718
2719
Dirk Doughertybec14292013-04-10 20:23:40 -07002720/* -----------------------------------------------
2721good/bad example containers
2722*/
Scott Maindb3678b2012-10-23 14:13:41 -07002723
Dirk Doughertybec14292013-04-10 20:23:40 -07002724div.example-block {
2725 background-repeat: no-repeat;
2726 background-position:10px 8px;
2727 background-color:#ccc;
2728 padding:4px;
2729 margin:.8em auto 1.5em 2em;
2730 width:260px;
2731 float:right;
2732}
2733/* red container */
2734.example-block.bad {
2735 background-image: url(/images/example-bad.png);
2736 background-color:#f4cccc;
2737}
2738/* green container */
2739.example-block.good {
2740 background-image: url(/images/example-good.png);
2741 background-color:#d9ead3;
2742}
2743/* container heading div */
2744#jd-content .example-block .heading {
2745 font-weight:bold;
2746 margin:6px 0 9px 36px;
2747 padding:6px auto;
2748}
2749/* container image (if any) */
2750#jd-content .example-block img {
2751 margin:0;
2752 padding:0px;
2753}
2754
2755.example-block table {
2756 margin:0;
2757}
Scott Maindb3678b2012-10-23 14:13:41 -07002758
Scott Maine4d8f1b2012-06-21 18:03:05 -07002759/* -----------------------------------------------
2760Dialog box for popup messages
2761*/
2762
2763div.dialog {
2764 height:0;
2765 margin:0 auto;
2766}
2767
2768div.dialog>div {
2769 z-index:99;
2770 position:fixed;
2771 margin:70px 0;
2772 width: 391px;
2773 height: 200px;
2774 background: #F7F7F7;
2775-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2776-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2777box-shadow: 0 0 15px rgba(0,0,0,0.5);
2778}
2779/* IE6 can't position fixed */
2780* html div.dialog div { position:absolute; }
2781
2782
2783div#deprecatedSticker {
2784 display:none;
2785 z-index:99;
2786 position:fixed;
2787 right:15px;
2788 top:114px;
2789 margin:0;
2790 padding:1em;
2791 background:#FFF;
2792 border:1px solid #dddd00;
2793 box-shadow:-5px 5px 10px #ccc;
2794 -moz-box-shadow:-5px 5px 10px #ccc;
2795 -webkit-box-shadow:-5px 5px 10px #ccc;
2796}
2797
2798div#naMessage {
2799 display:none;
2800 width:555px;
2801 height:0;
2802 margin:0 auto;
2803}
2804
2805div#naMessage div {
2806 z-index:99;
2807 width:450px;
2808 position:fixed;
2809 margin:50px 0;
2810 padding:4em 4em 3em;
2811 background:#FFF;
2812 border:1px solid #999;
2813 box-shadow:-10px 10px 40px #888;
2814 -moz-box-shadow:-10px 10px 40px #888;
2815 -webkit-box-shadow:-10px 10px 40px #888;
2816}
2817/* IE6 can't position fixed */
2818* html div#naMessage div { position:absolute; }
2819
2820div#naMessage strong {
2821 font-size:1.1em;
2822}
2823
2824
2825/* --------------------------------------------------------------------------
2826Slideshow Controls & Next/Prev
2827*/
Scott Mainb7f96372013-02-07 16:56:43 -08002828.slideshow-next, .slideshow-prev {
2829 width: 20px;
2830 height: 36px;
2831 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002832}
2833.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002834 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002835}
2836.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002837 content: "";
2838 display: table;
2839 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002840}
2841a.slideshow-next, a.slideshow-next:visited {
2842
Scott Mainb7f96372013-02-07 16:56:43 -08002843 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002844
Scott Mainb7f96372013-02-07 16:56:43 -08002845 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002846
2847}
2848
2849a.slideshow-prev, a.slideshow-prev:visited {
2850
Scott Mainb7f96372013-02-07 16:56:43 -08002851 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002852
Scott Mainb7f96372013-02-07 16:56:43 -08002853 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002854
2855}
2856
2857.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2858
Scott Mainb7f96372013-02-07 16:56:43 -08002859 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002860
2861}
2862
2863.slideshow-next:active, .slideshow-prev:active {
2864
Scott Mainb7f96372013-02-07 16:56:43 -08002865 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002866
2867}
2868.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002869 width: 74px;
2870 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002871}
2872.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002873 display: inline-block;
2874 width: 12px;
2875 height: 12px;
2876 margin: 0 2px 20px 2px;
2877 background: #ccc;
2878 -webkit-border-radius: 50%;
2879 -moz-border-radius: 50%;
2880 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002881}
2882.slideshow-nav a:hover, .slideshow-nav a:focus {
2883
Scott Mainb7f96372013-02-07 16:56:43 -08002884 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002885}
2886
2887.slideshow-nav a:active {
2888
Scott Mainb7f96372013-02-07 16:56:43 -08002889 background: #1e799a;
2890 background: #ebebeb;
2891 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2892 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2893 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07002894}
2895.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002896 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002897}
2898/* --------------------------------------------------------------------------
2899Tabs
2900*/
2901ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08002902 padding: 0;
2903 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002904}
2905ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002906 content: "";
2907 display: table;
2908 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002909}
2910ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08002911 list-style-type: none;
2912 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002913}
2914ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002915 display: block;
2916 height: 36px;
2917 line-height: 36px;
2918 padding: 0 15px;
2919 margin-right: 2px;
2920 color: #222;
2921 -moz-border-radius-topleft: 2px;
2922 -moz-border-radius-topright: 2px;
2923 -moz-border-radius-bottomright: px;
2924 -moz-border-radius-bottomleft: px;
2925 -webkit-border-radius: 2px 2px px px;
2926 border-radius: 2px 2px px px;
2927 border-top: solid 1px #ebebeb;
2928 border-left: solid 1px #ebebeb;
2929 border-right: solid 1px #ebebeb;
2930 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002931 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2932 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2933 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2934 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2935 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2936 background-image: linear-gradient(top, #ffffff, #fafafa);
2937 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2938EndColorStr='#fafafa');
2939}
2940ul.tabs li a:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002941 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002942}
2943ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08002944 height: 37px;
2945 color: #33B5E5;
2946 background-color: #f7f7f7;
2947 background-image: none;
2948 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002949}
2950.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002951 padding: 1.2em;
2952 margin: -1px 0 2em 0;
2953 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002954 -moz-border-radius: 2px;
2955 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08002956 border: solid 1px #ddd;
2957 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002958}
2959/* --------------------------------------------------------------------------
2960Feature Boxes
2961*/
2962.feature-box {
2963 width: 291px;
2964 height: 200px;
2965 position: relative;
2966 background: #F7F7F7;
2967}
2968.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08002969 z-index: 100;
2970 position: absolute;
2971 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002972}
2973.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08002974 width: 291px;
2975 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002976}
2977.dialog .box-border .top,
2978.dialog .box-border .bottom { width:391px; }
2979
Scott Mainb7f96372013-02-07 16:56:43 -08002980.box-border .left, .box-border .right {
2981 width: 1px;
2982 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002983}
2984.box-border .top { top: 0; left: 0 }
2985.box-border .top .left { top: 1px; left: 0 }
2986.box-border .top .right { top: 1px; right: 0 }
2987.box-border .bottom .left { top: -8px; left: 0 }
2988.box-border .bottom { top: 200px; left: 0 }
2989.box-border .bottom .right { top: -8px; right: 0 }
2990
2991.feature-box h4,
2992.dialog h4 {
2993 margin: 15px 18px 10px;
2994 padding:0;
2995}
2996
2997.feature-box p,
2998.dialog p {
2999 margin: 10px 18px;
3000 padding:0;
3001}
3002.feature-box .link,
3003.dialog .link {
3004 border-top: 1px solid #dedede;
3005 bottom: 0;
3006 position: absolute;
3007 width: inherit;
3008}
3009.feature-box a, .feature-box h4,
3010.dialog a, .dialog h4 {
3011 -webkit-transition: color .4s ease;
3012 -moz-transition: color .4s ease;
3013 -o-transition: color .4s ease;
3014 transition: color .4s ease;
3015}
3016.feature-box:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08003017 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003018}
3019.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Mainb7f96372013-02-07 16:56:43 -08003020.left, .feature-box:hover .right {
3021 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003022}
3023.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08003024 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003025}
3026/* --------------------------------------------------------------------------
3027Page-Specific Styles
3028*/
3029.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08003030 position: relative;
3031 float: left;
3032 width: 92px;
3033 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003034}
3035.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08003036 color: #fff;
3037 font-size: 11.5px;
3038 width: 82px;
3039 height: 82px;
3040 margin-top:-30px;
3041 line-height: 82px;
3042 text-align: center;
3043 border: solid 5px #fff;
3044 -webkit-border-radius: 50%;
3045 -moz-border-radius: 50%;
3046 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003047}
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062/* ########### REFERENCE DOCS ################## */
3063
3064#packages-nav h2,
3065#classes-nav h2 {
3066 font-size:18px;
3067 margin:0;
3068 padding:0 0 0 4px;
3069}
3070
3071#jd-header {
3072 padding: 0 0 5px;
3073 margin: 20px 0 10px;
3074 font-size:13px;
3075 border-bottom:solid 1px #ccc;
3076}
3077
3078#jd-header h1 {
3079 margin:0;
3080 padding:0;
3081}
3082
3083/* page-top-right container for reference pages (holds
3084links to summary tables) */
3085#api-info-block {
3086 font-size:13px;
3087 margin:20px 0 0;
3088 padding:0 10px 6px;
3089 font-weight:normal;
3090 float:right;
3091 text-align:right;
3092 color:#999;
3093 max-width:70%;
3094}
3095
3096#api-info-block div.api-level {
3097 font-weight:bold;
3098 font-size:inherit;
3099 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003100 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003101 padding:0;
3102 margin:0;
3103}
3104
3105/* inheritance table */
3106.jd-inheritance-table {
3107 border-spacing:0;
3108 margin:0;
3109 padding:0;
3110 font-size:13px;
3111 background-color:transparent;
3112}
3113.jd-inheritance-table tr td {
3114 border: none;
3115 margin: 0;
3116 padding: 0;
3117 background-color:transparent;
3118}
3119.jd-inheritance-table .jd-inheritance-space {
3120 font-weight:bold;
3121 width:1em;
3122}
3123.jd-inheritance-table .jd-inheritance-interface-cell {
3124 padding-left: 17px;
3125}
3126
3127
3128
3129.jd-sumtable a {
3130 text-decoration:none;
3131}
3132
3133.jd-sumtable a:hover {
3134 text-decoration:underline;
3135}
3136
3137/* the link inside a sumtable for "Show All/Hide All" */
3138.toggle-all {
3139 display:block;
3140 float:right;
3141 font-weight:normal;
3142 font-size:0.9em;
3143}
3144
3145/* adjustments for in/direct subclasses tables */
3146.jd-sumtable.jd-sumtable-subclasses {
3147 margin: 1em 0 0 0;
3148 max-width:968px;
3149 background-color:transparent;
3150 font-size:13px;
3151}
3152
3153/* extra space between end of method name and open-paren */
3154.sympad {
3155 margin-right: 2px;
3156}
3157
3158/* right alignment for the return type in sumtable */
3159.jd-sumtable .jd-typecol {
3160 text-align:right;
3161}
3162
3163/* adjustments for the expando table-in-table */
3164.jd-sumtable-expando {
3165 margin:.5em 0;
3166 padding:0;
3167}
3168
3169/* a div that holds a short description */
3170.jd-descrdiv {
3171 padding:3px 1em 0 1em;
3172 margin:0;
3173 border:0;
3174}
3175
3176#jd-content img.jd-expando-trigger-img {
3177 padding:0 4px 4px 0;
3178 margin:0;
3179}
3180
3181.jd-sumtable-subclasses div#subclasses-direct,
3182.jd-sumtable-subclasses div#subclasses-indirect {
3183 margin:0 0 0 13px;
3184}
3185
3186
3187
3188/********* MEMBER REF *************/
3189
3190
3191.jd-details {
3192/* border:1px solid #669999;
3193 padding:4px; */
3194 margin:0 0 1em;
3195}
3196
3197/* API reference: a container for the
3198.tagdata blocks that make up the detailed
3199description */
3200.jd-details-descr {
3201 padding:0;
3202 margin:.5em .25em;
3203}
3204
3205/* API reference: a block containing
3206a detailed description, a params table,
3207seealso list, etc */
3208.jd-tagdata {
3209 margin:.5em 1em;
3210}
3211
3212.jd-tagdata p {
3213 margin:0 0 1em 1em;
3214}
3215
3216/* API reference: adjustments to
3217the detailed description block */
3218.jd-tagdescr {
3219 margin:.25em 0 .75em 0;
3220}
3221
3222.jd-tagdescr ol,
3223.jd-tagdescr ul {
3224 margin:0 2.5em;
3225 padding:0;
3226}
3227
3228.jd-tagdescr table,
3229.jd-tagdescr img {
3230 margin:.25em 1em;
3231}
3232
3233.jd-tagdescr li {
3234margin:0 0 .25em 0;
3235padding:0;
3236}
3237
3238/* API reference: heading marking
3239the details section for constants,
3240attrs, methods, etc. */
3241h4.jd-details-title {
3242 font-size:1.15em;
3243 background-color: #E2E2E2;
3244 margin:1.5em 0 .6em;
3245 padding:3px 95px 3px 3px; /* room for api-level */
3246}
Scott Mainab4daf42012-11-30 11:27:17 -08003247body.google h4.jd-details-title {
3248 background-color: #FFF;
3249 padding-top:5px;
3250 border-top: 1px solid #ccc;
3251}
3252body.google table.jd-sumtable th {
3253 background-color: #FFF;
3254 color:#000;
3255}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003256
3257h4.jd-tagtitle {
3258 margin:0;
3259}
3260
3261h4 .normal {
3262 font-weight:normal;
3263}
3264
3265/* API reference: heading for "Parameters", "See Also", etc.,
3266in details sections */
3267h5.jd-tagtitle {
3268 margin:0 0 .25em 0;
3269 font-size:1em;
3270}
3271
3272.jd-tagtable {
3273 margin:0;
3274 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003275 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003276}
3277
3278.jd-tagtable td,
3279.jd-tagtable th {
3280 border:none;
3281 background-color:#fff;
3282 vertical-align:top;
3283 font-weight:normal;
3284 padding:2px 10px;
3285}
3286
3287.jd-tagtable th {
3288 font-style:italic;
3289}
3290
3291/* Inline api level indicator for methods */
3292div.api-level {
3293 font-size:.8em;
3294 font-weight:normal;
3295 color:#999;
3296 float:right;
3297 padding:0 8px 0;
3298 margin-top:-30px;
3299}
3300
3301table.jd-tagtable td,
3302table.jd-tagtable th {
3303 background-color:transparent;
3304}
3305
3306table.jd-tagtable th {
3307 color:inherit;
3308}
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332/* SEARCH FILTER */
3333
Scott Main0e76e7e2013-03-12 10:24:07 -07003334.menu-container {
3335 position:relative;
3336}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003337#search_autocomplete {
3338 font-weight:normal;
3339}
3340
Scott Main0e76e7e2013-03-12 10:24:07 -07003341.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003342 width: 193px;
3343 float: right;
3344}
Scott Main0e76e7e2013-03-12 10:24:07 -07003345.search_filtered_wrapper.docs {
3346 width:875px;
3347 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003348 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003349 top:26px;
3350 right:66px;
3351}
3352.suggest-card {
3353 position:relative;
3354 width:170px;
3355 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003356 padding:5px;
3357 border: solid 1px #C5C5C5;
3358 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003359 top: 15px;
3360 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003361 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3362 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3363 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3364}
Scott Main0e76e7e2013-03-12 10:24:07 -07003365.suggest-card.reference {
3366 position:absolute;
3367 z-index:999;
3368 min-width:171px; /* +padding and border makes this match input width */
3369 min-height:93px; /* add 3px because this has 1 not 4px top border */
3370 width:auto;
3371 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003372 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003373}
3374.suggest-card.develop {
3375 z-index:997;
3376 border-top: solid 4px #F80;
3377 float:right;
3378}
3379.suggest-card.design {
3380 z-index:996;
3381 border-top: solid 4px #33b5e5;
3382 float:right;
3383}
3384.suggest-card.distribute {
3385 z-index:995;
3386 border-top: solid 4px #9C0;
3387 float:right;
3388}
3389.child-card {
3390 width:100%;
3391}
3392.suggest-card.dummy {
3393 width:172px;
3394 float:right;
3395 border:0;
3396 background:transparent;
3397 -moz-box-shadow: none;
3398 -webkit-box-shadow: none;
3399 box-shadow: none;
3400}
3401
3402ul.search_filtered {
3403 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003404 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003405 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003406 padding: 0;
3407}
Scott Main0e76e7e2013-03-12 10:24:07 -07003408.search_filtered .jd-selected {
3409 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003410 cursor:pointer;
3411}
Scott Main0e76e7e2013-03-12 10:24:07 -07003412.search_filtered .jd-selected,
3413.search_filtered .jd-selected a {
3414 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003415}
3416
3417.no-display {
3418 display: none;
3419}
3420
Scott Main0e76e7e2013-03-12 10:24:07 -07003421.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003422 font-size: 0.81em;
3423 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003424 margin: 0 0 2px;
3425 padding: 0;
3426 line-height:1.5em;
3427}
3428
Scott Main0e76e7e2013-03-12 10:24:07 -07003429.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003430 padding:0 5px;
3431 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003432 display:inline-block;
3433 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003434}
3435
Scott Main0e76e7e2013-03-12 10:24:07 -07003436.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003437 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003438 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003439 border: none;
3440 margin: 8px 0 2px;
3441 padding:1px 5px;
3442 line-height:1.5em;
3443}
Scott Main0e76e7e2013-03-12 10:24:07 -07003444.search_filtered li.header.small {
3445 font-size:0.85em;
3446}
Scott Main7e447ed2013-02-19 17:22:37 -08003447
Scott Main0e76e7e2013-03-12 10:24:07 -07003448.suggest-card.reference
3449.search_filtered li.header {
3450 color:#aaa;
3451 font-size: 0.81em;
3452}
3453
3454.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003455 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003456}
3457
3458.show-item {
3459 display: table-row;
3460}
3461.hide-item {
3462 display: hidden;
3463}
3464
3465
3466
3467
3468
3469/* SEARCH RESULTS */
3470
Scott Maine4d8f1b2012-06-21 18:03:05 -07003471
3472#leftSearchControl .gsc-twiddle {
3473 background-image : none;
3474}
3475
3476#leftSearchControl td, #searchForm td {
3477 border: 0px solid #000;
3478 padding:0;
3479}
3480
3481#leftSearchControl .gsc-resultsHeader .gsc-title {
3482 padding-left : 0px;
3483 font-weight : bold;
3484 font-size : 13px;
3485 color:#006699;
3486 display : none;
3487}
3488
3489#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3490 display : none;
3491}
3492
3493#leftSearchControl .gsc-resultsRoot {
3494 padding-top : 6px;
3495}
3496
3497#leftSearchControl div.gs-visibleUrl-long {
3498 display : block;
3499 color:#006699;
3500}
3501
3502#leftSearchControl .gsc-webResult {
3503 padding:0 0 20px 0;
3504}
3505
3506.gsc-webResult div.gs-visibleUrl-short,
3507table.gsc-branding,
3508.gsc-clear-button {
3509 display : none;
3510}
3511
3512.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3513.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3514#leftSearchControl a,
3515#leftSearchControl a b {
3516 color:#006699;
3517}
3518
3519.gsc-resultsHeader {
3520 display: none;
3521}
3522
3523/* Disable built in search forms */
3524.gsc-control form.gsc-search-box {
3525 display : none;
3526}
3527table.gsc-search-box {
3528 margin:6px 0 0 0;
3529 border-collapse:collapse;
3530}
3531
3532td.gsc-input {
3533 padding:0 2px;
3534 width:100%;
3535 vertical-align:middle;
3536}
3537
3538input.gsc-input {
3539 border:1px solid #BCCDF0;
3540 width:99%;
3541 padding-left:2px;
3542 font-size:.95em;
3543}
3544
3545td.gsc-search-button {
3546 text-align: right;
3547 padding:0;
3548 vertical-align:top;
3549}
3550
3551
3552#searchResults {
3553 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3554(it doesn't) */
3555 height:auto;
3556}
3557
3558#searchResults .gsc-control {
3559 position:relative;
3560 width:auto;
3561 padding:0 0 10px;
3562}
3563
3564#searchResults .gsc-tabsArea {
3565 position:relative;
3566 white-space:nowrap;
3567 float:left;
3568 width:200px;
3569}
3570
3571#searchResults .gsc-above-wrapper-area {
3572 display:none;
3573}
3574
3575#searchResults .gsc-resultsbox-visible {
3576 float:left;
3577 width:720px;
3578 margin-left:20px;
3579}
3580
3581#searchResults .gsc-tabHeader {
3582 padding: 3px 6px;
3583 position:relative;
3584 width:auto;
3585 display:block;
3586}
3587
3588#searchResults h2#searchTitle {
3589 padding:0;
3590 margin:5px 0;
3591 border:none;
3592}
3593
3594#searchResults h2#searchTitle em {
3595 font-style:normal;
3596 color:#33B5E5;
3597}
3598
3599#searchResults .gsc-table-result {
3600 margin:5px 0 10px 0;
3601 background-color:transparent;
3602}
3603#searchResults .gs-web-image-box, .gs-promotion-image-box {
3604 width:120px;
3605}
3606#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3607 max-width:120px;
3608}
3609
3610#searchResults .gsc-table-result .gsc-thumbnail {
3611 padding:0 20px 0 0;
3612}
3613
3614#searchResults td {
3615 background-color:transparent;
3616}
3617
3618#searchResults .gsc-expansionArea {
3619 position:relative;
3620}
3621#searchResults .gsc-tabsArea .gsc-cursor-box {
3622 width:200px;
3623 padding:20px 0 0 1px;
3624}
3625#searchResults .gsc-cursor-page {
3626 display:inline-block;
3627 float:left;
3628 margin:-1px 0 0 -1px;
3629 padding:0;
3630 height:27px;
3631 width:27px;
3632 text-align:center;
3633 line-height:2;
3634}
3635
3636#searchResults .gsc-tabHeader.gsc-tabhInactive,
3637#searchResults .gsc-cursor-page {
3638 text-decoration:none;
3639 color:#258AAF;
3640 border: solid 1px #DADADA;
3641}
3642
3643#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3644#searchResults .gsc-cursor-page:hover {
3645 border-color: #DBDBDB;
3646 background-color: #F3F3F3;
3647 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3648 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3649 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3650 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3651 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3652 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3653 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3654EndColorStr='#ececec');
3655 color: #33B5E5;
3656}
3657
3658#searchResults .gsc-tabHeader.gsc-tabhActive,
3659#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3660#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3661#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3662 color:#fff;
3663 background-color: #09C;
3664 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3665 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3666 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3667 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3668 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3669 background-image: linear-gradient(top, #2FADDB, #09C);
3670 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3671 border: 1px solid #3990AB;
3672 z-index:100;
3673}
3674
3675}
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689/*********** PREVIOUSLY dac-styles.css ***************/
3690
3691
Scott Maine4d8f1b2012-06-21 18:03:05 -07003692#header {
3693 border-bottom:0;
3694}
3695
3696#header .wrap {
3697 max-width:940px;
3698 height:41px;
3699 border-bottom:1px solid;
3700 border-color: #ccc;
3701 position:relative;
3702}
3703
3704.about #header .wrap {
3705 border-color: #9933CC;
3706}
3707
3708.design #header .wrap {
3709 border-color: #33b5e5;
3710}
3711
3712.develop #header .wrap {
3713 border-color: #F80;
3714}
3715
3716.distribute #header .wrap {
3717 border-color: #9C0;
3718}
3719
3720.logo a {
3721 width:123px;
3722 float:left;
3723}
3724
3725#header .logo {
3726 margin-top: -6px;
3727 margin-left: 0px;
3728 margin-bottom:0px;
3729 width: 160px;
3730 padding-right:10px;
3731}
3732
3733.search {
3734 height:25px;
3735 margin-top: -3px;
3736 margin-bottom: 0px;
3737}
3738
3739
3740
3741/* Quicknav */
3742.btn-quicknav {
3743 width:20px;
3744 height:28px;
3745 float:left;
3746 margin-left:6px;
3747 padding-right:10px;
3748 position:relative;
3749 cursor:pointer;
3750 border-right:1px solid #CCC;
3751}
3752
3753.btn-quicknav a {
3754 zoom:1;
3755 position:absolute;
3756 top:13px;
3757 left:5px;
3758 display:block;
3759 text-indent:-9999em;
3760 width:10px;
3761 height:5px;
3762 background:url(../images/quicknav_arrow.png) no-repeat;
3763}
3764
3765.btn-quicknav a.arrow-active {
3766 background-position: 0 -5px;
3767 display:none;
3768}
3769
3770#header-wrap.quicknav a.arrow-inactive {
3771 display:none;
3772}
3773
3774.btn-quicknav.active a.arrow-active {
3775 display:block;
3776}
3777
3778.nav-x li {
3779 display:block;
3780 float:left;
3781 margin-right:45px;
3782 -webkit-transition: all 0.25s linear;
3783 -moz-transition: all 0.25s linear;
3784 -ms-transition: all 0.25s linear;
3785 -o-transition: all 0.25s linear;
3786 transition: all 0.25s linear;
3787}
3788
3789#header-wrap.quicknav .nav-x li {
3790 min-width:160px;
3791 margin-right:20px;
3792}
3793
3794#header-wrap.quicknav li.last {
3795 margin-right:0px;
3796}
3797
3798#quicknav {
3799 float:none;
3800 clear:both;
3801 margin-left:180px;
3802 margin-top:-30px;
3803 display:none;
3804 overflow:hidden;
3805}
3806
3807#header-wrap.quicknav #quicknav {
3808
3809}
3810
3811#quicknav ul {
3812 margin:10px 0;
3813 padding:0;
3814}
3815
3816#quicknav ul li.design {
3817 border-top:1px solid #33b5e5;
3818}
3819
3820#quicknav ul li.develop {
3821 border-top:1px solid #FF8800;
3822}
3823
3824#quicknav ul li.distribute {
3825 border-top:1px solid #99cc00;
3826}
3827
3828#quicknav ul li {
3829 display:block;
3830 float:left;
3831 margin:0 20px 0 0;
3832 min-width:140px;
3833}
3834
3835#quicknav ul li.last {
3836 margin-right:0px;
3837}
3838
3839#quicknav ul li ul li {
3840 float:none;
3841}
3842
3843#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003844 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003845}
3846
3847#quicknav ul li li ul,
3848#quicknav ul li li ul li {
3849 margin:0;
3850}
3851
3852#quicknav ul li li ul li:before {
3853 content:"\21B3";
3854}
3855
3856#header-wrap {
3857 -webkit-transition: all 0.25s ease-out;
3858 -moz-transition: all 0.25s ease-out;
3859 -ms-transition: all 0.25s ease-out;
3860 -o-transition: all 0.25s ease-out;
3861 transition: all 0.25s ease-out;
3862
3863}
3864
3865#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003866 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003867
3868}
3869
3870/* SEARCH AND MORE */
3871.search {
3872 position: absolute;
3873 width: 50px;
3874 height:28px;
3875 display: block;
3876 margin-top:-3px;
3877 margin-bottom:7px;
3878 overflow:hidden;
3879 z-index:100;
3880 right:54px;
3881 -webkit-transition: width 0.4s ease;
3882 -moz-transition: width 0.4s ease;
3883 -o-transition: width 0.4s ease;
3884 transition: width 0.4s ease;
3885}
3886
3887.search #search-btn {
3888 width:50px;
3889 height:28px;
3890 background:url(../images/icon_search.png) no-repeat;
3891 float:left;
3892}
3893
3894.search-inner {
3895 width:245px;
3896}
3897
3898.search:hover, .search.active {
3899 width:245px;
3900}
3901
3902.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003903 position: absolute;
3904 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07003905}
3906
3907.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003908 width: 214px;
3909 height: 1px;
3910 top: 24px;
3911 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003912}
3913
Scott Mainb7f96372013-02-07 16:56:43 -08003914.search .left, .search .right {
3915 height: 5px;
3916 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003917}
3918
3919.search .left {
3920 top: 22px;
3921 left: 56px;
3922 background-color:#CCC;
3923}
3924
3925.search .right {
3926 top: 22px;
3927 left: 238px;
3928 background-color:#CCC;
3929}
3930
3931.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08003932 margin-top: 2px;
3933 width: 162px;
3934 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003935}
3936
3937.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08003938 color: #2f2f2f;
3939 font-size: 0.95em;
3940 width: 178px;
3941 border: none;
3942 margin-left: 6px;
3943 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003944 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08003945 background-color: transparent;
3946 border-bottom:1px solid #CCC;
3947 padding:0 0 0 4px;
3948 outline:none;
3949 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003950}
3951
3952.search:hover form input {
3953 border-bottom:1px solid #33B5E5;
3954}
3955
3956.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003957 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003958}
3959
3960.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08003961 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003962}
3963
3964.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08003965 color: #222;
3966 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07003967}
3968
3969.moremenu {
3970 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08003971 position: relative;
3972 width: 50px;
3973 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003974 display: block;
3975 margin-top:-3px;
3976 margin-bottom:7px;
3977 overflow:hidden;
3978 -webkit-transition: width 0.25s ease;
3979 -moz-transition: width 0.25s ease;
3980 -o-transition: width 0.25s ease;
3981 transition: width 0.25s ease;
3982}
3983
3984.moremenu #more-btn {
3985 width:40px;
3986 height:28px;
3987 background:url(../images/icon_more.png) no-repeat;
3988 border-left:1px solid #CCC;
3989 float:left;
3990 cursor:pointer;
3991}
3992
3993.moremenu:hover #more-btn {
3994 background-position:0 -28px;
3995}
3996
3997.morehover {
3998 position:absolute;
3999 right:6px;
4000 top:-9px;
4001 width:40px;
4002 height:35px;
4003 z-index:99;
4004 overflow:hidden;
4005
4006 -webkit-opacity:0;
4007 -moz-opacity:0;
4008 -o-opacity:0;
4009 opacity:0;
4010
4011 -webkit-transform-origin:100% 0%;
4012 -moz-transform-origin:100% 0%;
4013 -o-transform-origin:100% 0%;
4014 transform-origin:100% 0%;
4015
4016 -webkit-transition-property: -webkit-opacity;
4017 -webkit-transition-duration: .25s;
4018 -webkit-transition-timing-function:ease;
4019
Scott Main0e76e7e2013-03-12 10:24:07 -07004020 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004021 -moz-transition-duration: .25s;
4022 -moz-transition-timing-function:ease;
4023
Scott Main0e76e7e2013-03-12 10:24:07 -07004024 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004025 -o-transition-duration: .25s;
4026 -o-transition-timing-function:ease;
4027
Scott Main0e76e7e2013-03-12 10:24:07 -07004028 transition-property: opacity;
4029 transition-duration: .25s;
4030 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004031}
4032
Scott Maine05e6f92013-01-29 13:34:17 -08004033.morehover:hover,
4034.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004035 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07004036 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004037 width:268px;
4038 -webkit-transition-property:height, -webkit-opacity;
4039}
4040
4041.morehover .top {
4042 width:268px;
4043 height:39px;
4044 background:url(../images/more_top.png) no-repeat;
4045}
4046
4047.morehover .mid {
4048 width:228px;
4049 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004050 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004051}
4052
4053.morehover .mid .header {
4054 border-bottom:1px solid #ccc;
4055 font-weight:bold;
4056}
4057
4058.morehover .bottom {
4059 width:268px;
4060 height:6px;
4061 background:url(../images/more_bottom.png) no-repeat;
4062}
4063
4064.morehover ul {
4065 margin:10px 10px 20px 0;
4066}
4067
4068.morehover ul li {
4069 list-style:none;
4070}
4071
4072.morehover ul li.active a,
4073.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004074 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004075}
4076
4077.morehover ul li.active img {
4078 margin-right:4px;
4079}
4080
4081
4082
4083
4084/* MARQUEE */
4085.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004086 width:100%;
4087 overflow:hidden;
4088 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004089}
4090.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004091 position:absolute;
4092 top:50%;
4093 left:0px;
4094 margin-top:-36px;
4095 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004096}
4097.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004098 position:absolute;
4099 top:50%;
4100 margin-top:-36px;
4101 z-index:99;
4102 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004103}
4104
4105.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004106 position:absolute;
4107 bottom:20px;
4108 width:100%;
4109 text-align:center;
4110 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004111}
4112.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004113 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004114}
4115.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004116 display: inline-block;
4117 width:12px;
4118 height:12px;
4119 text-indent:-8000px;
4120 list-style:none;
4121 margin: 0 2px;
4122 border-radius:6px;
4123 background-color:#ccc;
4124 cursor:pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004125 -webkit-transition:color .5s ease-in;
4126 -moz-transition:color .5s ease-in;
4127 -o-transition:color .5s ease-in;
4128 transition:color .5s ease-in;
4129}
4130.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004131 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004132}
4133.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004134 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004135}
4136.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004137 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004138}
4139.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004140 display:inline;
4141 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004142}
4143
4144
4145
4146
4147a.download-sdk {
4148 float:right;
4149 margin:-10px 0;
4150 height:30px;
4151 padding-top:4px;
4152 padding-bottom:0px;
4153}
4154
4155#nav-x {
4156 padding-top: 14px;
4157}
4158
Scott Main1d62fa82012-07-17 13:15:12 -07004159#nav-x .wrap {
4160 min-height:34px;
4161}
4162
Scott Maine4d8f1b2012-06-21 18:03:05 -07004163#nav-x .wrap,
4164#searchResults.wrap {
4165 max-width:940px;
4166 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004167}
4168
Scott Maina214d842012-07-16 17:14:40 -07004169#searchResults.wrap #leftSearchControl {
4170 min-height:700px
4171}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004172.nav-x {
4173 margin-left:0;
4174 margin-bottom:0;
4175}
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186/*
4187 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4188 */
4189
4190.jspContainer {
4191 overflow: hidden;
4192 position: relative;
4193}
4194
4195.jspPane {
4196 position: absolute;
4197 overflow: hidden;
Scott Main2d967c62013-03-11 09:21:07 -07004198 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004199}
4200
4201.jspVerticalBar {
4202 position: absolute;
4203 top: 0;
4204 right: 0;
4205 width: 4px;
4206 height: 100%;
4207 background: #f5f5f5;
4208}
4209
4210.jspHorizontalBar {
4211 position: absolute;
4212 bottom: 0;
4213 left: 0;
4214 width: 100%;
4215 height: 4px;
4216 background: #f5f5f5;
4217}
4218
4219.jspVerticalBar *,
4220.jspHorizontalBar * {
4221 margin: 0;
4222 padding: 0;
4223}
4224.jspCap {
4225 display: block;
4226}
4227
4228.jspVerticalBar .jspCap {
4229 height: 4px;
4230}
4231
4232.jspHorizontalBar .jspCap {
4233 width: 0;
4234 height: 100%;
4235}
4236
4237.jspHorizontalBar .jspCap {
4238 float: left;
4239}
4240
4241.jspTrack {
4242 position: relative;
4243}
4244
4245.jspDrag {
4246 background: #bbb;
4247 position: relative;
4248 top: 0;
4249 left: 0;
4250 cursor: pointer;
4251}
4252
4253.jspDrag:hover,
4254.jspDrag:active {
4255 border-color: #09c;
4256 background-color: #4cadcb;
4257 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4258 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4259 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4260 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4261 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4262 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Mainb7f96372013-02-07 16:56:43 -08004263 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004264}
4265
4266.jspHorizontalBar .jspTrack,
4267.jspHorizontalBar .jspDrag {
4268 float: left;
4269 height: 100%;
4270}
4271
4272.jspArrow {
4273 background: #999;
4274 text-indent: -20000px;
4275 display: block;
4276 cursor: pointer;
4277}
4278
4279.jspArrow.jspDisabled {
4280 cursor: default;
4281 background: #ccc;
4282}
4283
4284.jspVerticalBar .jspArrow {
4285 height: 16px;
4286}
4287
4288.jspHorizontalBar .jspArrow {
4289 width: 16px;
4290 float: left;
4291 height: 100%;
4292}
4293
4294.jspVerticalBar .jspArrow:focus {
4295 outline: none;
4296}
4297
4298.jspCorner {
4299 float: left;
4300 height: 100%;
4301}
4302
4303/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4304* html .jspCorner {
4305 margin: 0 -3px 0 0;
4306}
4307/******* end of jscrollpane *********/
4308
4309
4310
4311
4312
4313/************ DEVELOP HOMEPAGE ******************/
4314
4315/* Slideshow */
4316.slideshow-develop {
4317 height: 300px;
4318 width: 940px;
4319 position: relative;
4320 overflow:hidden;
4321}
4322.slideshow-develop .frame {
4323 width: 940px;
4324 height: 300px;
4325}
4326.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004327 max-width:350px;
4328 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004329 margin:20px 0 0 90px;
4330 -webkit-transform: perspective(800px ) rotateY( 35deg );
4331 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4332 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4333 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4334}
4335.slideshow-develop img.play.no-shadow {
4336 box-shadow: none;
4337 -moz-box-shadow: none;
4338 -webkit-box-shadow: none;
4339}
4340.slideshow-develop img.play.no-transform {
4341 -webkit-transform: none;
4342}
4343.slideshow-develop a.slideshow-next {
4344 background: url(../images/arrow-right-develop.png);
4345}
4346.slideshow-develop a.slideshow-prev {
4347 background: url(../images/arrow-left-develop.png);
4348}
4349.slideshow-develop .content-right {
4350 float: left;
4351}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004352.slideshow-develop .content-right h2 {
4353 padding:0;
4354 margin-bottom:10px;
4355 border:none;
4356}
4357.slideshow-develop .item {
4358 height: 300px;
4359 width: 940px;
4360}
4361.slideshow-develop .pagination ul li.active {
4362 background-color: #F80;
4363}
4364.slideshow-develop .pagination ul li.active:hover {
4365 background-color: #F80;
4366}
Scott Main0e585702012-10-22 20:30:22 -07004367.slideshow-develop .item hr {
4368 margin:5px 0 10px;
4369}
4370.slideshow-develop .item p {
4371 margin:10px 0;
4372}
4373.slideshow-develop .item p.title-intro {
4374 position:absolute;
4375 margin:0;
4376}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004377
4378/* Feeds */
4379.feed ul {
4380 margin: 0;
4381}
4382.feed .feed-nav {
4383 height: 25px;
4384 border-bottom: 1px solid #CCC;
4385}
4386.feed .feed-nav li {
4387 list-style: none;
4388 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004389 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004390 margin-right: 25px;
4391 cursor: pointer;
4392}
4393.feed .feed-nav li.active {
4394 color: #000;
4395 border-bottom: 4px solid #F80;
4396}
4397.feed .feed-container {
4398 overflow: hidden;
4399 width: 460px;
4400}
4401.feed .feed-container .feed-frame {
4402 width: 1000px;
4403}
4404.feed .feed-container .feed-frame ul {
4405 float: left;
4406 width:460px;
4407}
4408.feed .feed-container .feed-frame ul ul {
4409 float: none;
4410 margin:10px 0 0 30px;
4411}
4412.feed .feed-container .feed-frame li {
4413 list-style: none;
4414 margin: 20px 0 20px 0;
4415 width: 460px;
4416 height:93px;
4417}
4418.feed .feed-container .feed-frame li.playlist {
4419 height:auto;
4420}
4421.feed .feed-container .feed-frame li.playlist a {
4422 height:93px;
4423 display:block;
4424}
4425.feed .feed-container .feed-frame li.more {
4426 height:20px;
4427 margin:10px 0 5px 5px;
4428}
4429.feed .feed-container .feed-frame li.more a {
4430 height:inherit;
4431}
4432.feed .feed-container .feed-frame li.playlist-video {
4433 list-style: none;
4434 margin: 0;
4435 width: 460px;
4436 height:55px;
4437 font-size:12px;
4438}
4439.feed .feed-container .feed-frame li.playlist-video a {
4440 height:45px;
4441 padding:5px;
4442}
4443.feed .feed-container .feed-frame li.playlist-video h5 {
4444 font-size:12px;
4445 line-height:13px;
4446 margin:0;
4447}
4448.feed .feed-container .feed-frame li.playlist-video p {
4449 margin:5px 0 0;
4450 line-height:15px;
4451}
4452.feed-container .feed-frame div.feed-image {
4453 float: left;
4454 border: 1px solid #999;
4455 margin:0 20px 0 0;
4456 width:122px;
4457 height:92px;
4458 background:url('../images/blog-default.png') no-repeat 0 0;
4459 background-size:180px;
4460}
4461#jd-content .feed .feed-container .feed-frame li img {
4462 float: left;
4463 border: 1px solid #999;
4464 margin:0 20px 0 0;
4465 width:122px;
4466 height:92px;
4467}
4468#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4469 width:inherit;
4470 height:inherit;
4471}
4472
4473.feed .feed-container .feed-frame li a,
4474.feed .feed-container .feed-frame li a:active {
4475 color:#555 !important;
4476}
4477
4478.feed .feed-container .feed-frame li a:hover,
4479.feed .feed-container .feed-frame li a:hover * {
4480 color:#7AA1B0 !important;
4481}
4482
4483/* Video player */
4484#player-wrapper {
4485 display:none;
4486 margin: -1px auto 0;
4487 position: relative;
4488 width: 940px;
4489 height: 0px;
4490}
4491#player-frame {
4492 background: #EFEFEF;
4493 border: 1px solid #CCC;
4494 padding: 0px 207px;
4495 z-index: 10; /* stay above marque, but below search suggestions */
4496 width: 525px;
4497 height: 330px;
4498 position: relative;
4499}
4500
4501
4502
4503/************ DISTRIBUTE HOMEPAGE ***************/
4504
4505.marquee {
4506 width: 760px;
4507}
4508.marquee .main-img {
4509 float: left;
4510 margin-top: 20px;
4511 width: 490px;
4512}
4513.marquee .copy {
4514 width: 270px;
4515 float: left;
4516 margin-top: 30px;
4517}
4518.distribute-features {
4519 margin: 0;
4520}
4521.distribute-features ul {
4522 margin: 0;
4523}
4524.distribute-features ul li {
4525 list-style: none;
4526 float: left;
4527 border-top: 1px solid #9C0;
4528 width: 220px;
4529 margin-right: 50px;
4530}
4531.distribute-features ul li.last {
4532 margin-right: 0px;
4533}
4534
Dirk Doughertye5862e82013-05-15 02:19:54 -07004535.distribute-features .distribute-link li a {
4536 color:red !important;
4537}
4538
4539.distribute-features .distribute-link li a,
4540.distribute-features .distribute-link li a:active {
4541 color:#555 !important;
4542}
4543
4544.distribute-features .distribute-link li a:hover,
4545.distribute-features .distribute-link li a:hover * {
4546 color:#7AA1B0 !important;
4547}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004548
Scott Main8fa53512012-11-30 20:16:42 -08004549
Scott Maine4d8f1b2012-06-21 18:03:05 -07004550/************ DEVELOP TOPIC CONTAINERS ************/
4551
4552.landing-banner,
4553.landing-docs {
4554 margin:20px 0 0;
4555}
Scott Main8fa53512012-11-30 20:16:42 -08004556.landing-banner div:first-child,
4557.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004558.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004559 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004560 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004561}
Scott Main8fa53512012-11-30 20:16:42 -08004562.landing-banner div:last-child,
4563.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004564.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004565 margin-right:0;
4566}
4567
4568.landing-banner h1 {
4569 margin-top:0;
4570}
Scott Main0e71cee2012-08-07 13:59:43 -07004571.landing-docs {
4572 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004573 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004574}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004575.landing-docs h3 {
4576 font-size:14px;
4577 line-height:21px;
4578 color:#555;
4579 text-transform:uppercase;
4580 border-bottom:1px solid #CCC;
4581 margin:0 0 20px;
4582}
4583.landing-docs a {
4584 color:#333 !important;
4585}
Robert Ly40e90992012-11-28 17:46:17 -08004586
Scott Maine4d8f1b2012-06-21 18:03:05 -07004587.landing-docs a:hover,
4588.landing-docs a:hover * {
4589 color:#7AA1B0 !important
4590}
4591
Robert Ly40e90992012-11-28 17:46:17 -08004592.landing-docs .normal-links a {
4593 color:#258aaf !important;
4594}
4595
Scott Maine4d8f1b2012-06-21 18:03:05 -07004596.plusone {
4597 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004598}
Scott Main9edfa6d2012-08-14 15:04:40 -07004599
4600
4601
4602/************* HOME/LANDING PAGE *****************/
4603
4604.slideshow-home {
4605 height: 500px;
4606 width: 940px;
4607 border-bottom: 1px solid #CCC;
4608 position: relative;
4609 margin: 0;
4610}
4611.slideshow-home .frame {
4612 width: 940px;
4613 height: 500px;
4614}
4615.slideshow-home .content-left {
4616 float: left;
4617 text-align: center;
4618 vertical-align: center;
4619 margin: 0 0 0 35px;
4620}
4621.slideshow-home .content-right {
4622 margin: 80px 0 0 0;
4623}
4624.slideshow-home .content-right p {
4625 margin-bottom: 10px;
4626}
4627.slideshow-home .content-right p:last-child {
4628 margin-top: 15px;
4629}
4630.slideshow-home .content-right h1 {
4631 padding:0;
4632}
4633.slideshow-home .item {
4634 height: 500px;
4635 width: 940px;
4636}
4637.home-sections {
4638 padding: 30px 20px 20px;
4639 margin: 20px 0;
4640 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4641}
4642.home-sections ul {
4643 margin: 0;
4644}
4645.home-sections ul li {
4646 float: left;
4647 display: block;
4648 list-style: none;
4649 width: 170px;
4650 height: 35px;
4651 border: 1px solid #ccc;
4652 background: white;
4653 margin-right: 10px;
4654 border-radius: 1px;
4655 -webkit-border-radius: 1px;
4656 -moz-border-radius: 1px;
4657 box-shadow: 1px 1px 5px #EEE;
4658 -webkit-box-shadow: 1px 1px 5px #EEE;
4659 -moz-box-shadow: 1px 1px 5px #EEE;
4660 background: white;
4661}
4662.home-sections ul li:hover {
4663 background: #F9F9F9;
4664 border: 1px solid #CCC;
4665}
4666.home-sections ul li a,
4667.home-sections ul li a:hover {
4668 font-weight: bold;
4669 margin-top: 8px;
4670 line-height: 18px;
4671 float: left;
4672 width: 100%;
4673 text-align: center;
4674 color: #09c !important;
4675}
4676.home-sections ul li a {
4677 font-weight: bold;
4678 margin-top: 8px;
4679 line-height: 18px;
4680 float: left;
4681 width:100%;
4682 text-align:center;
4683}
4684.home-sections ul li img {
4685 float: left;
4686 margin: -8px 0 0 10px;
4687}
4688.home-sections ul li.last {
4689 margin-right: 0px;
4690}
Scott Mainf5089842012-08-14 16:31:07 -07004691.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004692 margin-top: -40px;
4693}