blob: b9de50491fdab40c371e6c3966ec8b7ca0c837d8 [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,
465 .next-class-link:after {
466 content: '';
467 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
468 width: 10px;
469 height: 10px;
470 display: inline-block;
471 margin-left: 5px; }
472
473
474 .training-nav-top a {
475 display:block;
476 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700477 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700478 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700479 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700480 line-height:28px;
481 text-align:center;
482 border:1px solid #DADADA;
483 border-bottom:0;
484 }
Scott Main5a1123e2012-09-26 12:51:28 -0700485
Scott Maine4d8f1b2012-06-21 18:03:05 -0700486 .training-nav-top a.next-page-link {
487 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700488 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700489 }
490
Scott Main5a1123e2012-09-26 12:51:28 -0700491 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700492 .training-nav-top a.disabled,
493 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700494 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700495 }
496
Scott Main5a1123e2012-09-26 12:51:28 -0700497 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700498 .training-nav-top a.disabled:hover,
499 .content-footer a.disabled:hover {
500 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700501 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700502 }
503
504 .training-nav-top a.start-class-link,
505 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700506 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700507 }
508
Scott Main5a1123e2012-09-26 12:51:28 -0700509 /* list of classes on course landing page */
510 ol.class-list {
511 list-style:none;
512 margin-left:0;
513 }
514 ol.class-list>li {
515 margin:0 0 15px;
516 padding:5px 0 0;
517 overflow:hidden;
518 border-top:1px solid #ccc;
519 }
520 ol.class-list li a.title {
521 font-size:16px;
522 margin:0;
523 clear:left;
524 display:block;
525 height:32px;
526 padding:0 4px;
527 }
528 ol.class-list li a.title h2 {
529 color:inherit;
530 margin:0 0 10px;
531 display:block;
532 float:left;
533 width:675px;
534 }
535 ol.class-list li a.title span {
536 display:none;
537 float:left;
538 font-size:18px;
539 font-weight:bold;
540 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
541 width: 10px;
542 height: 32px;
543 }
544 ol.class-list li a.title:hover {
545 background:#ddd;
546 color:#258AAF !important;
547 }
548 ol.class-list li a.title:hover span {
549 display:block;
550 }
551
552 #jd-content
553 ol.class-list li img {
554 float:left;
555 clear:left;
556 width:64px;
557 margin:0 20px 0 0;
558 }
559 ol.class-list li p.description {
560 float:left;
561 display:block;
562 width:250px;
563 margin:0;
564 }
565 ol.class-list li p.description.article {
566 width: 550px;
567 }
568 ol.class-list ol {
569 float:left;
570 width:320px;
571 margin:0 0 0 30px;
572 list-style:none;
573 margin:0 0 0 20px;
574 }
575 ol.class-list div.lessons li {
576 margin:0 0 6px;
577 line-height:16px;
578 }
579
580
Scott Maine4d8f1b2012-06-21 18:03:05 -0700581 .hide {
582 display:none !important;
583 }
584
585 .content-footer.next-class {
586 display:block;
587 border:0;
588 margin-top:0;
589 padding-top:0;
590 }
591
592 .content-footer.next-class a.next-class-link {
593 display:block;
594 float:right;
595 text-transform:uppercase;
596 }
Scott Mainbbffb4b2012-11-13 07:40:16 -0800597
598
599
600 /* inner-doc tabs w/ title */
601
602div#title-tabs-wrapper {
603 border-bottom:1px solid #ccc;
604 margin:20px 0 30px;
605}
606h1.with-title-tabs {
607 display:inline-block;
608 margin:0 0 -1px 0;
609 padding:0 60px 0 0;
610 border-bottom:1px solid #F9F9F9;
611}
612ul#title-tabs {
613 list-style:none;
614 padding:0;
615 height:29px;
616 margin:0;
617 font-size:16px;
618 line-height:26px;
619 display:inline-block;
620 vertical-align:bottom;
621}
622ul#title-tabs li {
623 display:block;
624 float:left;
625 margin-right:40px;
626 border-bottom: 3px solid transparent;
627}
628ul#title-tabs li.selected {
629 border-bottom: 3px solid #93C;
630}
631ul#title-tabs li a {
632 color:#333;
633}
634ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800635ul#title-tabs li a:active {
636 color:#93C !important;
637}
638
639
Scott Maine4d8f1b2012-06-21 18:03:05 -0700640
641/* content body */
642@-webkit-keyframes glowheader {
643 from {
644 background-color: #33b5e5;
645 color: #000;
646 border-bottom-color: #000; }
647
648 to {
649 background-color: transparent;
650 color: #33b5e5;
651 border-bottom-color: #33b5e5; } }
652
653@-moz-keyframes glowheader {
654 from {
655 background-color: #33b5e5;
656 color: #000;
657 border-bottom-color: #000; }
658
659 to {
660 background-color: transparent;
661 color: #33b5e5;
662 border-bottom-color: #33b5e5; } }
663
664@keyframes glowheader {
665 from {
666 background-color: #33b5e5;
667 color: #000;
668 border-bottom-color: #000; }
669
670 to {
671 background-color: transparent;
672 color: #33b5e5;
673 border-bottom-color: #33b5e5; } }
674
675h2:target,
676h3:target {
677 -webkit-animation-name: glowheader;
678 -moz-animation-name: glowheader;
679 animation-name: glowheader;
680 -webkit-animation-duration: 0.7s;
681 -moz-animation-duration: 0.7s;
682 animation-duration: 0.7s;
683 -webkit-animation-timing-function: ease-out;
684 -moz-animation-timing-function: ease-out;
685 animation-timing-function: ease-out; }
686
687.design ol h4 {
688 margin-bottom:0;
689}
690.design ol {
691 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700692 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700693 font-size: 14px;
694 line-height: 20px;
695 list-style-type: none;
696 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700697 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700698 content: counter(item) ". ";
699 counter-increment: item;
700 position: absolute;
701 left: -20px;
702 top: 0; }
703 .design ol li.value-1:before {
704 content: "1. "; }
705 .design ol li.value-2:before {
706 content: "2. "; }
707 .design ol li.value-3:before {
708 content: "3. "; }
709 .design ol li.value-4:before {
710 content: "4. "; }
711 .design ol li.value-5:before {
712 content: "5. "; }
713 .design ol li.value-6:before {
714 content: "6. "; }
715 .design ol li.value-7:before {
716 content: "7. "; }
717 .design ol li.value-8:before {
718 content: "8. "; }
719 .design ol li.value-9:before {
720 content: "9. "; }
721 .design ol li.value-10:before {
722 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700723.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700724 list-style-position: inside;
725 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700726 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700727 display: inline;
728 left: -20px;
729 float: left;
730 width: 17px;
731 color: #33b5e5;
732 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700733.design .with-callouts ul>li {
734 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700735
736/* special list items */
737li.no-bullet {
738 list-style-type: none !important; }
739li.no-bullet *{
740 margin:0; }
741
742.design li.with-icon {
743 position: relative;
744 margin-left: 20px;
745 min-height: 30px; }
746 .design li.with-icon p {
747 margin-left: 0 !important; }
748 .design li.with-icon:before {
749 position: absolute;
750 left: -40px;
751 top: 0;
752 content: '';
753 width: 30px;
754 height: 30px; }
755 .design li.with-icon.tablet:before {
756 background-image: url(../images/styles/ico_phone_tablet.png); }
757 .design li.with-icon.web:before {
758 background-image: url(../images/styles/ico_web.png); }
759 .design li.with-icon.action:before {
760 background-image: url(../images/styles/ico_action.png); }
761 .design li.with-icon.use:before {
762 background-image: url(../images/styles/ico_use.png); }
763
764/* figures and callouts */
765.figure {
766 position: relative; }
767 .figure.pad-below {
768 margin-bottom: 20px; }
769 .figure .figure-callout {
770 position: absolute;
771 color: #fff;
772 font-weight: 500;
773 font-size: 16px;
774 line-height: 23px;
775 text-align: center;
776 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
777 padding-right: 2px;
778 width: 30px;
779 height: 29px;
780 z-index: 1000; }
781 .figure .figure-callout.top {
782 top: -9px; }
783 .figure .figure-callout.right {
784 right: -5px; }
785
786.figure-caption {
787 margin: 0 10px 20px 0;
788 font-size: 14px;
789 line-height: 20px;
790 font-style: italic; }
791
792/* rows of figures */
793.figure-row {
794 font-size: 0;
795 line-height: 0;
796 /* to prevent space between figures */ }
797 .figure-row .figure {
798 display: inline-block;
799 vertical-align: top; }
800 .figure-row .figure + .figure {
801 margin-left: 10px;
802 /* reintroduce space between figures */ }
803
804/* video containers */
805.framed-galaxynexus-land-span-13 {
806 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
807scroll top left;
808 padding: 42px 122px 62px 126px;
809 overflow: hidden; }
810 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
811.framed-galaxynexus-land-span-13 img {
812 width: 512px;
813 height: 286px; }
814
Robert Lyd78354d2012-11-01 17:09:52 -0700815
816.framed-galaxynexus-land-span-8{
817 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
818scroll top left;
819 padding: 26px 68px 38px 72px;
820 overflow: hidden; }
821 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
822.framed-galaxynexus-land-span-8 img {
823 width: 320px;
824 height: 180px; }
825
Scott Maine4d8f1b2012-06-21 18:03:05 -0700826.framed-galaxynexus-port-span-9 {
827 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
828scroll top left;
829 padding: 95px 122px 107px 124px;
830 overflow: hidden; }
831 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
832.framed-galaxynexus-port-span-9 img {
833 width: 274px;
834 height: 488px; }
835
836.framed-galaxynexus-port-span-5 {
837 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
838scroll top left;
839 padding: 75px 31px 76px 33px;
840 overflow: hidden; }
841 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
842.framed-galaxynexus-port-span-5 img {
843 width: 216px;
844 height: 384px; }
845
846/* landing page disclosures */
847.landing-page-link {
848 text-decoration: none;
849 font-weight: 500;
850 color: #333333; }
851 .landing-page-link:after {
852 content: '';
853 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
854 width: 10px;
855 height: 10px;
856 display: inline-block;
857 margin-left: 5px; }
858
859/* tooltips */
860.tooltip-box {
861 position: absolute;
862 background-color: rgba(0, 0, 0, 0.9);
863 border-radius: 2px;
864 font-size: 14px;
865 line-height: 20px;
866 color: #fff;
867 padding: 6px 10px;
868 max-width: 250px;
869 z-index: 10000; }
870 .tooltip-box.below:after {
871 position: absolute;
872 content: '';
873 line-height: 0;
874 display: block;
875 top: -10px;
876 left: 5px;
877 border: 5px solid transparent;
878 border-bottom-color: rgba(0, 0, 0, 0.9); }
879
880/* video note */
881.video-instructions {
882 margin-top: 10px;
883 margin-bottom: 10px; }
884 .video-instructions:before {
885 content: '';
886 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
887 display: inline-block;
888 width: 12px;
889 height: 12px;
890 margin-right: 8px; }
891 .video-instructions:after {
892 content: 'Click device screen to replay movie.'; }
893
894/* download buttons */
895.download-button {
896 display: block;
897 margin-bottom: 5px;
898 text-decoration: none;
899 background-color: #33b5e5;
900 color: #fff !important;
901 font-weight: 500;
902 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
903 padding: 6px 12px;
904 border-radius: 2px; }
905 .download-button:hover, .download-button:focus {
906 background-color: #0099cc;
907 color: #fff !important; }
908 .download-button:active {
909 background-color: #006699; }
910
911/* UI tables and other things found in Writing style and Settings pattern */
912.ui-table {
913 width: 100%;
914 background-color: #282828;
915 color: #fff;
916 border-radius: 2px;
917 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
918 border-collapse: separate; }
919 .ui-table th,
920 .ui-table td {
921 padding: 5px 10px;
922 background-color: inherit;
923 border:0;}
924 .ui-table thead th {
925 font-weight: bold; }
926 .ui-table tfoot td {
927 border-top: 1px solid #494949;
928 border-right: 1px solid #494949;
929 text-align: center; }
930 .ui-table tfoot td:last-child {
931 border-right: 0; }
932
933.layout-with-list-item-margins {
934 margin-left: 30px !important; }
935
936.emulate-content-left-padding {
937 margin-left: 10px; }
938
939.do-dont-label {
940 margin-bottom: 10px;
941 padding-left: 20px;
942 background: transparent none no-repeat scroll 0px 3px; }
943 .do-dont-label.bad {
944 background-image: url(../images/styles/ico_wrong.png); }
945 .do-dont-label.good {
946 background-image: url(../images/styles/ico_good.png); }
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966/***** PREVIOUSLY style.css ******************/
967
968
969
970
971
972@media screen, projection, print {
973[dir='rtl'] {
974 direction: rtl;
975}
976html {
977 line-height: 20px;
978}
979pre, table, input, textarea, code {
980 font-size: 1em;
981}
982address, abbr, cite {
983 font-style: normal;
984}
985[dir='rtl'] th {
986 text-align: right;
987}
988html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
989html[lang^=zh] blockquote, html[lang^=zh] q {
990 font-style: normal;
991}
992q {
993 font-style: italic;
994}
995fieldset, iframe, img {
996 border: 0;
997}
998img {
Scott Mainb7f96372013-02-07 16:56:43 -0800999 -ms-interpolation-mode: bicubic;
1000 vertical-align: middle;
1001 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001002}
1003q {
1004 quotes: none;
1005}
1006sup, sub {
1007 font-size: 11px;
1008 line-height: 0;
1009}
1010}
1011
1012@media screen, projection {
1013
1014table, fieldset {
1015 margin: 0;
1016}
1017h1 {
1018 color:#333;
1019 font-size: 22px;
1020 margin: 20px 0 20px;
1021 padding:0 0 10px;
1022}
1023h1, h2 {
1024 line-height: 32px;
1025}
1026h1.short {
1027 margin-right:320px;
1028}
1029h1.short {
1030 margin-right:320px;
1031}
1032h1.super {
Scott Mainb7f96372013-02-07 16:56:43 -08001033 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001034}
1035h2 {
1036 color:#333;
1037 font-size: 20px;
1038 margin: 20px 0 20px;
1039 padding:0;
1040}
1041h3 {
1042 color:#333;
1043 font-size: 18px;
1044}
1045h3, h4 {
1046 color:#333;
1047 line-height: 20px;
1048 margin: 10px 0;
1049}
1050h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001051 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001052}
1053h5 {
Scott Mainb7f96372013-02-07 16:56:43 -08001054 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001055}
1056h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001057 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001058}
1059h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001060 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001061}
1062hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001063 height: 1px;
1064 margin: 5px 0 20px;
1065 border: 0;
1066 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001067}
1068p, pre, table, form {
1069 margin: 0 0 15px;
1070}
1071small {
Scott Mainb7f96372013-02-07 16:56:43 -08001072 font-size: 11.5px;
1073 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001074}
1075ul, ol {
1076 margin: 0 0 15px 18px;
1077 padding: 0;
1078}
1079[dir='rtl'] ul, [dir='rtl'] ol {
1080 margin: 10px 30px 10px 10px;
1081}
1082ul ul, ul ol, ol ul, ol ol {
1083 margin-bottom: 0;
1084 margin-top: 0;
1085}
1086li {
Scott Main52948fc2012-09-18 11:27:59 -07001087 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001088}
1089dd {
1090 margin:0 0 10px 30px;
1091}
Scott Maina07be8e2013-03-06 12:12:21 -08001092dd p,
1093dd pre,
1094dd ul,
1095dd ol,
1096dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001097 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001098}
Scott Maindb3678b2012-10-23 14:13:41 -07001099li p,
1100li pre,
1101li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001102li ol,
1103li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001104 margin-top:5px;
1105 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001106}
1107pre strong, pre b, a strong, a b, a code {
1108 color: inherit;
1109}
1110pre, code {
1111 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001112 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001113}
1114code {
1115 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001116 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001117}
1118
1119legend {
1120 display: none;
1121}
1122a:link, a:visited {
1123 color: #258aaf;
1124 text-decoration: none;
1125}
1126a:focus, a:hover, a:active {
1127 color: #33B5E5;
1128 text-decoration: none;
1129}
1130strong, b {
1131 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001132 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001133}
1134table {
1135 border-collapse: collapse;
1136 border-spacing: 0;
1137 border:0;
1138 margin: .5em 1em 1em 0;
1139 width:100%; /* consistent table widths; within IE's quirks */
1140 background-color:#f7f7f7;
1141}
1142th, td {
1143 padding: 4px 12px;
1144 vertical-align: top;
1145 text-align: left;
1146}
1147td {
1148 background-color:inherit;
1149 border:solid 1px #DDD;
1150}
Scott Maineb410352013-01-14 19:03:40 -08001151td *:last-child {
1152 margin-bottom:0;
1153}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001154th {
1155 background-color: #999;
1156 color: #fff;
1157 border:solid 1px #DDD;
1158 font-weight: normal;
1159}
1160tr:first-of-type th:first-of-type:empty {
1161 visibility: hidden;
1162}
1163/* --------------------------------------------------------------------------
1164Footer
1165*/
1166.line {
1167 clear: both;
1168 background: #acbc00;
1169 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1170 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1171color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1172 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1173 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1174 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1175 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1176 height: 2px;
1177 margin-top: 150px;
1178 position: relative;
1179 z-index: 11;
1180}
1181#footer {
1182 font-size:11px;
1183 clear: both;
1184 color: #999;
1185 padding: 15px 0;
1186 margin-top:10px;
1187 width:auto;
1188}
1189#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001190 list-style: none;
1191 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001192}
1193#footer-local li {
1194 display: inline;
1195}
1196#footer-local li+li:before {
1197 content: '|';
1198 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001199 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001200}
1201#footer-global {
1202 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001203 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001204}
1205#footer-global {
1206 border-top: 1px solid #ebebeb;
1207 font-size: 11.5px;
1208 line-height: 1.8;
1209 list-style: none;
1210}
1211#footer-global ul {
1212 margin: 0;
1213}
1214#footer-global li {
1215 display: inline;
1216 font-weight: bold;
1217}
1218#footer-global li+li:before {
1219 content: '¬?';
1220 padding: 0 3px;
1221}
1222* html #footer-global li {
1223 margin: 0 13px 0 0;
1224}
1225* [dir='rtl'] #footer-global li {
1226 margin: 0 0 0 13px;
1227}
1228*+html #footer-global li {
1229 margin: 0 13px 0 0;
1230}
1231*+[dir='rtl'] #footer-global li {
1232 margin: 0 0 0 13px;
1233}
1234#footer-global li a {
1235 font-weight: normal;
1236}
1237.locales {
1238 margin: 10px 0 0 0px;
1239}
1240[dir='rtl'] .locales {
1241 background-position: right center;
1242 float: left;
1243 padding: 0 24px 0 0;
1244}
1245.locales form {
Scott Mainb7f96372013-02-07 16:56:43 -08001246 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001247}
1248.locales select, .sites select {
1249 line-height: 3.08;
1250 margin: 0px 0;
1251 border: solid 1px #EBEBEB;
1252 -webkit-appearance: none;
1253 background: white url('../images/arrows-up-down.png') right center no-repeat;
1254 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001255 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001256 line-height: normal;
1257 padding: 5px;
1258 width: 230px;
1259}
1260}
1261
1262/* =============================================================================
1263 Print Only
1264 ========================================================================== */
1265@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001266 /* configure printed page */
1267 @page {
1268 margin: 0.75in 1in;
1269 widows: 4;
1270 orphans: 4;
1271 }
1272
1273 /* reset spacing metrics */
1274 html, body, .wrap {
1275 margin: 0 !important;
1276 padding: 0 !important;
1277 width: auto !important;
1278 }
1279
1280 /* leave enough space on the left for bullets */
1281 body {
1282 padding-left: 20px !important;
1283 }
1284 #doc-col {
1285 margin-left: 0;
1286 }
1287
1288 /* hide a bunch of non-content elements */
1289 #header, #footer, #nav-x, #side-nav,
1290 .training-nav-top, .training-nav-bottom,
1291 #doc-col .content-footer,
1292 .nav-x, .nav-y,
1293 .paging-links,
1294 a.totop {
1295 display: none !important;
1296 }
1297
1298 /* remove extra space above page titles */
1299 #doc-col .content-header {
1300 margin-top: 0;
1301 }
1302
1303 /* bump up spacing above subheadings */
1304 h2 {
1305 margin-top: 40px !important;
1306 }
1307
1308 /* print link URLs where possible and give links default text color */
1309 p a:after {
1310 content: " (" attr(href) ")";
1311 font-size: 80%;
1312 }
1313 p a {
1314 word-wrap: break-word;
1315 }
1316 a {
1317 color: inherit;
1318 }
1319
1320 /* syntax highlighting rules */
1321 .str { color: #060; }
1322 .kwd { color: #006; font-weight: bold; }
1323 .com { color: #600; font-style: italic; }
1324 .typ { color: #404; font-weight: bold; }
1325 .lit { color: #044; }
1326 .pun { color: #440; }
1327 .pln { color: #000; }
1328 .tag { color: #006; font-weight: bold; }
1329 .atn { color: #404; }
1330 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001331}
1332
1333/* =============================================================================
1334 Columns
1335 ========================================================================== */
1336
1337@media screen, projection, print {
1338.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001339 padding: 2.5em 0;
1340 border-top: solid 1px #ddd;
1341 border-bottom: solid 1px #ddd;
1342 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001343}
1344.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001345 margin: 0 auto;
1346 width: 940px;
1347 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001348}
1349.cols {
1350 height: 1%;
1351 margin: 0 -1.533742331288343558282%;
1352 width: 103.06748466257669%}
1353*+html .cols {
1354 margin-bottom: 20px;
1355}
1356.cols:after {
1357 clear: both;
1358 content: ' ';
1359 display: block;
1360 height: 0;
1361 visibility: hidden;
1362}
1363.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1364.col-13, .col-14, .col-15, .col-16 {
1365 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001366 float: left;
1367 margin-left: 10px;
1368 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001369}
1370/*
1371* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1372.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1373 margin: 0;
1374 padding: 0 1.4% 20px;
1375}
1376[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1377[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1378[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1379 float: right;
1380}
1381*/
1382.col-1 { width: 40px }
1383.col-2 { width: 100px }
1384.col-3 { width: 160px }
1385.col-4 { width: 220px }
1386.col-5 { width: 280px }
1387.col-6 { width: 340px }
1388.col-7 { width: 400px }
1389.col-8 { width: 460px }
1390.col-9 { width: 520px }
1391.col-10 { width: 580px }
1392.col-11 { width: 640px }
1393.col-12 { width: 700px }
1394.col-13 { width: 760px }
1395.col-14 { width: 820px }
1396.col-15 { width: 880px }
1397.col-16 { width: 940px }
1398}
1399
1400.col-right {
1401 margin-right:0px;
1402}
1403
1404@media screen and (max-width:772px) {
1405.col-5, .col-6, .col-7 {
1406 clear: both;
1407 width: 97.0238096%}
1408}
1409
1410/* =============================================================================
1411 Layout
1412 ========================================================================== */
1413@media screen, projection, print {
1414
1415/* --------------------------------------------------------------------------
1416Header, Login, Nav-X, Search
1417*/
1418#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001419 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001420}
1421#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001422 content: "";
1423 display: table;
1424 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001425}
1426.logo, .nav-x {
1427 float: left;
1428}
1429.nav-x {
1430 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001431 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001432}
1433.nav-x a {
1434 color: #333;
1435 font-size: 16px;
1436}
1437.design a.selected {
1438 color: #33b5e5;
1439}
1440.develop a.selected {
1441 color: #F80;
1442}
1443.distribute a.selected {
1444 color: #9C0;
1445}
1446
1447
1448
1449.nav-x li {
1450 display: inline;
1451 margin-right: 45px;
1452}
1453.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001454 float: right;
1455 position: relative;
1456 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001457}
1458.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001459 position: absolute;
1460 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001461}
1462.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001463 width: 220px;
1464 height: 1px;
1465 top: 24px;
1466 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001467}
Scott Mainb7f96372013-02-07 16:56:43 -08001468.search .left, .search .right {
1469 height: 5px;
1470 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001471}
Scott Mainb7f96372013-02-07 16:56:43 -08001472.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001473.search .right { top: 19px; right: 0 }
1474.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001475 float: left;
1476 margin-top: 2px;
1477 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001478}
1479.search .close,
1480#player-frame .close {
1481 position: absolute;
1482 right: 8px;
1483 bottom: 4px;
1484 width: 16px;
1485 height: 16px;
1486 margin: 0;
1487 text-indent: -1000em;
1488 background: url(../images/close.png) no-repeat 0 0;
1489 z-index:9999;
1490}
1491.search .close:hover, .search .close:focus,
1492#player-frame .close:hover, #player-frame .close:focus {
1493 background-position: -16px 0;
1494 cursor:pointer;
1495}
1496#player-frame .close {
1497 top: 6px;
1498}
1499.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001500 color: #999;
1501 font-size: 1em;
1502 width: inherit;
1503 border: none;
1504 margin: 0;
1505 padding:0 0 0 6px;
1506 z-index: 1500;
1507 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001508}
1509.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001510 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001511}
1512.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001513 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001514}
1515.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001516 color: #222;
1517 font-weight: bold;
1518 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001519}
1520/* Search Dropdown */
1521.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001522 padding: 15px;
1523 width: 192px;
1524 border: solid 1px #c5c5c5;
1525 background: #fff;
1526 position: absolute;
1527 top: 35px;
1528 left: 0;
1529 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1530 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1531 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001532}
1533.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001534 list-style-type: none;
1535 margin: 0;
1536 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001537}
1538.search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001539 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001540}
1541.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001542 float: left;
1543 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001544}
1545.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001546 color: #222;
1547 margin: 0;
1548 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001549}
1550.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001551 color: #999;
1552 font-size: 11.5px;
1553 line-height: normal;
1554 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001555}
1556.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001557 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001558}
1559/* --------------------------------------------------------------------------
1560Buttons
1561*/
1562.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001563 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001564 -webkit-border-radius: 2px;
1565 -moz-border-radius: 2px;
1566 border-radius: 2px;
1567 cursor: pointer;
1568}
1569.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001570 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001571 background-color: #09c;
1572 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1573 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1574 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1575 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1576 background-image: -o-linear-gradient(top, #2faddb, #09c);
1577 background-image: linear-gradient(top, #2faddb, #09c);
1578 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1579 border: 1px solid #3990ab;
1580 color: #fff;
1581}
1582.button-secondary, a.button-secondary {
1583 background-color: #f3f3f3;
1584 border: 1px solid #dcdcdc;
1585 color: #444;
1586}
1587a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001588 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001589 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001590 min-width: 54px;
1591 outline: 0;
1592 padding: 8px 15px;
1593 text-align: center;
1594}
1595.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001596 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001597 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001598 min-width: 54px;
1599 outline: 0;
1600 padding: 0 15px;
1601 text-align: center;
1602}
1603.button:hover, a.button:hover {
1604 border-color: #09c;
1605 background-color: #4cadcb;
1606 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1607 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1608 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1609 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1610 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1611 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1612 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1613EndColorStr='#4cadcb',GradientType=0);
1614 color: #fff !important;
1615}
1616.button:active, a.button:active {
1617 background-color: #1e799a;
1618 background-image: none;
1619 border-color: #30b7e6;
1620}
Scott Maindb3678b2012-10-23 14:13:41 -07001621a.button.big.subtitle {
1622 line-height:18px;
1623}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001624.button-secondary:hover, a.button-secondary:hover {
1625 border-color: #dbdbdb;
1626 background-color: #f3f3f3;
1627 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1628 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1629 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1630 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1631 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1632 background-image: linear-gradient(top, #f9f9f9, #ececec);
1633 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1634EndColorStr='#ececec');
1635 color: #33B5E5 !important;
1636}
1637.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001638 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001639 background: #ebebeb; /* Old browsers */
1640 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1641 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001642url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1643Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1644eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1645CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1646eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1647YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1648CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1649CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1650CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1651CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1652R3JhZGllbnQ+
1653CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1654Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001655 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001656#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001657 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001658color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1659/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001660 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700166190%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001662 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001663100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001664 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001665100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001666 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001667100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001668 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001669endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001670 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1671 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1672 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1673 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001674}
1675.button.big {
1676 font-size:20px;
1677 display:inline-block;
1678}
Scott Maindb3678b2012-10-23 14:13:41 -07001679.button.big span.small {
1680 font-size:14px;
1681}
1682.button-caption {
1683 margin-top:10px;
1684 font-size:12px;
1685 font-style:italic;
1686}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001687
1688.button.disabled,
1689.button.disabled:hover,
1690.button.disabled:active {
1691 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001692 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001693 border-color:#999;
1694 cursor:default;
1695}
1696
1697.training-nav-top a.button-secondary,
1698.training-nav-bottom a.button-secondary {
1699 display:block;
1700 float:left;
1701 margin:0;
1702 width:130px;
1703 text-transform:uppercase;
1704 font-weight:bold;
1705
1706 background-color: #f3f3f3;
1707 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1708 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1709 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1710 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1711 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1712 background-image: linear-gradient(top, #f9f9f9, #ececec);
1713 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1714EndColorStr='#ececec');
1715 color: #33B5E5;
1716}
1717
1718.training-nav-top a.button-secondary:hover,
1719.training-nav-bottom a.button-secondary:hover {
1720 background-color: #09c;
1721 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1722 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1723 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1724 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1725 background-image: -o-linear-gradient(top, #2faddb, #09c);
1726 background-image: linear-gradient(top, #2faddb, #09c);
1727 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1728 border: 1px solid #3990ab;
1729 color: #fff !important;
1730}
1731
1732.training-nav-top a.button-secondary.last,
1733.training-nav-bottom a.button-secondary.last {
1734 border-left:0;
1735}
1736
1737.training-nav-top a.button-secondary.double-size,
1738.training-nav-bottom a.button-secondary.double-size {
1739 width:291px;
1740}
1741
1742.training-nav-top,
1743.training-nav-bottom {
1744 float:right;
1745 margin:0 0 0 20px;
1746}
1747
1748.training-nav-bottom {
1749 padding:0 0 20px;
1750}
1751
1752#tb-wrapper,
1753#qv-wrapper {
1754 float:right;
1755 clear:right;
1756 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1757 padding:0 0 20px;
1758}
1759
1760#tb,
1761#qv {
1762 font-size:13px;
1763 line-height:18px;
1764 width:238px;
1765 border:1px solid #ccc;
1766 float:right;
1767}
1768
1769#tb {
1770 width:278px;
1771}
1772
1773#tb h2,
1774#qv h2 {
1775 margin:10px 15px;
1776 padding:0;
1777 text-transform:uppercase;
1778 border-bottom:1px solid gainsboro;
1779}
1780
1781#tb *,
1782#qv * {
1783 font-size:inherit;
1784}
1785
1786#tb .download-box {
1787 padding:0 0 0 15px;
1788}
1789
1790#tb .download-box .filename {
1791 font-size:11px;
1792 margin:4px 4px 10px;
1793 color:#666;
1794}
1795
1796
1797/* Dev guide quicknav */
1798
1799.sidebox-wrapper {
1800 float:right;
1801 clear:right;
1802 margin:0 0 0 20px;
1803 padding:0 0 20px;
1804}
1805
1806.sidebox {
1807 width:226px;
1808 font-size:13px;
1809 line-height:18px;
1810 border-left:4px solid #99CC00;
1811 float:right;
1812 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001813 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001814}
1815
1816.sidebox h2,
1817.sidebox h3,
1818.sidebox h4,
1819.sidebox h5 {
1820 font-weight:bold;
1821 margin:0 0 10px;
1822}
1823
1824.sidebox * {
1825 font-size:inherit;
1826}
1827
1828#tb ol,
1829#tb ul,
1830#qv ul {
1831 margin:0 15px 10px 35px;
1832}
1833
1834#qv ol {
1835 list-style:none;
1836 margin:0 15px 15px;
1837 font-size:inherit;
1838 line-height:inherit;
1839}
1840
1841#tb ol ol,
1842#tb ul ul,
1843#qv ol ol,
1844#qv ul ul,
1845.sidebox ol ol,
1846.sidebox ul ul {
1847 margin-bottom:0;
1848}
1849
1850#qv ol ol {
1851 margin:3px 0 3px 15px;
1852}
1853
1854.sidebox p,
1855#qv p,
1856#tb p {
1857 margin: 0 0 10px;
1858}
1859
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001860/* related resources blocks in checklists */
1861
1862.rel-resources {
1863 margin:10px 0px;
1864 border:1px solid #ccc;
1865 background-color:rgba(0, 0, 0, 0.027451);
1866 border:1px solid #ccc;
1867 font-size:13px;
1868 color:#6f6f6f;
1869}
1870
1871.rel-resources ul {
1872padding: .5em 1em 0 1em;
1873}
1874
1875.rel-resources a {
1876font-weight:500;
1877}
1878
1879.rel-resources h3 {
1880 margin:4px 15px 0px 15px;
1881 font-size:13px;
1882 font-weight:600;
1883 text-transform:uppercase;
1884}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001885
1886/* --------------------------------------------------------------------------
1887Form
1888*/
1889.article form {
1890 margin: 0 0 20px;
1891}
1892.article form .form-required {
1893 color: #dd4b39;
1894}
1895.article form fieldset {
1896 margin: 0 0 20px;
1897 padding: 0;
1898}
1899.article form legend {
1900 display: block;
1901 line-height: 1.5;
1902 margin: 0;
1903 padding: 0;
1904}
1905/*
1906.article form ol, .article form ul {
1907 margin: 0 0 0 1em;
1908 padding: 0 0 0 1em;
1909}
1910[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1911 margin: 0 1em 0 0;
1912 padding: 0 1em 0 0;
1913}
1914.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1915ul ul {
1916 list-style: none;
1917 margin: 0;
1918 padding: 0;
1919}
1920.article form li {
1921 margin: 0 0 20px;
1922}
1923.article form li li {
1924 margin: 0 0 5px;
1925}
1926*/
1927.article form label {
1928 display: block;
1929 margin: 0 0 5px;
1930 padding: 0;
1931}
1932.article form input[type='text'], .article form select, .article form textarea, .article form
1933.checkbox-group, .article form .radio-group {
1934 margin-bottom: 15px;
1935}
1936.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001937 width: 13px;
1938 height: 13px;
1939 background: #fff;
1940 border: solid 1px #c6c6c6;
1941 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001942}
1943.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08001944 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07001945}
1946.article form select {
1947 border: solid 1px #ebebeb;
1948 border-top-color: #ddd;
1949 -webkit-appearance: none;
1950 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1951 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001952 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001953 line-height: normal;
1954 padding: 5px;
1955 width: 130px;
1956}
1957
1958.article form .browse .browse-msg {
Scott Mainb7f96372013-02-07 16:56:43 -08001959 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001960}
1961.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001962 height: auto;
1963 line-height: 25px;
1964 font-size: 11px;
1965 padding: 0 8px;
1966 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001967}
1968.article form input[type='text'], .article form textarea {
1969 border: 1px solid #ebebeb;
1970 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001971 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001972 line-height: normal;
1973 padding: 6px 10px;
Scott Mainb7f96372013-02-07 16:56:43 -08001974 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001975}
1976.article form textarea {
1977 height: 150px;
1978}
1979.article form input[type='text']:focus, .article form textarea:focus {
1980 border-color: #33B5E5;
1981 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1982 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1983 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1984 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1985 outline: 0;
1986}
1987.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1988 color: #999;
1989}
1990.article form input[type='text'][disabled], .article form textarea[disabled] {
1991 background-color: #ebebeb;
1992}
1993form .form-error input[type='text'], form .form-error textarea {
1994 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08001995 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001996}
1997.aside {
1998 -moz-border-radius: 2px;
1999 -webkit-border-radius: 2px;
2000 border-radius: 2px;
2001 margin: 10px 0;
2002 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002003 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002004 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002005 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002006}
2007/*
2008.aside, .notification, .promo {
2009 -moz-border-radius: 2px;
2010 -webkit-border-radius: 2px;
2011 border-radius: 2px;
2012 margin: 10px 0;
2013 padding: 10px;
2014 position: relative;
2015}
2016.aside>:first-child, .notification>:first-child, .promo>:first-child {
2017 margin-top: 0;
2018}
2019.aside>:last-child, .notification>:last-child, .promo>:last-child {
2020 margin-bottom: 0;
2021}
2022.aside {
2023 background: #f9f9f9;
2024}
2025.notification {
2026 background: #fffbe4;
2027 border-color: #f8f6e6;
2028}
2029.promo {
2030 background: #f6f9ff;
2031 border-color: #eff2f9;
2032}
2033*/
Scott Maindb3678b2012-10-23 14:13:41 -07002034
2035/* SDK TOS styles */
2036
2037div.sdk-terms {
2038 white-space: pre-wrap;
2039 word-wrap: break-word;
2040 font-family: inherit;
2041 font-size: inherit;
2042 padding: 10px;
2043 height: 370px;
2044 width: 738px;
2045 border: 1px solid #444;
2046 background: transparent;
2047 overflow:auto;
2048 margin:0 0 10px;
2049}
2050
2051div.sdk-terms.fullsize {
2052 padding: 0;
2053 height: auto;
2054 width: auto;
2055 border:none;
2056}
2057
2058div.sdk-terms h3,
2059div.sdk-terms h2 {
2060 margin:0;
2061}
2062
2063div#sdk-terms-form {
2064 padding:0 0 0 10px;
2065}
2066
Scott Main11ac05b2012-11-15 14:57:44 -08002067div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002068 display:inline;
2069 margin:4px 4px 4px 0;
2070}
2071
2072
Scott Maine4d8f1b2012-06-21 18:03:05 -07002073/* --------------------------------------------------------------------------
2074Code Style
2075*/
2076pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002077 margin:0 0 1em 0;
2078 padding: 1em;
2079 overflow: auto;
2080 border: solid 1px #ddd;
Scott Mainb7f96372013-02-07 16:56:43 -08002081 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002082}
2083.str { color: #080; }
2084.kwd { color: #008; }
2085.com { color: #800; }
2086.typ { color: #606; }
2087.lit { color: #066; }
2088.pun { color: #660; }
2089.pln { color: #000; }
2090.tag { color: #008; }
2091.atn { color: #828; }
2092.atv { color: #080; }
2093.dec { color: #606; }
2094
2095/* --------------------------------------------------------------------------
2096Three-Pane
2097*/
2098/* Package Nav & Classes Nav */
2099.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002100 position: relative;
2101 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002102}
2103#packages-nav .js-pane,
2104#classes-nav .js-pane {
2105 overflow:visible;
2106}
2107#packages-nav {
2108 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002109 max-height: inherit;
2110 overflow: hidden;
2111 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002112}
2113#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002114 overflow: hidden;
2115 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002116}
2117#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002118 list-style-type: none;
2119 margin: 10px 0 20px 0;
2120 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002121}
2122#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002123 font-weight: bold;
2124 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002125}
2126#packages-nav li,
2127#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002128 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002129}
2130#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2131#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002132 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002133}
2134#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2135#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2136#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002137 color: #222;
2138 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002139}
2140#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2141#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002142 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002143}
2144#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2145a:visited,
2146#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2147a:visited,
2148#nav-tree li div.selected {
2149 font-weight: 500;
2150 color: #0099cc;
2151 background-color:#fff; }
2152 #packages-nav li.selected ul li a,
2153 #classes-nav li.selected ul li a {
2154 /* don't highlight child items */
2155 color: #555555; }
2156#nav-tree li div.selected a {
2157 font-weight: 500;
2158 color: #0099cc;
2159}
2160#nav-swap {
2161 height:30px;
2162 border-top:1px solid #ccc;
2163}
2164#nav-swap a {
2165 display:inline-block;
2166 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002167 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002168 font-size: 12px;
2169 padding: 5px 0 5px 5px;
2170}
2171
2172#nav-swap .fullscreen {
2173 float: right;
2174 width: 24px;
2175 height: 24px;
2176 text-indent: -1000em;
2177 padding:0;
2178 margin:3px 5px 0;
2179 background: url(../images/fullscreen.png) no-repeat -24px 0;
2180}
2181#nav-swap .fullscreen.disabled {
2182 background-position: 0 0;
2183}
2184#nav-swap .fullscreen:hover,
2185#nav-swap .fullscreen:focus {
2186 cursor:pointer;
2187}
2188
2189
2190/* nav tree */
2191#side-nav, #devdoc-nav, #swapper,
2192#nav-tree, #tree-list {
2193 overflow:hidden;
2194 margin-left:0;
2195}
2196
2197#nav-tree ul {
2198 list-style:none;
2199 padding:0;
2200 margin:10px 0;
2201}
2202
2203#nav-tree ul li div {
2204 padding:0 0 0 4px;
2205}
2206
2207#side-nav #nav-tree ul li a,
2208#side-nav #nav-tree ul li span.no-children {
2209 padding: 0;
2210 margin: 0;
2211}
2212
2213#nav-tree .plus {
2214 margin: 0 3px 0 0;
2215}
2216
2217#nav-tree ul ul {
2218 list-style: none;
2219 margin: 0;
2220 padding: 0 0 0 0;
2221}
2222
2223#nav-tree ul li {
2224 margin: 0;
2225 padding: 0 0 0 0;
2226 white-space: nowrap;
2227}
2228
2229#nav-tree .children_ul {
2230 padding:0;
2231 margin:0;
2232}
2233#nav-tree .children_ul li div {
2234 padding:0 0 0 10px;
2235}
2236#nav-tree .children_ul .children_ul li div {
2237 padding:0 0 0 20px;
2238}
2239
2240#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002241 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002242 text-decoration: none;
2243}
2244
2245#nav-tree span.label {
2246 width: 100%;
2247}
2248
2249#nav-tree {
2250 overflow-x: auto;
2251 overflow-y: scroll;
2252 outline:0;
2253}
2254
2255
2256/* Content */
2257#doc-col {
2258 margin-right:0;
2259}
2260#doc-content-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002261 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002262}
2263#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002264 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002265}
2266#doc-header {
Scott Mainb7f96372013-02-07 16:56:43 -08002267 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002268}
2269#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002270 line-height: 0;
2271 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002272}
2273#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002274 float: right;
2275 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002276}
2277#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002278 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002279}
2280#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002281 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002282}
2283#api-nav-header {
2284 height:19px; /* plus 16px padding = 35; same as #nav li */
2285 font-size:14px;
2286 padding: 8px 0;
2287 margin: 0;
2288 border-bottom: 1px solid #CCC;
2289 background:#e9e9e9;
2290 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2291
2292}
2293#api-nav-title {
2294 padding:0 5px;
2295 white-space:nowrap;
2296}
2297
2298#api-level-toggle {
2299 float:right;
2300 padding:0 5px;
2301}
2302
2303#api-level-toggle label {
2304 margin:0;
2305 vertical-align:top;
2306 line-height: 19px;
2307 font-size:13px;
2308 height: 19px;
2309}
2310
2311#api-level-toggle .select-wrapper {
2312 width: 35px;
2313 display: inline-block;
2314 overflow: hidden;
2315}
2316#api-level-toggle select {
2317 border: 0;
2318 appearance:none;
2319 -moz-appearance:none;
2320 -webkit-appearance: none;
2321 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002322 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002323 height: 19px;
2324 line-height: 19px;
2325 padding: 0;
2326 margin:1px 0 0 0;
2327 width:150%;
2328 font-size:13px;
2329 vertical-align:top;
2330 outline:0;
2331}
2332
2333
2334/* Toggle for revision notes and stuff */
2335div.toggle-content.closed .toggle-content-toggleme {
2336 display:none;
2337}
2338
2339#jd-content img.toggle-content-img {
2340 margin:0 5px 5px 0;
2341}
Scott Main220c3442012-07-16 15:40:17 -07002342div.toggle-content p {
2343 margin:10px 0 0;
2344}
2345div.toggle-content-toggleme {
2346 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002347}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002348
2349
2350/* API LEVEL FILTERED MEMBERS */
2351
2352.absent,
2353.absent a:link,
2354.absent a:visited,
2355.absent a:hover,
2356.absent * {
2357 color:#bbb !important;
2358 cursor:default !important;
2359 text-decoration:none !important;
2360}
2361#devdoc-nav li.absent.selected,
2362#devdoc-nav li.absent.selected *,
2363#devdoc-nav div.label.absent.selected,
2364#devdoc-nav div.label.absent.selected * {
2365 background-color:#eaeaea !important;
2366}
2367.absent h4.jd-details-title,
2368.absent h4.jd-details-title * {
2369 background-color:#f6f6f6 !important;
2370}
2371.absent img {
2372 opacity: .3;
2373 filter: alpha(opacity=30);
2374 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2375}
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385/* JQUERY RESIZABLE STYLES */
2386.ui-resizable { position: relative; }
2387.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2388.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2389/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2390body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2391.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2392border-bottom: solid 1px #ededed;
2393 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2394/*
2395.ui-resizable-e {
2396cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
23971px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2398*/
2399
2400/* --------------------------------------------------------------------------
2401Lightbox
2402*/
Scott Mainb7f96372013-02-07 16:56:43 -08002403.lightbox {
2404 width: 769px;
2405 padding: 1.5em;
2406 margin: 0 auto;
2407 border: solid 1px #dcdcdc;
2408 background: #fff;
2409 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2410 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2411 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002412}
2413.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002414 float: left;
2415 width: 720px;
2416 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002417}
2418.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002419 float: right;
2420 width: 10px;
2421 height: 10px;
2422 margin: -10px -10px 10px 0;
2423 text-indent: -1000em;
2424 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002425}
2426.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002427 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002428}
2429
2430/* --------------------------------------------------------------------------
2431Misc
2432*/
2433
2434
2435.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002436 content: "";
2437 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002438}
2439.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002440 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002441}
2442.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002443 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002444}
2445table.blank th, table.blank td {
2446 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002447 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002448}
2449.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002450 margin: 0.5em 0 2em 0;
2451 color: #000;
2452 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002453}
2454
2455.nolist {
2456 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002457 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002458}
Scott Main5747d382012-11-30 12:02:42 -08002459#tb .nolist {
2460 margin-left:15px;
2461}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002462
Scott Main8aa725e2013-04-25 10:00:32 -07002463dl.xml>dt {
2464 text-transform:uppercase;
2465}
2466dl.xml dl.attr {
2467 margin-top:0;
2468}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002469
2470pre.classic {
2471 background-color:transparent;
2472 border:none;
2473 padding:0;
2474}
2475
2476p.img-caption {
2477 margin: -10px 0 20px;
2478 font-size:13px;
2479 color:#666;
2480}
2481
Scott Main48dd7f22013-02-21 10:52:02 -08002482div.figure,
2483div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002484 float:right;
2485 clear:right;
2486 margin:10px 0 0 0;
2487 padding:0 0 0 20px;
2488 /* width must be defined w/ an inline style matching the image width */
2489}
2490
Scott Main48dd7f22013-02-21 10:52:02 -08002491div.figure-left {
2492 float:left;
2493 clear:left;
2494 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002495 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002496 /* width must be defined w/ an inline style matching the image width */
2497}
2498
2499img.frame {
2500 border:1px solid #DDD;
2501 padding:4px;
2502}
2503
Scott Maine4d8f1b2012-06-21 18:03:05 -07002504p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002505 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002506 font-size:13px;
2507 color:#666;
2508}
2509
Scott Main24bbcd52012-09-21 14:33:43 -07002510p.code-caption {
2511 margin: 0 0 4px 0;
Scott Maina07be8e2013-03-06 12:12:21 -08002512 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002513 color:#666;
2514}
2515
Scott Main54d2a9b2012-07-24 14:54:32 -07002516div.note,
2517div.caution,
2518div.warning {
2519 margin: 0 0 15px;
2520}
2521
Scott Maine4d8f1b2012-06-21 18:03:05 -07002522p.note, div.note,
2523p.caution, div.caution,
2524p.warning, div.warning {
2525 padding: 0 0 0 10px;
2526 border-left: 4px solid;
2527}
2528
Scott Main24bbcd52012-09-21 14:33:43 -07002529p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002530 border-color: #258AAF;
2531}
2532
Scott Main24bbcd52012-09-21 14:33:43 -07002533p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002534 border-color: #FF8800;
2535}
2536
Scott Main24bbcd52012-09-21 14:33:43 -07002537p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002538 border-color: #ff4443;
2539}
2540
Scott Main412eaf22012-06-22 14:36:33 -07002541div.note.design {
2542 border-left: 4px solid #33B5E5;
2543}
2544
2545div.note.develop {
2546 border-left: 4px solid #F80;
2547}
2548
2549div.note.distribute {
2550 border-left: 4px solid #9C0;
2551}
2552
2553.note p, .caution p, .warning p {
2554 margin:0 0 5px;
2555}
2556
2557.note p:last-child, .caution p:last-child, .warning p:last-child {
2558 margin-bottom:0;
2559}
2560
Scott Main5b5ff1a2012-09-12 10:29:45 -07002561body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002562 display:block;
2563 float:right;
2564 width:280px;
2565 font-size:20px;
2566 font-style:italic;
2567 line-height:24px;
2568 color:#33B5E5;
2569 margin:0 0 20px 30px;
2570}
2571
Scott Maine4d8f1b2012-06-21 18:03:05 -07002572div.design-announce p {
2573 margin:0 0 10px;
2574}
2575
2576#devdoc-nav a.totop {
2577 display:block;
2578 top:0;
2579 width:inherit;
2580 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2581 text-indent:-9999em;
2582}
2583#devdoc-nav a.totop {
2584 position:fixed;
2585 display:none;
2586}
2587#devdoc-nav a.totop:hover {
2588 background-color:#33B5E5;
2589}
2590
2591.content-footer a.totop {
2592 text-transform:uppercase;
2593 line-height:30px;
2594}
2595
Scott Maindb3678b2012-10-23 14:13:41 -07002596.expandable {
2597 height:34px;
2598 padding-left:20px;
2599 position:relative;
2600}
2601.expandable:before {
2602 content: '';
2603 background-image: url(../images/styles/disclosure_down.png);
2604 background-repeat:no-repeat;
2605 background-position: -12px -9px;
2606 width: 20px;
2607 height: 20px;
2608 display: inline-block;
2609 position: absolute;
2610 top: 0;
2611 left: 0; }
2612}
2613.expandable.expanded:before {
2614 background-image: url(../images/styles/disclosure_up.png);
2615}
2616
Scott Maind2af6d22013-05-13 18:39:06 -07002617/* notice sidebox link used in Design docs */
2618a.notice-developers {
2619 float:right;
2620 width:240px;
2621 min-height:50px;
2622 margin:0 0 20px 20px;
2623 border:1px solid #ddd;
2624}
2625a.notice-developers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002626 min-height:40px;
2627 background:url('../images/styles/notice-developers.png') no-repeat 10px 10px;
2628 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002629}
2630a.notice-developers:hover {
2631 background:#eee;
2632}
2633a.notice-developers h3 {
2634 font-size:14px;
2635 font-weight:normal;
2636 text-transform:uppercase;
2637 color:#000 !important;
2638 margin:0;
2639}
2640a.notice-developers p {
2641 margin:0;
Scott Main9bfcd732013-05-14 09:14:35 -07002642 line-height:16px;
2643}
2644a.notice-developers.left {
2645 margin-left:0;
2646 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002647}
2648
2649
Dirk Doughertybec14292013-04-10 20:23:40 -07002650/* -----------------------------------------------
2651good/bad example containers
2652*/
Scott Maindb3678b2012-10-23 14:13:41 -07002653
Dirk Doughertybec14292013-04-10 20:23:40 -07002654div.example-block {
2655 background-repeat: no-repeat;
2656 background-position:10px 8px;
2657 background-color:#ccc;
2658 padding:4px;
2659 margin:.8em auto 1.5em 2em;
2660 width:260px;
2661 float:right;
2662}
2663/* red container */
2664.example-block.bad {
2665 background-image: url(/images/example-bad.png);
2666 background-color:#f4cccc;
2667}
2668/* green container */
2669.example-block.good {
2670 background-image: url(/images/example-good.png);
2671 background-color:#d9ead3;
2672}
2673/* container heading div */
2674#jd-content .example-block .heading {
2675 font-weight:bold;
2676 margin:6px 0 9px 36px;
2677 padding:6px auto;
2678}
2679/* container image (if any) */
2680#jd-content .example-block img {
2681 margin:0;
2682 padding:0px;
2683}
2684
2685.example-block table {
2686 margin:0;
2687}
Scott Maindb3678b2012-10-23 14:13:41 -07002688
Scott Maine4d8f1b2012-06-21 18:03:05 -07002689/* -----------------------------------------------
2690Dialog box for popup messages
2691*/
2692
2693div.dialog {
2694 height:0;
2695 margin:0 auto;
2696}
2697
2698div.dialog>div {
2699 z-index:99;
2700 position:fixed;
2701 margin:70px 0;
2702 width: 391px;
2703 height: 200px;
2704 background: #F7F7F7;
2705-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2706-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2707box-shadow: 0 0 15px rgba(0,0,0,0.5);
2708}
2709/* IE6 can't position fixed */
2710* html div.dialog div { position:absolute; }
2711
2712
2713div#deprecatedSticker {
2714 display:none;
2715 z-index:99;
2716 position:fixed;
2717 right:15px;
2718 top:114px;
2719 margin:0;
2720 padding:1em;
2721 background:#FFF;
2722 border:1px solid #dddd00;
2723 box-shadow:-5px 5px 10px #ccc;
2724 -moz-box-shadow:-5px 5px 10px #ccc;
2725 -webkit-box-shadow:-5px 5px 10px #ccc;
2726}
2727
2728div#naMessage {
2729 display:none;
2730 width:555px;
2731 height:0;
2732 margin:0 auto;
2733}
2734
2735div#naMessage div {
2736 z-index:99;
2737 width:450px;
2738 position:fixed;
2739 margin:50px 0;
2740 padding:4em 4em 3em;
2741 background:#FFF;
2742 border:1px solid #999;
2743 box-shadow:-10px 10px 40px #888;
2744 -moz-box-shadow:-10px 10px 40px #888;
2745 -webkit-box-shadow:-10px 10px 40px #888;
2746}
2747/* IE6 can't position fixed */
2748* html div#naMessage div { position:absolute; }
2749
2750div#naMessage strong {
2751 font-size:1.1em;
2752}
2753
2754
2755/* --------------------------------------------------------------------------
2756Slideshow Controls & Next/Prev
2757*/
Scott Mainb7f96372013-02-07 16:56:43 -08002758.slideshow-next, .slideshow-prev {
2759 width: 20px;
2760 height: 36px;
2761 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002762}
2763.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002764 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002765}
2766.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002767 content: "";
2768 display: table;
2769 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002770}
2771a.slideshow-next, a.slideshow-next:visited {
2772
Scott Mainb7f96372013-02-07 16:56:43 -08002773 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002774
Scott Mainb7f96372013-02-07 16:56:43 -08002775 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002776
2777}
2778
2779a.slideshow-prev, a.slideshow-prev:visited {
2780
Scott Mainb7f96372013-02-07 16:56:43 -08002781 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002782
Scott Mainb7f96372013-02-07 16:56:43 -08002783 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002784
2785}
2786
2787.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2788
Scott Mainb7f96372013-02-07 16:56:43 -08002789 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002790
2791}
2792
2793.slideshow-next:active, .slideshow-prev:active {
2794
Scott Mainb7f96372013-02-07 16:56:43 -08002795 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002796
2797}
2798.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002799 width: 74px;
2800 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002801}
2802.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002803 display: inline-block;
2804 width: 12px;
2805 height: 12px;
2806 margin: 0 2px 20px 2px;
2807 background: #ccc;
2808 -webkit-border-radius: 50%;
2809 -moz-border-radius: 50%;
2810 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002811}
2812.slideshow-nav a:hover, .slideshow-nav a:focus {
2813
Scott Mainb7f96372013-02-07 16:56:43 -08002814 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002815}
2816
2817.slideshow-nav a:active {
2818
Scott Mainb7f96372013-02-07 16:56:43 -08002819 background: #1e799a;
2820 background: #ebebeb;
2821 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2822 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2823 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07002824}
2825.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002826 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002827}
2828/* --------------------------------------------------------------------------
2829Tabs
2830*/
2831ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08002832 padding: 0;
2833 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002834}
2835ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002836 content: "";
2837 display: table;
2838 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002839}
2840ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08002841 list-style-type: none;
2842 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002843}
2844ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002845 display: block;
2846 height: 36px;
2847 line-height: 36px;
2848 padding: 0 15px;
2849 margin-right: 2px;
2850 color: #222;
2851 -moz-border-radius-topleft: 2px;
2852 -moz-border-radius-topright: 2px;
2853 -moz-border-radius-bottomright: px;
2854 -moz-border-radius-bottomleft: px;
2855 -webkit-border-radius: 2px 2px px px;
2856 border-radius: 2px 2px px px;
2857 border-top: solid 1px #ebebeb;
2858 border-left: solid 1px #ebebeb;
2859 border-right: solid 1px #ebebeb;
2860 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002861 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2862 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2863 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2864 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2865 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2866 background-image: linear-gradient(top, #ffffff, #fafafa);
2867 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2868EndColorStr='#fafafa');
2869}
2870ul.tabs li a:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002871 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002872}
2873ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08002874 height: 37px;
2875 color: #33B5E5;
2876 background-color: #f7f7f7;
2877 background-image: none;
2878 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002879}
2880.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002881 padding: 1.2em;
2882 margin: -1px 0 2em 0;
2883 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002884 -moz-border-radius: 2px;
2885 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08002886 border: solid 1px #ddd;
2887 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002888}
2889/* --------------------------------------------------------------------------
2890Feature Boxes
2891*/
2892.feature-box {
2893 width: 291px;
2894 height: 200px;
2895 position: relative;
2896 background: #F7F7F7;
2897}
2898.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08002899 z-index: 100;
2900 position: absolute;
2901 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002902}
2903.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08002904 width: 291px;
2905 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002906}
2907.dialog .box-border .top,
2908.dialog .box-border .bottom { width:391px; }
2909
Scott Mainb7f96372013-02-07 16:56:43 -08002910.box-border .left, .box-border .right {
2911 width: 1px;
2912 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002913}
2914.box-border .top { top: 0; left: 0 }
2915.box-border .top .left { top: 1px; left: 0 }
2916.box-border .top .right { top: 1px; right: 0 }
2917.box-border .bottom .left { top: -8px; left: 0 }
2918.box-border .bottom { top: 200px; left: 0 }
2919.box-border .bottom .right { top: -8px; right: 0 }
2920
2921.feature-box h4,
2922.dialog h4 {
2923 margin: 15px 18px 10px;
2924 padding:0;
2925}
2926
2927.feature-box p,
2928.dialog p {
2929 margin: 10px 18px;
2930 padding:0;
2931}
2932.feature-box .link,
2933.dialog .link {
2934 border-top: 1px solid #dedede;
2935 bottom: 0;
2936 position: absolute;
2937 width: inherit;
2938}
2939.feature-box a, .feature-box h4,
2940.dialog a, .dialog h4 {
2941 -webkit-transition: color .4s ease;
2942 -moz-transition: color .4s ease;
2943 -o-transition: color .4s ease;
2944 transition: color .4s ease;
2945}
2946.feature-box:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002947 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002948}
2949.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Mainb7f96372013-02-07 16:56:43 -08002950.left, .feature-box:hover .right {
2951 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002952}
2953.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08002954 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002955}
2956/* --------------------------------------------------------------------------
2957Page-Specific Styles
2958*/
2959.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08002960 position: relative;
2961 float: left;
2962 width: 92px;
2963 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002964}
2965.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08002966 color: #fff;
2967 font-size: 11.5px;
2968 width: 82px;
2969 height: 82px;
2970 margin-top:-30px;
2971 line-height: 82px;
2972 text-align: center;
2973 border: solid 5px #fff;
2974 -webkit-border-radius: 50%;
2975 -moz-border-radius: 50%;
2976 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002977}
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992/* ########### REFERENCE DOCS ################## */
2993
2994#packages-nav h2,
2995#classes-nav h2 {
2996 font-size:18px;
2997 margin:0;
2998 padding:0 0 0 4px;
2999}
3000
3001#jd-header {
3002 padding: 0 0 5px;
3003 margin: 20px 0 10px;
3004 font-size:13px;
3005 border-bottom:solid 1px #ccc;
3006}
3007
3008#jd-header h1 {
3009 margin:0;
3010 padding:0;
3011}
3012
3013/* page-top-right container for reference pages (holds
3014links to summary tables) */
3015#api-info-block {
3016 font-size:13px;
3017 margin:20px 0 0;
3018 padding:0 10px 6px;
3019 font-weight:normal;
3020 float:right;
3021 text-align:right;
3022 color:#999;
3023 max-width:70%;
3024}
3025
3026#api-info-block div.api-level {
3027 font-weight:bold;
3028 font-size:inherit;
3029 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003030 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003031 padding:0;
3032 margin:0;
3033}
3034
3035/* inheritance table */
3036.jd-inheritance-table {
3037 border-spacing:0;
3038 margin:0;
3039 padding:0;
3040 font-size:13px;
3041 background-color:transparent;
3042}
3043.jd-inheritance-table tr td {
3044 border: none;
3045 margin: 0;
3046 padding: 0;
3047 background-color:transparent;
3048}
3049.jd-inheritance-table .jd-inheritance-space {
3050 font-weight:bold;
3051 width:1em;
3052}
3053.jd-inheritance-table .jd-inheritance-interface-cell {
3054 padding-left: 17px;
3055}
3056
3057
3058
3059.jd-sumtable a {
3060 text-decoration:none;
3061}
3062
3063.jd-sumtable a:hover {
3064 text-decoration:underline;
3065}
3066
3067/* the link inside a sumtable for "Show All/Hide All" */
3068.toggle-all {
3069 display:block;
3070 float:right;
3071 font-weight:normal;
3072 font-size:0.9em;
3073}
3074
3075/* adjustments for in/direct subclasses tables */
3076.jd-sumtable.jd-sumtable-subclasses {
3077 margin: 1em 0 0 0;
3078 max-width:968px;
3079 background-color:transparent;
3080 font-size:13px;
3081}
3082
3083/* extra space between end of method name and open-paren */
3084.sympad {
3085 margin-right: 2px;
3086}
3087
3088/* right alignment for the return type in sumtable */
3089.jd-sumtable .jd-typecol {
3090 text-align:right;
3091}
3092
3093/* adjustments for the expando table-in-table */
3094.jd-sumtable-expando {
3095 margin:.5em 0;
3096 padding:0;
3097}
3098
3099/* a div that holds a short description */
3100.jd-descrdiv {
3101 padding:3px 1em 0 1em;
3102 margin:0;
3103 border:0;
3104}
3105
3106#jd-content img.jd-expando-trigger-img {
3107 padding:0 4px 4px 0;
3108 margin:0;
3109}
3110
3111.jd-sumtable-subclasses div#subclasses-direct,
3112.jd-sumtable-subclasses div#subclasses-indirect {
3113 margin:0 0 0 13px;
3114}
3115
3116
3117
3118/********* MEMBER REF *************/
3119
3120
3121.jd-details {
3122/* border:1px solid #669999;
3123 padding:4px; */
3124 margin:0 0 1em;
3125}
3126
3127/* API reference: a container for the
3128.tagdata blocks that make up the detailed
3129description */
3130.jd-details-descr {
3131 padding:0;
3132 margin:.5em .25em;
3133}
3134
3135/* API reference: a block containing
3136a detailed description, a params table,
3137seealso list, etc */
3138.jd-tagdata {
3139 margin:.5em 1em;
3140}
3141
3142.jd-tagdata p {
3143 margin:0 0 1em 1em;
3144}
3145
3146/* API reference: adjustments to
3147the detailed description block */
3148.jd-tagdescr {
3149 margin:.25em 0 .75em 0;
3150}
3151
3152.jd-tagdescr ol,
3153.jd-tagdescr ul {
3154 margin:0 2.5em;
3155 padding:0;
3156}
3157
3158.jd-tagdescr table,
3159.jd-tagdescr img {
3160 margin:.25em 1em;
3161}
3162
3163.jd-tagdescr li {
3164margin:0 0 .25em 0;
3165padding:0;
3166}
3167
3168/* API reference: heading marking
3169the details section for constants,
3170attrs, methods, etc. */
3171h4.jd-details-title {
3172 font-size:1.15em;
3173 background-color: #E2E2E2;
3174 margin:1.5em 0 .6em;
3175 padding:3px 95px 3px 3px; /* room for api-level */
3176}
Scott Mainab4daf42012-11-30 11:27:17 -08003177body.google h4.jd-details-title {
3178 background-color: #FFF;
3179 padding-top:5px;
3180 border-top: 1px solid #ccc;
3181}
3182body.google table.jd-sumtable th {
3183 background-color: #FFF;
3184 color:#000;
3185}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003186
3187h4.jd-tagtitle {
3188 margin:0;
3189}
3190
3191h4 .normal {
3192 font-weight:normal;
3193}
3194
3195/* API reference: heading for "Parameters", "See Also", etc.,
3196in details sections */
3197h5.jd-tagtitle {
3198 margin:0 0 .25em 0;
3199 font-size:1em;
3200}
3201
3202.jd-tagtable {
3203 margin:0;
3204 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003205 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003206}
3207
3208.jd-tagtable td,
3209.jd-tagtable th {
3210 border:none;
3211 background-color:#fff;
3212 vertical-align:top;
3213 font-weight:normal;
3214 padding:2px 10px;
3215}
3216
3217.jd-tagtable th {
3218 font-style:italic;
3219}
3220
3221/* Inline api level indicator for methods */
3222div.api-level {
3223 font-size:.8em;
3224 font-weight:normal;
3225 color:#999;
3226 float:right;
3227 padding:0 8px 0;
3228 margin-top:-30px;
3229}
3230
3231table.jd-tagtable td,
3232table.jd-tagtable th {
3233 background-color:transparent;
3234}
3235
3236table.jd-tagtable th {
3237 color:inherit;
3238}
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262/* SEARCH FILTER */
3263
Scott Main0e76e7e2013-03-12 10:24:07 -07003264.menu-container {
3265 position:relative;
3266}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003267#search_autocomplete {
3268 font-weight:normal;
3269}
3270
Scott Main0e76e7e2013-03-12 10:24:07 -07003271.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003272 width: 193px;
3273 float: right;
3274}
Scott Main0e76e7e2013-03-12 10:24:07 -07003275.search_filtered_wrapper.docs {
3276 width:875px;
3277 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003278 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003279 top:26px;
3280 right:66px;
3281}
3282.suggest-card {
3283 position:relative;
3284 width:170px;
3285 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003286 padding:5px;
3287 border: solid 1px #C5C5C5;
3288 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003289 top: 15px;
3290 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003291 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3292 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3293 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3294}
Scott Main0e76e7e2013-03-12 10:24:07 -07003295.suggest-card.reference {
3296 position:absolute;
3297 z-index:999;
3298 min-width:171px; /* +padding and border makes this match input width */
3299 min-height:93px; /* add 3px because this has 1 not 4px top border */
3300 width:auto;
3301 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003302 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003303}
3304.suggest-card.develop {
3305 z-index:997;
3306 border-top: solid 4px #F80;
3307 float:right;
3308}
3309.suggest-card.design {
3310 z-index:996;
3311 border-top: solid 4px #33b5e5;
3312 float:right;
3313}
3314.suggest-card.distribute {
3315 z-index:995;
3316 border-top: solid 4px #9C0;
3317 float:right;
3318}
3319.child-card {
3320 width:100%;
3321}
3322.suggest-card.dummy {
3323 width:172px;
3324 float:right;
3325 border:0;
3326 background:transparent;
3327 -moz-box-shadow: none;
3328 -webkit-box-shadow: none;
3329 box-shadow: none;
3330}
3331
3332ul.search_filtered {
3333 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003334 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003335 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003336 padding: 0;
3337}
Scott Main0e76e7e2013-03-12 10:24:07 -07003338.search_filtered .jd-selected {
3339 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003340 cursor:pointer;
3341}
Scott Main0e76e7e2013-03-12 10:24:07 -07003342.search_filtered .jd-selected,
3343.search_filtered .jd-selected a {
3344 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003345}
3346
3347.no-display {
3348 display: none;
3349}
3350
Scott Main0e76e7e2013-03-12 10:24:07 -07003351.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003352 font-size: 0.81em;
3353 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003354 margin: 0 0 2px;
3355 padding: 0;
3356 line-height:1.5em;
3357}
3358
Scott Main0e76e7e2013-03-12 10:24:07 -07003359.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003360 padding:0 5px;
3361 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003362 display:inline-block;
3363 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003364}
3365
Scott Main0e76e7e2013-03-12 10:24:07 -07003366.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003367 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003368 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003369 border: none;
3370 margin: 8px 0 2px;
3371 padding:1px 5px;
3372 line-height:1.5em;
3373}
Scott Main0e76e7e2013-03-12 10:24:07 -07003374.search_filtered li.header.small {
3375 font-size:0.85em;
3376}
Scott Main7e447ed2013-02-19 17:22:37 -08003377
Scott Main0e76e7e2013-03-12 10:24:07 -07003378.suggest-card.reference
3379.search_filtered li.header {
3380 color:#aaa;
3381 font-size: 0.81em;
3382}
3383
3384.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003385 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003386}
3387
3388.show-item {
3389 display: table-row;
3390}
3391.hide-item {
3392 display: hidden;
3393}
3394
3395
3396
3397
3398
3399/* SEARCH RESULTS */
3400
Scott Maine4d8f1b2012-06-21 18:03:05 -07003401
3402#leftSearchControl .gsc-twiddle {
3403 background-image : none;
3404}
3405
3406#leftSearchControl td, #searchForm td {
3407 border: 0px solid #000;
3408 padding:0;
3409}
3410
3411#leftSearchControl .gsc-resultsHeader .gsc-title {
3412 padding-left : 0px;
3413 font-weight : bold;
3414 font-size : 13px;
3415 color:#006699;
3416 display : none;
3417}
3418
3419#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3420 display : none;
3421}
3422
3423#leftSearchControl .gsc-resultsRoot {
3424 padding-top : 6px;
3425}
3426
3427#leftSearchControl div.gs-visibleUrl-long {
3428 display : block;
3429 color:#006699;
3430}
3431
3432#leftSearchControl .gsc-webResult {
3433 padding:0 0 20px 0;
3434}
3435
3436.gsc-webResult div.gs-visibleUrl-short,
3437table.gsc-branding,
3438.gsc-clear-button {
3439 display : none;
3440}
3441
3442.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3443.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3444#leftSearchControl a,
3445#leftSearchControl a b {
3446 color:#006699;
3447}
3448
3449.gsc-resultsHeader {
3450 display: none;
3451}
3452
3453/* Disable built in search forms */
3454.gsc-control form.gsc-search-box {
3455 display : none;
3456}
3457table.gsc-search-box {
3458 margin:6px 0 0 0;
3459 border-collapse:collapse;
3460}
3461
3462td.gsc-input {
3463 padding:0 2px;
3464 width:100%;
3465 vertical-align:middle;
3466}
3467
3468input.gsc-input {
3469 border:1px solid #BCCDF0;
3470 width:99%;
3471 padding-left:2px;
3472 font-size:.95em;
3473}
3474
3475td.gsc-search-button {
3476 text-align: right;
3477 padding:0;
3478 vertical-align:top;
3479}
3480
3481
3482#searchResults {
3483 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3484(it doesn't) */
3485 height:auto;
3486}
3487
3488#searchResults .gsc-control {
3489 position:relative;
3490 width:auto;
3491 padding:0 0 10px;
3492}
3493
3494#searchResults .gsc-tabsArea {
3495 position:relative;
3496 white-space:nowrap;
3497 float:left;
3498 width:200px;
3499}
3500
3501#searchResults .gsc-above-wrapper-area {
3502 display:none;
3503}
3504
3505#searchResults .gsc-resultsbox-visible {
3506 float:left;
3507 width:720px;
3508 margin-left:20px;
3509}
3510
3511#searchResults .gsc-tabHeader {
3512 padding: 3px 6px;
3513 position:relative;
3514 width:auto;
3515 display:block;
3516}
3517
3518#searchResults h2#searchTitle {
3519 padding:0;
3520 margin:5px 0;
3521 border:none;
3522}
3523
3524#searchResults h2#searchTitle em {
3525 font-style:normal;
3526 color:#33B5E5;
3527}
3528
3529#searchResults .gsc-table-result {
3530 margin:5px 0 10px 0;
3531 background-color:transparent;
3532}
3533#searchResults .gs-web-image-box, .gs-promotion-image-box {
3534 width:120px;
3535}
3536#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3537 max-width:120px;
3538}
3539
3540#searchResults .gsc-table-result .gsc-thumbnail {
3541 padding:0 20px 0 0;
3542}
3543
3544#searchResults td {
3545 background-color:transparent;
3546}
3547
3548#searchResults .gsc-expansionArea {
3549 position:relative;
3550}
3551#searchResults .gsc-tabsArea .gsc-cursor-box {
3552 width:200px;
3553 padding:20px 0 0 1px;
3554}
3555#searchResults .gsc-cursor-page {
3556 display:inline-block;
3557 float:left;
3558 margin:-1px 0 0 -1px;
3559 padding:0;
3560 height:27px;
3561 width:27px;
3562 text-align:center;
3563 line-height:2;
3564}
3565
3566#searchResults .gsc-tabHeader.gsc-tabhInactive,
3567#searchResults .gsc-cursor-page {
3568 text-decoration:none;
3569 color:#258AAF;
3570 border: solid 1px #DADADA;
3571}
3572
3573#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3574#searchResults .gsc-cursor-page:hover {
3575 border-color: #DBDBDB;
3576 background-color: #F3F3F3;
3577 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3578 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3579 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3580 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3581 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3582 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3583 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3584EndColorStr='#ececec');
3585 color: #33B5E5;
3586}
3587
3588#searchResults .gsc-tabHeader.gsc-tabhActive,
3589#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3590#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3591#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3592 color:#fff;
3593 background-color: #09C;
3594 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3595 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3596 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3597 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3598 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3599 background-image: linear-gradient(top, #2FADDB, #09C);
3600 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3601 border: 1px solid #3990AB;
3602 z-index:100;
3603}
3604
3605}
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619/*********** PREVIOUSLY dac-styles.css ***************/
3620
3621
Scott Maine4d8f1b2012-06-21 18:03:05 -07003622#header {
3623 border-bottom:0;
3624}
3625
3626#header .wrap {
3627 max-width:940px;
3628 height:41px;
3629 border-bottom:1px solid;
3630 border-color: #ccc;
3631 position:relative;
3632}
3633
3634.about #header .wrap {
3635 border-color: #9933CC;
3636}
3637
3638.design #header .wrap {
3639 border-color: #33b5e5;
3640}
3641
3642.develop #header .wrap {
3643 border-color: #F80;
3644}
3645
3646.distribute #header .wrap {
3647 border-color: #9C0;
3648}
3649
3650.logo a {
3651 width:123px;
3652 float:left;
3653}
3654
3655#header .logo {
3656 margin-top: -6px;
3657 margin-left: 0px;
3658 margin-bottom:0px;
3659 width: 160px;
3660 padding-right:10px;
3661}
3662
3663.search {
3664 height:25px;
3665 margin-top: -3px;
3666 margin-bottom: 0px;
3667}
3668
3669
3670
3671/* Quicknav */
3672.btn-quicknav {
3673 width:20px;
3674 height:28px;
3675 float:left;
3676 margin-left:6px;
3677 padding-right:10px;
3678 position:relative;
3679 cursor:pointer;
3680 border-right:1px solid #CCC;
3681}
3682
3683.btn-quicknav a {
3684 zoom:1;
3685 position:absolute;
3686 top:13px;
3687 left:5px;
3688 display:block;
3689 text-indent:-9999em;
3690 width:10px;
3691 height:5px;
3692 background:url(../images/quicknav_arrow.png) no-repeat;
3693}
3694
3695.btn-quicknav a.arrow-active {
3696 background-position: 0 -5px;
3697 display:none;
3698}
3699
3700#header-wrap.quicknav a.arrow-inactive {
3701 display:none;
3702}
3703
3704.btn-quicknav.active a.arrow-active {
3705 display:block;
3706}
3707
3708.nav-x li {
3709 display:block;
3710 float:left;
3711 margin-right:45px;
3712 -webkit-transition: all 0.25s linear;
3713 -moz-transition: all 0.25s linear;
3714 -ms-transition: all 0.25s linear;
3715 -o-transition: all 0.25s linear;
3716 transition: all 0.25s linear;
3717}
3718
3719#header-wrap.quicknav .nav-x li {
3720 min-width:160px;
3721 margin-right:20px;
3722}
3723
3724#header-wrap.quicknav li.last {
3725 margin-right:0px;
3726}
3727
3728#quicknav {
3729 float:none;
3730 clear:both;
3731 margin-left:180px;
3732 margin-top:-30px;
3733 display:none;
3734 overflow:hidden;
3735}
3736
3737#header-wrap.quicknav #quicknav {
3738
3739}
3740
3741#quicknav ul {
3742 margin:10px 0;
3743 padding:0;
3744}
3745
3746#quicknav ul li.design {
3747 border-top:1px solid #33b5e5;
3748}
3749
3750#quicknav ul li.develop {
3751 border-top:1px solid #FF8800;
3752}
3753
3754#quicknav ul li.distribute {
3755 border-top:1px solid #99cc00;
3756}
3757
3758#quicknav ul li {
3759 display:block;
3760 float:left;
3761 margin:0 20px 0 0;
3762 min-width:140px;
3763}
3764
3765#quicknav ul li.last {
3766 margin-right:0px;
3767}
3768
3769#quicknav ul li ul li {
3770 float:none;
3771}
3772
3773#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003774 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003775}
3776
3777#quicknav ul li li ul,
3778#quicknav ul li li ul li {
3779 margin:0;
3780}
3781
3782#quicknav ul li li ul li:before {
3783 content:"\21B3";
3784}
3785
3786#header-wrap {
3787 -webkit-transition: all 0.25s ease-out;
3788 -moz-transition: all 0.25s ease-out;
3789 -ms-transition: all 0.25s ease-out;
3790 -o-transition: all 0.25s ease-out;
3791 transition: all 0.25s ease-out;
3792
3793}
3794
3795#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003796 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003797
3798}
3799
3800/* SEARCH AND MORE */
3801.search {
3802 position: absolute;
3803 width: 50px;
3804 height:28px;
3805 display: block;
3806 margin-top:-3px;
3807 margin-bottom:7px;
3808 overflow:hidden;
3809 z-index:100;
3810 right:54px;
3811 -webkit-transition: width 0.4s ease;
3812 -moz-transition: width 0.4s ease;
3813 -o-transition: width 0.4s ease;
3814 transition: width 0.4s ease;
3815}
3816
3817.search #search-btn {
3818 width:50px;
3819 height:28px;
3820 background:url(../images/icon_search.png) no-repeat;
3821 float:left;
3822}
3823
3824.search-inner {
3825 width:245px;
3826}
3827
3828.search:hover, .search.active {
3829 width:245px;
3830}
3831
3832.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003833 position: absolute;
3834 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07003835}
3836
3837.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003838 width: 214px;
3839 height: 1px;
3840 top: 24px;
3841 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003842}
3843
Scott Mainb7f96372013-02-07 16:56:43 -08003844.search .left, .search .right {
3845 height: 5px;
3846 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003847}
3848
3849.search .left {
3850 top: 22px;
3851 left: 56px;
3852 background-color:#CCC;
3853}
3854
3855.search .right {
3856 top: 22px;
3857 left: 238px;
3858 background-color:#CCC;
3859}
3860
3861.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08003862 margin-top: 2px;
3863 width: 162px;
3864 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003865}
3866
3867.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08003868 color: #2f2f2f;
3869 font-size: 0.95em;
3870 width: 178px;
3871 border: none;
3872 margin-left: 6px;
3873 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003874 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08003875 background-color: transparent;
3876 border-bottom:1px solid #CCC;
3877 padding:0 0 0 4px;
3878 outline:none;
3879 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003880}
3881
3882.search:hover form input {
3883 border-bottom:1px solid #33B5E5;
3884}
3885
3886.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003887 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003888}
3889
3890.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08003891 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003892}
3893
3894.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08003895 color: #222;
3896 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07003897}
3898
3899.moremenu {
3900 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08003901 position: relative;
3902 width: 50px;
3903 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003904 display: block;
3905 margin-top:-3px;
3906 margin-bottom:7px;
3907 overflow:hidden;
3908 -webkit-transition: width 0.25s ease;
3909 -moz-transition: width 0.25s ease;
3910 -o-transition: width 0.25s ease;
3911 transition: width 0.25s ease;
3912}
3913
3914.moremenu #more-btn {
3915 width:40px;
3916 height:28px;
3917 background:url(../images/icon_more.png) no-repeat;
3918 border-left:1px solid #CCC;
3919 float:left;
3920 cursor:pointer;
3921}
3922
3923.moremenu:hover #more-btn {
3924 background-position:0 -28px;
3925}
3926
3927.morehover {
3928 position:absolute;
3929 right:6px;
3930 top:-9px;
3931 width:40px;
3932 height:35px;
3933 z-index:99;
3934 overflow:hidden;
3935
3936 -webkit-opacity:0;
3937 -moz-opacity:0;
3938 -o-opacity:0;
3939 opacity:0;
3940
3941 -webkit-transform-origin:100% 0%;
3942 -moz-transform-origin:100% 0%;
3943 -o-transform-origin:100% 0%;
3944 transform-origin:100% 0%;
3945
3946 -webkit-transition-property: -webkit-opacity;
3947 -webkit-transition-duration: .25s;
3948 -webkit-transition-timing-function:ease;
3949
Scott Main0e76e7e2013-03-12 10:24:07 -07003950 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003951 -moz-transition-duration: .25s;
3952 -moz-transition-timing-function:ease;
3953
Scott Main0e76e7e2013-03-12 10:24:07 -07003954 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003955 -o-transition-duration: .25s;
3956 -o-transition-timing-function:ease;
3957
Scott Main0e76e7e2013-03-12 10:24:07 -07003958 transition-property: opacity;
3959 transition-duration: .25s;
3960 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003961}
3962
Scott Maine05e6f92013-01-29 13:34:17 -08003963.morehover:hover,
3964.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003965 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07003966 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003967 width:268px;
3968 -webkit-transition-property:height, -webkit-opacity;
3969}
3970
3971.morehover .top {
3972 width:268px;
3973 height:39px;
3974 background:url(../images/more_top.png) no-repeat;
3975}
3976
3977.morehover .mid {
3978 width:228px;
3979 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07003980 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003981}
3982
3983.morehover .mid .header {
3984 border-bottom:1px solid #ccc;
3985 font-weight:bold;
3986}
3987
3988.morehover .bottom {
3989 width:268px;
3990 height:6px;
3991 background:url(../images/more_bottom.png) no-repeat;
3992}
3993
3994.morehover ul {
3995 margin:10px 10px 20px 0;
3996}
3997
3998.morehover ul li {
3999 list-style:none;
4000}
4001
4002.morehover ul li.active a,
4003.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004004 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004005}
4006
4007.morehover ul li.active img {
4008 margin-right:4px;
4009}
4010
4011
4012
4013
4014/* MARQUEE */
4015.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004016 width:100%;
4017 overflow:hidden;
4018 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004019}
4020.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004021 position:absolute;
4022 top:50%;
4023 left:0px;
4024 margin-top:-36px;
4025 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004026}
4027.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004028 position:absolute;
4029 top:50%;
4030 margin-top:-36px;
4031 z-index:99;
4032 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004033}
4034
4035.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004036 position:absolute;
4037 bottom:20px;
4038 width:100%;
4039 text-align:center;
4040 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004041}
4042.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004043 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004044}
4045.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004046 display: inline-block;
4047 width:12px;
4048 height:12px;
4049 text-indent:-8000px;
4050 list-style:none;
4051 margin: 0 2px;
4052 border-radius:6px;
4053 background-color:#ccc;
4054 cursor:pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004055 -webkit-transition:color .5s ease-in;
4056 -moz-transition:color .5s ease-in;
4057 -o-transition:color .5s ease-in;
4058 transition:color .5s ease-in;
4059}
4060.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004061 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004062}
4063.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004064 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004065}
4066.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004067 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004068}
4069.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004070 display:inline;
4071 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004072}
4073
4074
4075
4076
4077a.download-sdk {
4078 float:right;
4079 margin:-10px 0;
4080 height:30px;
4081 padding-top:4px;
4082 padding-bottom:0px;
4083}
4084
4085#nav-x {
4086 padding-top: 14px;
4087}
4088
Scott Main1d62fa82012-07-17 13:15:12 -07004089#nav-x .wrap {
4090 min-height:34px;
4091}
4092
Scott Maine4d8f1b2012-06-21 18:03:05 -07004093#nav-x .wrap,
4094#searchResults.wrap {
4095 max-width:940px;
4096 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004097}
4098
Scott Maina214d842012-07-16 17:14:40 -07004099#searchResults.wrap #leftSearchControl {
4100 min-height:700px
4101}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004102.nav-x {
4103 margin-left:0;
4104 margin-bottom:0;
4105}
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116/*
4117 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4118 */
4119
4120.jspContainer {
4121 overflow: hidden;
4122 position: relative;
4123}
4124
4125.jspPane {
4126 position: absolute;
4127 overflow: hidden;
Scott Main2d967c62013-03-11 09:21:07 -07004128 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004129}
4130
4131.jspVerticalBar {
4132 position: absolute;
4133 top: 0;
4134 right: 0;
4135 width: 4px;
4136 height: 100%;
4137 background: #f5f5f5;
4138}
4139
4140.jspHorizontalBar {
4141 position: absolute;
4142 bottom: 0;
4143 left: 0;
4144 width: 100%;
4145 height: 4px;
4146 background: #f5f5f5;
4147}
4148
4149.jspVerticalBar *,
4150.jspHorizontalBar * {
4151 margin: 0;
4152 padding: 0;
4153}
4154.jspCap {
4155 display: block;
4156}
4157
4158.jspVerticalBar .jspCap {
4159 height: 4px;
4160}
4161
4162.jspHorizontalBar .jspCap {
4163 width: 0;
4164 height: 100%;
4165}
4166
4167.jspHorizontalBar .jspCap {
4168 float: left;
4169}
4170
4171.jspTrack {
4172 position: relative;
4173}
4174
4175.jspDrag {
4176 background: #bbb;
4177 position: relative;
4178 top: 0;
4179 left: 0;
4180 cursor: pointer;
4181}
4182
4183.jspDrag:hover,
4184.jspDrag:active {
4185 border-color: #09c;
4186 background-color: #4cadcb;
4187 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4188 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4189 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4190 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4191 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4192 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Mainb7f96372013-02-07 16:56:43 -08004193 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004194}
4195
4196.jspHorizontalBar .jspTrack,
4197.jspHorizontalBar .jspDrag {
4198 float: left;
4199 height: 100%;
4200}
4201
4202.jspArrow {
4203 background: #999;
4204 text-indent: -20000px;
4205 display: block;
4206 cursor: pointer;
4207}
4208
4209.jspArrow.jspDisabled {
4210 cursor: default;
4211 background: #ccc;
4212}
4213
4214.jspVerticalBar .jspArrow {
4215 height: 16px;
4216}
4217
4218.jspHorizontalBar .jspArrow {
4219 width: 16px;
4220 float: left;
4221 height: 100%;
4222}
4223
4224.jspVerticalBar .jspArrow:focus {
4225 outline: none;
4226}
4227
4228.jspCorner {
4229 float: left;
4230 height: 100%;
4231}
4232
4233/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4234* html .jspCorner {
4235 margin: 0 -3px 0 0;
4236}
4237/******* end of jscrollpane *********/
4238
4239
4240
4241
4242
4243/************ DEVELOP HOMEPAGE ******************/
4244
4245/* Slideshow */
4246.slideshow-develop {
4247 height: 300px;
4248 width: 940px;
4249 position: relative;
4250 overflow:hidden;
4251}
4252.slideshow-develop .frame {
4253 width: 940px;
4254 height: 300px;
4255}
4256.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004257 max-width:350px;
4258 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004259 margin:20px 0 0 90px;
4260 -webkit-transform: perspective(800px ) rotateY( 35deg );
4261 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4262 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4263 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4264}
4265.slideshow-develop img.play.no-shadow {
4266 box-shadow: none;
4267 -moz-box-shadow: none;
4268 -webkit-box-shadow: none;
4269}
4270.slideshow-develop img.play.no-transform {
4271 -webkit-transform: none;
4272}
4273.slideshow-develop a.slideshow-next {
4274 background: url(../images/arrow-right-develop.png);
4275}
4276.slideshow-develop a.slideshow-prev {
4277 background: url(../images/arrow-left-develop.png);
4278}
4279.slideshow-develop .content-right {
4280 float: left;
4281}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004282.slideshow-develop .content-right h2 {
4283 padding:0;
4284 margin-bottom:10px;
4285 border:none;
4286}
4287.slideshow-develop .item {
4288 height: 300px;
4289 width: 940px;
4290}
4291.slideshow-develop .pagination ul li.active {
4292 background-color: #F80;
4293}
4294.slideshow-develop .pagination ul li.active:hover {
4295 background-color: #F80;
4296}
Scott Main0e585702012-10-22 20:30:22 -07004297.slideshow-develop .item hr {
4298 margin:5px 0 10px;
4299}
4300.slideshow-develop .item p {
4301 margin:10px 0;
4302}
4303.slideshow-develop .item p.title-intro {
4304 position:absolute;
4305 margin:0;
4306}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004307
4308/* Feeds */
4309.feed ul {
4310 margin: 0;
4311}
4312.feed .feed-nav {
4313 height: 25px;
4314 border-bottom: 1px solid #CCC;
4315}
4316.feed .feed-nav li {
4317 list-style: none;
4318 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004319 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004320 margin-right: 25px;
4321 cursor: pointer;
4322}
4323.feed .feed-nav li.active {
4324 color: #000;
4325 border-bottom: 4px solid #F80;
4326}
4327.feed .feed-container {
4328 overflow: hidden;
4329 width: 460px;
4330}
4331.feed .feed-container .feed-frame {
4332 width: 1000px;
4333}
4334.feed .feed-container .feed-frame ul {
4335 float: left;
4336 width:460px;
4337}
4338.feed .feed-container .feed-frame ul ul {
4339 float: none;
4340 margin:10px 0 0 30px;
4341}
4342.feed .feed-container .feed-frame li {
4343 list-style: none;
4344 margin: 20px 0 20px 0;
4345 width: 460px;
4346 height:93px;
4347}
4348.feed .feed-container .feed-frame li.playlist {
4349 height:auto;
4350}
4351.feed .feed-container .feed-frame li.playlist a {
4352 height:93px;
4353 display:block;
4354}
4355.feed .feed-container .feed-frame li.more {
4356 height:20px;
4357 margin:10px 0 5px 5px;
4358}
4359.feed .feed-container .feed-frame li.more a {
4360 height:inherit;
4361}
4362.feed .feed-container .feed-frame li.playlist-video {
4363 list-style: none;
4364 margin: 0;
4365 width: 460px;
4366 height:55px;
4367 font-size:12px;
4368}
4369.feed .feed-container .feed-frame li.playlist-video a {
4370 height:45px;
4371 padding:5px;
4372}
4373.feed .feed-container .feed-frame li.playlist-video h5 {
4374 font-size:12px;
4375 line-height:13px;
4376 margin:0;
4377}
4378.feed .feed-container .feed-frame li.playlist-video p {
4379 margin:5px 0 0;
4380 line-height:15px;
4381}
4382.feed-container .feed-frame div.feed-image {
4383 float: left;
4384 border: 1px solid #999;
4385 margin:0 20px 0 0;
4386 width:122px;
4387 height:92px;
4388 background:url('../images/blog-default.png') no-repeat 0 0;
4389 background-size:180px;
4390}
4391#jd-content .feed .feed-container .feed-frame li img {
4392 float: left;
4393 border: 1px solid #999;
4394 margin:0 20px 0 0;
4395 width:122px;
4396 height:92px;
4397}
4398#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4399 width:inherit;
4400 height:inherit;
4401}
4402
4403.feed .feed-container .feed-frame li a,
4404.feed .feed-container .feed-frame li a:active {
4405 color:#555 !important;
4406}
4407
4408.feed .feed-container .feed-frame li a:hover,
4409.feed .feed-container .feed-frame li a:hover * {
4410 color:#7AA1B0 !important;
4411}
4412
4413/* Video player */
4414#player-wrapper {
4415 display:none;
4416 margin: -1px auto 0;
4417 position: relative;
4418 width: 940px;
4419 height: 0px;
4420}
4421#player-frame {
4422 background: #EFEFEF;
4423 border: 1px solid #CCC;
4424 padding: 0px 207px;
4425 z-index: 10; /* stay above marque, but below search suggestions */
4426 width: 525px;
4427 height: 330px;
4428 position: relative;
4429}
4430
4431
4432
4433/************ DISTRIBUTE HOMEPAGE ***************/
4434
4435.marquee {
4436 width: 760px;
4437}
4438.marquee .main-img {
4439 float: left;
4440 margin-top: 20px;
4441 width: 490px;
4442}
4443.marquee .copy {
4444 width: 270px;
4445 float: left;
4446 margin-top: 30px;
4447}
4448.distribute-features {
4449 margin: 0;
4450}
4451.distribute-features ul {
4452 margin: 0;
4453}
4454.distribute-features ul li {
4455 list-style: none;
4456 float: left;
4457 border-top: 1px solid #9C0;
4458 width: 220px;
4459 margin-right: 50px;
4460}
4461.distribute-features ul li.last {
4462 margin-right: 0px;
4463}
4464
4465
Scott Main8fa53512012-11-30 20:16:42 -08004466
Scott Maine4d8f1b2012-06-21 18:03:05 -07004467/************ DEVELOP TOPIC CONTAINERS ************/
4468
4469.landing-banner,
4470.landing-docs {
4471 margin:20px 0 0;
4472}
Scott Main8fa53512012-11-30 20:16:42 -08004473.landing-banner div:first-child,
4474.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004475.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004476 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004477 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004478}
Scott Main8fa53512012-11-30 20:16:42 -08004479.landing-banner div:last-child,
4480.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004481.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004482 margin-right:0;
4483}
4484
4485.landing-banner h1 {
4486 margin-top:0;
4487}
Scott Main0e71cee2012-08-07 13:59:43 -07004488.landing-docs {
4489 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004490 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004491}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004492.landing-docs h3 {
4493 font-size:14px;
4494 line-height:21px;
4495 color:#555;
4496 text-transform:uppercase;
4497 border-bottom:1px solid #CCC;
4498 margin:0 0 20px;
4499}
4500.landing-docs a {
4501 color:#333 !important;
4502}
Robert Ly40e90992012-11-28 17:46:17 -08004503
Scott Maine4d8f1b2012-06-21 18:03:05 -07004504.landing-docs a:hover,
4505.landing-docs a:hover * {
4506 color:#7AA1B0 !important
4507}
4508
Robert Ly40e90992012-11-28 17:46:17 -08004509.landing-docs .normal-links a {
4510 color:#258aaf !important;
4511}
4512
Scott Maine4d8f1b2012-06-21 18:03:05 -07004513.plusone {
4514 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004515}
Scott Main9edfa6d2012-08-14 15:04:40 -07004516
4517
4518
4519/************* HOME/LANDING PAGE *****************/
4520
4521.slideshow-home {
4522 height: 500px;
4523 width: 940px;
4524 border-bottom: 1px solid #CCC;
4525 position: relative;
4526 margin: 0;
4527}
4528.slideshow-home .frame {
4529 width: 940px;
4530 height: 500px;
4531}
4532.slideshow-home .content-left {
4533 float: left;
4534 text-align: center;
4535 vertical-align: center;
4536 margin: 0 0 0 35px;
4537}
4538.slideshow-home .content-right {
4539 margin: 80px 0 0 0;
4540}
4541.slideshow-home .content-right p {
4542 margin-bottom: 10px;
4543}
4544.slideshow-home .content-right p:last-child {
4545 margin-top: 15px;
4546}
4547.slideshow-home .content-right h1 {
4548 padding:0;
4549}
4550.slideshow-home .item {
4551 height: 500px;
4552 width: 940px;
4553}
4554.home-sections {
4555 padding: 30px 20px 20px;
4556 margin: 20px 0;
4557 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4558}
4559.home-sections ul {
4560 margin: 0;
4561}
4562.home-sections ul li {
4563 float: left;
4564 display: block;
4565 list-style: none;
4566 width: 170px;
4567 height: 35px;
4568 border: 1px solid #ccc;
4569 background: white;
4570 margin-right: 10px;
4571 border-radius: 1px;
4572 -webkit-border-radius: 1px;
4573 -moz-border-radius: 1px;
4574 box-shadow: 1px 1px 5px #EEE;
4575 -webkit-box-shadow: 1px 1px 5px #EEE;
4576 -moz-box-shadow: 1px 1px 5px #EEE;
4577 background: white;
4578}
4579.home-sections ul li:hover {
4580 background: #F9F9F9;
4581 border: 1px solid #CCC;
4582}
4583.home-sections ul li a,
4584.home-sections ul li a:hover {
4585 font-weight: bold;
4586 margin-top: 8px;
4587 line-height: 18px;
4588 float: left;
4589 width: 100%;
4590 text-align: center;
4591 color: #09c !important;
4592}
4593.home-sections ul li a {
4594 font-weight: bold;
4595 margin-top: 8px;
4596 line-height: 18px;
4597 float: left;
4598 width:100%;
4599 text-align:center;
4600}
4601.home-sections ul li img {
4602 float: left;
4603 margin: -8px 0 0 10px;
4604}
4605.home-sections ul li.last {
4606 margin-right: 0px;
4607}
Scott Mainf5089842012-08-14 16:31:07 -07004608.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004609 margin-top: -40px;
4610}