blob: 9f4edc6954d00b0b5a4a1de2ec626021c05c46d8 [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}
1092dd p {
1093 margin:10px 0 0;
1094}
Scott Maindb3678b2012-10-23 14:13:41 -07001095li p,
1096li pre,
1097li ul,
1098li ol {
1099 margin-top:5px;
1100 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001101}
1102pre strong, pre b, a strong, a b, a code {
1103 color: inherit;
1104}
1105pre, code {
1106 color: #060;
1107 font: 14px/1.5 'courier new', courier, monospace;
1108}
1109code {
1110 font-weight:bold;
Scott Mainc5480c32013-02-01 15:29:44 -08001111 font: 14px/14px 'courier new', courier, monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001112}
1113
1114legend {
1115 display: none;
1116}
1117a:link, a:visited {
1118 color: #258aaf;
1119 text-decoration: none;
1120}
1121a:focus, a:hover, a:active {
1122 color: #33B5E5;
1123 text-decoration: none;
1124}
1125strong, b {
1126 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001127 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001128}
1129table {
1130 border-collapse: collapse;
1131 border-spacing: 0;
1132 border:0;
1133 margin: .5em 1em 1em 0;
1134 width:100%; /* consistent table widths; within IE's quirks */
1135 background-color:#f7f7f7;
1136}
1137th, td {
1138 padding: 4px 12px;
1139 vertical-align: top;
1140 text-align: left;
1141}
1142td {
1143 background-color:inherit;
1144 border:solid 1px #DDD;
1145}
Scott Maineb410352013-01-14 19:03:40 -08001146td *:last-child {
1147 margin-bottom:0;
1148}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001149th {
1150 background-color: #999;
1151 color: #fff;
1152 border:solid 1px #DDD;
1153 font-weight: normal;
1154}
1155tr:first-of-type th:first-of-type:empty {
1156 visibility: hidden;
1157}
1158/* --------------------------------------------------------------------------
1159Footer
1160*/
1161.line {
1162 clear: both;
1163 background: #acbc00;
1164 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1165 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1166color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1167 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1168 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1169 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1170 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1171 height: 2px;
1172 margin-top: 150px;
1173 position: relative;
1174 z-index: 11;
1175}
1176#footer {
1177 font-size:11px;
1178 clear: both;
1179 color: #999;
1180 padding: 15px 0;
1181 margin-top:10px;
1182 width:auto;
1183}
1184#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001185 list-style: none;
1186 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001187}
1188#footer-local li {
1189 display: inline;
1190}
1191#footer-local li+li:before {
1192 content: '|';
1193 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001194 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001195}
1196#footer-global {
1197 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001198 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001199}
1200#footer-global {
1201 border-top: 1px solid #ebebeb;
1202 font-size: 11.5px;
1203 line-height: 1.8;
1204 list-style: none;
1205}
1206#footer-global ul {
1207 margin: 0;
1208}
1209#footer-global li {
1210 display: inline;
1211 font-weight: bold;
1212}
1213#footer-global li+li:before {
1214 content: '¬?';
1215 padding: 0 3px;
1216}
1217* html #footer-global li {
1218 margin: 0 13px 0 0;
1219}
1220* [dir='rtl'] #footer-global li {
1221 margin: 0 0 0 13px;
1222}
1223*+html #footer-global li {
1224 margin: 0 13px 0 0;
1225}
1226*+[dir='rtl'] #footer-global li {
1227 margin: 0 0 0 13px;
1228}
1229#footer-global li a {
1230 font-weight: normal;
1231}
1232.locales {
1233 margin: 10px 0 0 0px;
1234}
1235[dir='rtl'] .locales {
1236 background-position: right center;
1237 float: left;
1238 padding: 0 24px 0 0;
1239}
1240.locales form {
Scott Mainb7f96372013-02-07 16:56:43 -08001241 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001242}
1243.locales select, .sites select {
1244 line-height: 3.08;
1245 margin: 0px 0;
1246 border: solid 1px #EBEBEB;
1247 -webkit-appearance: none;
1248 background: white url('../images/arrows-up-down.png') right center no-repeat;
1249 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001250 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001251 line-height: normal;
1252 padding: 5px;
1253 width: 230px;
1254}
1255}
1256
1257/* =============================================================================
1258 Print Only
1259 ========================================================================== */
1260@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001261 /* configure printed page */
1262 @page {
1263 margin: 0.75in 1in;
1264 widows: 4;
1265 orphans: 4;
1266 }
1267
1268 /* reset spacing metrics */
1269 html, body, .wrap {
1270 margin: 0 !important;
1271 padding: 0 !important;
1272 width: auto !important;
1273 }
1274
1275 /* leave enough space on the left for bullets */
1276 body {
1277 padding-left: 20px !important;
1278 }
1279 #doc-col {
1280 margin-left: 0;
1281 }
1282
1283 /* hide a bunch of non-content elements */
1284 #header, #footer, #nav-x, #side-nav,
1285 .training-nav-top, .training-nav-bottom,
1286 #doc-col .content-footer,
1287 .nav-x, .nav-y,
1288 .paging-links,
1289 a.totop {
1290 display: none !important;
1291 }
1292
1293 /* remove extra space above page titles */
1294 #doc-col .content-header {
1295 margin-top: 0;
1296 }
1297
1298 /* bump up spacing above subheadings */
1299 h2 {
1300 margin-top: 40px !important;
1301 }
1302
1303 /* print link URLs where possible and give links default text color */
1304 p a:after {
1305 content: " (" attr(href) ")";
1306 font-size: 80%;
1307 }
1308 p a {
1309 word-wrap: break-word;
1310 }
1311 a {
1312 color: inherit;
1313 }
1314
1315 /* syntax highlighting rules */
1316 .str { color: #060; }
1317 .kwd { color: #006; font-weight: bold; }
1318 .com { color: #600; font-style: italic; }
1319 .typ { color: #404; font-weight: bold; }
1320 .lit { color: #044; }
1321 .pun { color: #440; }
1322 .pln { color: #000; }
1323 .tag { color: #006; font-weight: bold; }
1324 .atn { color: #404; }
1325 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001326}
1327
1328/* =============================================================================
1329 Columns
1330 ========================================================================== */
1331
1332@media screen, projection, print {
1333.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001334 padding: 2.5em 0;
1335 border-top: solid 1px #ddd;
1336 border-bottom: solid 1px #ddd;
1337 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001338}
1339.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001340 margin: 0 auto;
1341 width: 940px;
1342 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001343}
1344.cols {
1345 height: 1%;
1346 margin: 0 -1.533742331288343558282%;
1347 width: 103.06748466257669%}
1348*+html .cols {
1349 margin-bottom: 20px;
1350}
1351.cols:after {
1352 clear: both;
1353 content: ' ';
1354 display: block;
1355 height: 0;
1356 visibility: hidden;
1357}
1358.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1359.col-13, .col-14, .col-15, .col-16 {
1360 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001361 float: left;
1362 margin-left: 10px;
1363 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001364}
1365/*
1366* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1367.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1368 margin: 0;
1369 padding: 0 1.4% 20px;
1370}
1371[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1372[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1373[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1374 float: right;
1375}
1376*/
1377.col-1 { width: 40px }
1378.col-2 { width: 100px }
1379.col-3 { width: 160px }
1380.col-4 { width: 220px }
1381.col-5 { width: 280px }
1382.col-6 { width: 340px }
1383.col-7 { width: 400px }
1384.col-8 { width: 460px }
1385.col-9 { width: 520px }
1386.col-10 { width: 580px }
1387.col-11 { width: 640px }
1388.col-12 { width: 700px }
1389.col-13 { width: 760px }
1390.col-14 { width: 820px }
1391.col-15 { width: 880px }
1392.col-16 { width: 940px }
1393}
1394
1395.col-right {
1396 margin-right:0px;
1397}
1398
1399@media screen and (max-width:772px) {
1400.col-5, .col-6, .col-7 {
1401 clear: both;
1402 width: 97.0238096%}
1403}
1404
1405/* =============================================================================
1406 Layout
1407 ========================================================================== */
1408@media screen, projection, print {
1409
1410/* --------------------------------------------------------------------------
1411Header, Login, Nav-X, Search
1412*/
1413#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001414 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001415}
1416#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001417 content: "";
1418 display: table;
1419 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001420}
1421.logo, .nav-x {
1422 float: left;
1423}
1424.nav-x {
1425 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001426 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001427}
1428.nav-x a {
1429 color: #333;
1430 font-size: 16px;
1431}
1432.design a.selected {
1433 color: #33b5e5;
1434}
1435.develop a.selected {
1436 color: #F80;
1437}
1438.distribute a.selected {
1439 color: #9C0;
1440}
1441
1442
1443
1444.nav-x li {
1445 display: inline;
1446 margin-right: 45px;
1447}
1448.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001449 float: right;
1450 position: relative;
1451 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001452}
1453.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001454 position: absolute;
1455 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001456}
1457.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001458 width: 220px;
1459 height: 1px;
1460 top: 24px;
1461 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001462}
Scott Mainb7f96372013-02-07 16:56:43 -08001463.search .left, .search .right {
1464 height: 5px;
1465 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001466}
Scott Mainb7f96372013-02-07 16:56:43 -08001467.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001468.search .right { top: 19px; right: 0 }
1469.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001470 float: left;
1471 margin-top: 2px;
1472 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001473}
1474.search .close,
1475#player-frame .close {
1476 position: absolute;
1477 right: 8px;
1478 bottom: 4px;
1479 width: 16px;
1480 height: 16px;
1481 margin: 0;
1482 text-indent: -1000em;
1483 background: url(../images/close.png) no-repeat 0 0;
1484 z-index:9999;
1485}
1486.search .close:hover, .search .close:focus,
1487#player-frame .close:hover, #player-frame .close:focus {
1488 background-position: -16px 0;
1489 cursor:pointer;
1490}
1491#player-frame .close {
1492 top: 6px;
1493}
1494.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001495 color: #999;
1496 font-size: 1em;
1497 width: inherit;
1498 border: none;
1499 margin: 0;
1500 padding:0 0 0 6px;
1501 z-index: 1500;
1502 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001503}
1504.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001505 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001506}
1507.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001508 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001509}
1510.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001511 color: #222;
1512 font-weight: bold;
1513 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001514}
1515/* Search Dropdown */
1516.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001517 padding: 15px;
1518 width: 192px;
1519 border: solid 1px #c5c5c5;
1520 background: #fff;
1521 position: absolute;
1522 top: 35px;
1523 left: 0;
1524 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1525 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1526 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001527}
1528.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001529 list-style-type: none;
1530 margin: 0;
1531 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001532}
1533.search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001534 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001535}
1536.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001537 float: left;
1538 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001539}
1540.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001541 color: #222;
1542 margin: 0;
1543 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001544}
1545.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001546 color: #999;
1547 font-size: 11.5px;
1548 line-height: normal;
1549 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001550}
1551.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001552 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001553}
1554/* --------------------------------------------------------------------------
1555Buttons
1556*/
1557.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001558 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001559 -webkit-border-radius: 2px;
1560 -moz-border-radius: 2px;
1561 border-radius: 2px;
1562 cursor: pointer;
1563}
1564.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001565 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001566 background-color: #09c;
1567 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1568 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1569 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1570 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1571 background-image: -o-linear-gradient(top, #2faddb, #09c);
1572 background-image: linear-gradient(top, #2faddb, #09c);
1573 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1574 border: 1px solid #3990ab;
1575 color: #fff;
1576}
1577.button-secondary, a.button-secondary {
1578 background-color: #f3f3f3;
1579 border: 1px solid #dcdcdc;
1580 color: #444;
1581}
1582a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001583 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001584 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001585 min-width: 54px;
1586 outline: 0;
1587 padding: 8px 15px;
1588 text-align: center;
1589}
1590.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001591 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001592 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001593 min-width: 54px;
1594 outline: 0;
1595 padding: 0 15px;
1596 text-align: center;
1597}
1598.button:hover, a.button:hover {
1599 border-color: #09c;
1600 background-color: #4cadcb;
1601 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1602 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1603 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1604 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1605 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1606 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1607 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1608EndColorStr='#4cadcb',GradientType=0);
1609 color: #fff !important;
1610}
1611.button:active, a.button:active {
1612 background-color: #1e799a;
1613 background-image: none;
1614 border-color: #30b7e6;
1615}
Scott Maindb3678b2012-10-23 14:13:41 -07001616a.button.big.subtitle {
1617 line-height:18px;
1618}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001619.button-secondary:hover, a.button-secondary:hover {
1620 border-color: #dbdbdb;
1621 background-color: #f3f3f3;
1622 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1623 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1624 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1625 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1626 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1627 background-image: linear-gradient(top, #f9f9f9, #ececec);
1628 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1629EndColorStr='#ececec');
1630 color: #33B5E5 !important;
1631}
1632.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001633 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001634 background: #ebebeb; /* Old browsers */
1635 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1636 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001637url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1638Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1639eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1640CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1641eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1642YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1643CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1644CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1645CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1646CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1647R3JhZGllbnQ+
1648CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1649Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001650 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001651#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001652 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001653color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1654/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001655 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700165690%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001657 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001658100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001659 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001660100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001661 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001662100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001663 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001664endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001665 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1666 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1667 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1668 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001669}
1670.button.big {
1671 font-size:20px;
1672 display:inline-block;
1673}
Scott Maindb3678b2012-10-23 14:13:41 -07001674.button.big span.small {
1675 font-size:14px;
1676}
1677.button-caption {
1678 margin-top:10px;
1679 font-size:12px;
1680 font-style:italic;
1681}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001682
1683.button.disabled,
1684.button.disabled:hover,
1685.button.disabled:active {
1686 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001687 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001688 border-color:#999;
1689 cursor:default;
1690}
1691
1692.training-nav-top a.button-secondary,
1693.training-nav-bottom a.button-secondary {
1694 display:block;
1695 float:left;
1696 margin:0;
1697 width:130px;
1698 text-transform:uppercase;
1699 font-weight:bold;
1700
1701 background-color: #f3f3f3;
1702 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1703 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1704 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1705 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1706 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1707 background-image: linear-gradient(top, #f9f9f9, #ececec);
1708 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1709EndColorStr='#ececec');
1710 color: #33B5E5;
1711}
1712
1713.training-nav-top a.button-secondary:hover,
1714.training-nav-bottom a.button-secondary:hover {
1715 background-color: #09c;
1716 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1717 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1718 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1719 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1720 background-image: -o-linear-gradient(top, #2faddb, #09c);
1721 background-image: linear-gradient(top, #2faddb, #09c);
1722 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1723 border: 1px solid #3990ab;
1724 color: #fff !important;
1725}
1726
1727.training-nav-top a.button-secondary.last,
1728.training-nav-bottom a.button-secondary.last {
1729 border-left:0;
1730}
1731
1732.training-nav-top a.button-secondary.double-size,
1733.training-nav-bottom a.button-secondary.double-size {
1734 width:291px;
1735}
1736
1737.training-nav-top,
1738.training-nav-bottom {
1739 float:right;
1740 margin:0 0 0 20px;
1741}
1742
1743.training-nav-bottom {
1744 padding:0 0 20px;
1745}
1746
1747#tb-wrapper,
1748#qv-wrapper {
1749 float:right;
1750 clear:right;
1751 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1752 padding:0 0 20px;
1753}
1754
1755#tb,
1756#qv {
1757 font-size:13px;
1758 line-height:18px;
1759 width:238px;
1760 border:1px solid #ccc;
1761 float:right;
1762}
1763
1764#tb {
1765 width:278px;
1766}
1767
1768#tb h2,
1769#qv h2 {
1770 margin:10px 15px;
1771 padding:0;
1772 text-transform:uppercase;
1773 border-bottom:1px solid gainsboro;
1774}
1775
1776#tb *,
1777#qv * {
1778 font-size:inherit;
1779}
1780
1781#tb .download-box {
1782 padding:0 0 0 15px;
1783}
1784
1785#tb .download-box .filename {
1786 font-size:11px;
1787 margin:4px 4px 10px;
1788 color:#666;
1789}
1790
1791
1792/* Dev guide quicknav */
1793
1794.sidebox-wrapper {
1795 float:right;
1796 clear:right;
1797 margin:0 0 0 20px;
1798 padding:0 0 20px;
1799}
1800
1801.sidebox {
1802 width:226px;
1803 font-size:13px;
1804 line-height:18px;
1805 border-left:4px solid #99CC00;
1806 float:right;
1807 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001808 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001809}
1810
1811.sidebox h2,
1812.sidebox h3,
1813.sidebox h4,
1814.sidebox h5 {
1815 font-weight:bold;
1816 margin:0 0 10px;
1817}
1818
1819.sidebox * {
1820 font-size:inherit;
1821}
1822
1823#tb ol,
1824#tb ul,
1825#qv ul {
1826 margin:0 15px 10px 35px;
1827}
1828
1829#qv ol {
1830 list-style:none;
1831 margin:0 15px 15px;
1832 font-size:inherit;
1833 line-height:inherit;
1834}
1835
1836#tb ol ol,
1837#tb ul ul,
1838#qv ol ol,
1839#qv ul ul,
1840.sidebox ol ol,
1841.sidebox ul ul {
1842 margin-bottom:0;
1843}
1844
1845#qv ol ol {
1846 margin:3px 0 3px 15px;
1847}
1848
1849.sidebox p,
1850#qv p,
1851#tb p {
1852 margin: 0 0 10px;
1853}
1854
1855
1856/* --------------------------------------------------------------------------
1857Form
1858*/
1859.article form {
1860 margin: 0 0 20px;
1861}
1862.article form .form-required {
1863 color: #dd4b39;
1864}
1865.article form fieldset {
1866 margin: 0 0 20px;
1867 padding: 0;
1868}
1869.article form legend {
1870 display: block;
1871 line-height: 1.5;
1872 margin: 0;
1873 padding: 0;
1874}
1875/*
1876.article form ol, .article form ul {
1877 margin: 0 0 0 1em;
1878 padding: 0 0 0 1em;
1879}
1880[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1881 margin: 0 1em 0 0;
1882 padding: 0 1em 0 0;
1883}
1884.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1885ul ul {
1886 list-style: none;
1887 margin: 0;
1888 padding: 0;
1889}
1890.article form li {
1891 margin: 0 0 20px;
1892}
1893.article form li li {
1894 margin: 0 0 5px;
1895}
1896*/
1897.article form label {
1898 display: block;
1899 margin: 0 0 5px;
1900 padding: 0;
1901}
1902.article form input[type='text'], .article form select, .article form textarea, .article form
1903.checkbox-group, .article form .radio-group {
1904 margin-bottom: 15px;
1905}
1906.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001907 width: 13px;
1908 height: 13px;
1909 background: #fff;
1910 border: solid 1px #c6c6c6;
1911 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001912}
1913.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08001914 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07001915}
1916.article form select {
1917 border: solid 1px #ebebeb;
1918 border-top-color: #ddd;
1919 -webkit-appearance: none;
1920 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1921 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001922 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001923 line-height: normal;
1924 padding: 5px;
1925 width: 130px;
1926}
1927
1928.article form .browse .browse-msg {
Scott Mainb7f96372013-02-07 16:56:43 -08001929 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001930}
1931.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001932 height: auto;
1933 line-height: 25px;
1934 font-size: 11px;
1935 padding: 0 8px;
1936 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001937}
1938.article form input[type='text'], .article form textarea {
1939 border: 1px solid #ebebeb;
1940 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001941 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001942 line-height: normal;
1943 padding: 6px 10px;
Scott Mainb7f96372013-02-07 16:56:43 -08001944 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001945}
1946.article form textarea {
1947 height: 150px;
1948}
1949.article form input[type='text']:focus, .article form textarea:focus {
1950 border-color: #33B5E5;
1951 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1952 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1953 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1954 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1955 outline: 0;
1956}
1957.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1958 color: #999;
1959}
1960.article form input[type='text'][disabled], .article form textarea[disabled] {
1961 background-color: #ebebeb;
1962}
1963form .form-error input[type='text'], form .form-error textarea {
1964 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08001965 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001966}
1967.aside {
1968 -moz-border-radius: 2px;
1969 -webkit-border-radius: 2px;
1970 border-radius: 2px;
1971 margin: 10px 0;
1972 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08001973 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001974 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08001975 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001976}
1977/*
1978.aside, .notification, .promo {
1979 -moz-border-radius: 2px;
1980 -webkit-border-radius: 2px;
1981 border-radius: 2px;
1982 margin: 10px 0;
1983 padding: 10px;
1984 position: relative;
1985}
1986.aside>:first-child, .notification>:first-child, .promo>:first-child {
1987 margin-top: 0;
1988}
1989.aside>:last-child, .notification>:last-child, .promo>:last-child {
1990 margin-bottom: 0;
1991}
1992.aside {
1993 background: #f9f9f9;
1994}
1995.notification {
1996 background: #fffbe4;
1997 border-color: #f8f6e6;
1998}
1999.promo {
2000 background: #f6f9ff;
2001 border-color: #eff2f9;
2002}
2003*/
Scott Maindb3678b2012-10-23 14:13:41 -07002004
2005/* SDK TOS styles */
2006
2007div.sdk-terms {
2008 white-space: pre-wrap;
2009 word-wrap: break-word;
2010 font-family: inherit;
2011 font-size: inherit;
2012 padding: 10px;
2013 height: 370px;
2014 width: 738px;
2015 border: 1px solid #444;
2016 background: transparent;
2017 overflow:auto;
2018 margin:0 0 10px;
2019}
2020
2021div.sdk-terms.fullsize {
2022 padding: 0;
2023 height: auto;
2024 width: auto;
2025 border:none;
2026}
2027
2028div.sdk-terms h3,
2029div.sdk-terms h2 {
2030 margin:0;
2031}
2032
2033div#sdk-terms-form {
2034 padding:0 0 0 10px;
2035}
2036
Scott Main11ac05b2012-11-15 14:57:44 -08002037div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002038 display:inline;
2039 margin:4px 4px 4px 0;
2040}
2041
2042
Scott Maine4d8f1b2012-06-21 18:03:05 -07002043/* --------------------------------------------------------------------------
2044Code Style
2045*/
2046pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002047 margin:0 0 1em 0;
2048 padding: 1em;
2049 overflow: auto;
2050 border: solid 1px #ddd;
Scott Mainb7f96372013-02-07 16:56:43 -08002051 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002052}
2053.str { color: #080; }
2054.kwd { color: #008; }
2055.com { color: #800; }
2056.typ { color: #606; }
2057.lit { color: #066; }
2058.pun { color: #660; }
2059.pln { color: #000; }
2060.tag { color: #008; }
2061.atn { color: #828; }
2062.atv { color: #080; }
2063.dec { color: #606; }
2064
2065/* --------------------------------------------------------------------------
2066Three-Pane
2067*/
2068/* Package Nav & Classes Nav */
2069.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002070 position: relative;
2071 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002072}
2073#packages-nav .js-pane,
2074#classes-nav .js-pane {
2075 overflow:visible;
2076}
2077#packages-nav {
2078 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002079 max-height: inherit;
2080 overflow: hidden;
2081 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002082}
2083#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002084 overflow: hidden;
2085 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002086}
2087#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002088 list-style-type: none;
2089 margin: 10px 0 20px 0;
2090 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002091}
2092#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002093 font-weight: bold;
2094 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002095}
2096#packages-nav li,
2097#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002098 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002099}
2100#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2101#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002102 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002103}
2104#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2105#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2106#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002107 color: #222;
2108 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002109}
2110#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2111#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002112 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002113}
2114#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2115a:visited,
2116#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2117a:visited,
2118#nav-tree li div.selected {
2119 font-weight: 500;
2120 color: #0099cc;
2121 background-color:#fff; }
2122 #packages-nav li.selected ul li a,
2123 #classes-nav li.selected ul li a {
2124 /* don't highlight child items */
2125 color: #555555; }
2126#nav-tree li div.selected a {
2127 font-weight: 500;
2128 color: #0099cc;
2129}
2130#nav-swap {
2131 height:30px;
2132 border-top:1px solid #ccc;
2133}
2134#nav-swap a {
2135 display:inline-block;
2136 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002137 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002138 font-size: 12px;
2139 padding: 5px 0 5px 5px;
2140}
2141
2142#nav-swap .fullscreen {
2143 float: right;
2144 width: 24px;
2145 height: 24px;
2146 text-indent: -1000em;
2147 padding:0;
2148 margin:3px 5px 0;
2149 background: url(../images/fullscreen.png) no-repeat -24px 0;
2150}
2151#nav-swap .fullscreen.disabled {
2152 background-position: 0 0;
2153}
2154#nav-swap .fullscreen:hover,
2155#nav-swap .fullscreen:focus {
2156 cursor:pointer;
2157}
2158
2159
2160/* nav tree */
2161#side-nav, #devdoc-nav, #swapper,
2162#nav-tree, #tree-list {
2163 overflow:hidden;
2164 margin-left:0;
2165}
2166
2167#nav-tree ul {
2168 list-style:none;
2169 padding:0;
2170 margin:10px 0;
2171}
2172
2173#nav-tree ul li div {
2174 padding:0 0 0 4px;
2175}
2176
2177#side-nav #nav-tree ul li a,
2178#side-nav #nav-tree ul li span.no-children {
2179 padding: 0;
2180 margin: 0;
2181}
2182
2183#nav-tree .plus {
2184 margin: 0 3px 0 0;
2185}
2186
2187#nav-tree ul ul {
2188 list-style: none;
2189 margin: 0;
2190 padding: 0 0 0 0;
2191}
2192
2193#nav-tree ul li {
2194 margin: 0;
2195 padding: 0 0 0 0;
2196 white-space: nowrap;
2197}
2198
2199#nav-tree .children_ul {
2200 padding:0;
2201 margin:0;
2202}
2203#nav-tree .children_ul li div {
2204 padding:0 0 0 10px;
2205}
2206#nav-tree .children_ul .children_ul li div {
2207 padding:0 0 0 20px;
2208}
2209
2210#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002211 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002212 text-decoration: none;
2213}
2214
2215#nav-tree span.label {
2216 width: 100%;
2217}
2218
2219#nav-tree {
2220 overflow-x: auto;
2221 overflow-y: scroll;
2222 outline:0;
2223}
2224
2225
2226/* Content */
2227#doc-col {
2228 margin-right:0;
2229}
2230#doc-content-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002231 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002232}
2233#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002234 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002235}
2236#doc-header {
Scott Mainb7f96372013-02-07 16:56:43 -08002237 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002238}
2239#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002240 line-height: 0;
2241 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002242}
2243#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002244 float: right;
2245 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002246}
2247#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002248 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002249}
2250#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002251 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002252}
2253#api-nav-header {
2254 height:19px; /* plus 16px padding = 35; same as #nav li */
2255 font-size:14px;
2256 padding: 8px 0;
2257 margin: 0;
2258 border-bottom: 1px solid #CCC;
2259 background:#e9e9e9;
2260 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2261
2262}
2263#api-nav-title {
2264 padding:0 5px;
2265 white-space:nowrap;
2266}
2267
2268#api-level-toggle {
2269 float:right;
2270 padding:0 5px;
2271}
2272
2273#api-level-toggle label {
2274 margin:0;
2275 vertical-align:top;
2276 line-height: 19px;
2277 font-size:13px;
2278 height: 19px;
2279}
2280
2281#api-level-toggle .select-wrapper {
2282 width: 35px;
2283 display: inline-block;
2284 overflow: hidden;
2285}
2286#api-level-toggle select {
2287 border: 0;
2288 appearance:none;
2289 -moz-appearance:none;
2290 -webkit-appearance: none;
2291 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002292 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002293 height: 19px;
2294 line-height: 19px;
2295 padding: 0;
2296 margin:1px 0 0 0;
2297 width:150%;
2298 font-size:13px;
2299 vertical-align:top;
2300 outline:0;
2301}
2302
2303
2304/* Toggle for revision notes and stuff */
2305div.toggle-content.closed .toggle-content-toggleme {
2306 display:none;
2307}
2308
2309#jd-content img.toggle-content-img {
2310 margin:0 5px 5px 0;
2311}
Scott Main220c3442012-07-16 15:40:17 -07002312div.toggle-content p {
2313 margin:10px 0 0;
2314}
2315div.toggle-content-toggleme {
2316 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002317}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002318
2319
2320/* API LEVEL FILTERED MEMBERS */
2321
2322.absent,
2323.absent a:link,
2324.absent a:visited,
2325.absent a:hover,
2326.absent * {
2327 color:#bbb !important;
2328 cursor:default !important;
2329 text-decoration:none !important;
2330}
2331#devdoc-nav li.absent.selected,
2332#devdoc-nav li.absent.selected *,
2333#devdoc-nav div.label.absent.selected,
2334#devdoc-nav div.label.absent.selected * {
2335 background-color:#eaeaea !important;
2336}
2337.absent h4.jd-details-title,
2338.absent h4.jd-details-title * {
2339 background-color:#f6f6f6 !important;
2340}
2341.absent img {
2342 opacity: .3;
2343 filter: alpha(opacity=30);
2344 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2345}
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355/* JQUERY RESIZABLE STYLES */
2356.ui-resizable { position: relative; }
2357.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2358.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2359/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2360body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2361.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2362border-bottom: solid 1px #ededed;
2363 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2364/*
2365.ui-resizable-e {
2366cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
23671px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2368*/
2369
2370/* --------------------------------------------------------------------------
2371Lightbox
2372*/
Scott Mainb7f96372013-02-07 16:56:43 -08002373.lightbox {
2374 width: 769px;
2375 padding: 1.5em;
2376 margin: 0 auto;
2377 border: solid 1px #dcdcdc;
2378 background: #fff;
2379 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2380 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2381 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002382}
2383.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002384 float: left;
2385 width: 720px;
2386 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002387}
2388.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002389 float: right;
2390 width: 10px;
2391 height: 10px;
2392 margin: -10px -10px 10px 0;
2393 text-indent: -1000em;
2394 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002395}
2396.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002397 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002398}
2399
2400/* --------------------------------------------------------------------------
2401Misc
2402*/
2403
2404
2405.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002406 content: "";
2407 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002408}
2409.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002410 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002411}
2412.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002413 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002414}
2415table.blank th, table.blank td {
2416 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002417 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002418}
2419.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002420 margin: 0.5em 0 2em 0;
2421 color: #000;
2422 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002423}
2424
2425.nolist {
2426 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002427 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002428}
Scott Main5747d382012-11-30 12:02:42 -08002429#tb .nolist {
2430 margin-left:15px;
2431}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002432
Scott Maine4d8f1b2012-06-21 18:03:05 -07002433
2434pre.classic {
2435 background-color:transparent;
2436 border:none;
2437 padding:0;
2438}
2439
2440p.img-caption {
2441 margin: -10px 0 20px;
2442 font-size:13px;
2443 color:#666;
2444}
2445
Scott Main48dd7f22013-02-21 10:52:02 -08002446div.figure,
2447div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002448 float:right;
2449 clear:right;
2450 margin:10px 0 0 0;
2451 padding:0 0 0 20px;
2452 /* width must be defined w/ an inline style matching the image width */
2453}
2454
Scott Main48dd7f22013-02-21 10:52:02 -08002455div.figure-left {
2456 float:left;
2457 clear:left;
2458 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002459 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002460 /* width must be defined w/ an inline style matching the image width */
2461}
2462
2463img.frame {
2464 border:1px solid #DDD;
2465 padding:4px;
2466}
2467
Scott Maine4d8f1b2012-06-21 18:03:05 -07002468p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002469 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002470 font-size:13px;
2471 color:#666;
2472}
2473
Scott Main24bbcd52012-09-21 14:33:43 -07002474p.code-caption {
2475 margin: 0 0 4px 0;
2476 font: 13px/1.5 'courier new', courier, monospace;
2477 color:#666;
2478}
2479
Scott Main54d2a9b2012-07-24 14:54:32 -07002480div.note,
2481div.caution,
2482div.warning {
2483 margin: 0 0 15px;
2484}
2485
Scott Maine4d8f1b2012-06-21 18:03:05 -07002486p.note, div.note,
2487p.caution, div.caution,
2488p.warning, div.warning {
2489 padding: 0 0 0 10px;
2490 border-left: 4px solid;
2491}
2492
Scott Main24bbcd52012-09-21 14:33:43 -07002493p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002494 border-color: #258AAF;
2495}
2496
Scott Main24bbcd52012-09-21 14:33:43 -07002497p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002498 border-color: #FF8800;
2499}
2500
Scott Main24bbcd52012-09-21 14:33:43 -07002501p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002502 border-color: #ff4443;
2503}
2504
Scott Main412eaf22012-06-22 14:36:33 -07002505div.note.design {
2506 border-left: 4px solid #33B5E5;
2507}
2508
2509div.note.develop {
2510 border-left: 4px solid #F80;
2511}
2512
2513div.note.distribute {
2514 border-left: 4px solid #9C0;
2515}
2516
2517.note p, .caution p, .warning p {
2518 margin:0 0 5px;
2519}
2520
2521.note p:last-child, .caution p:last-child, .warning p:last-child {
2522 margin-bottom:0;
2523}
2524
Scott Main5b5ff1a2012-09-12 10:29:45 -07002525body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002526 display:block;
2527 float:right;
2528 width:280px;
2529 font-size:20px;
2530 font-style:italic;
2531 line-height:24px;
2532 color:#33B5E5;
2533 margin:0 0 20px 30px;
2534}
2535
Scott Maine4d8f1b2012-06-21 18:03:05 -07002536div.design-announce p {
2537 margin:0 0 10px;
2538}
2539
2540#devdoc-nav a.totop {
2541 display:block;
2542 top:0;
2543 width:inherit;
2544 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2545 text-indent:-9999em;
2546}
2547#devdoc-nav a.totop {
2548 position:fixed;
2549 display:none;
2550}
2551#devdoc-nav a.totop:hover {
2552 background-color:#33B5E5;
2553}
2554
2555.content-footer a.totop {
2556 text-transform:uppercase;
2557 line-height:30px;
2558}
2559
Scott Maindb3678b2012-10-23 14:13:41 -07002560.expandable {
2561 height:34px;
2562 padding-left:20px;
2563 position:relative;
2564}
2565.expandable:before {
2566 content: '';
2567 background-image: url(../images/styles/disclosure_down.png);
2568 background-repeat:no-repeat;
2569 background-position: -12px -9px;
2570 width: 20px;
2571 height: 20px;
2572 display: inline-block;
2573 position: absolute;
2574 top: 0;
2575 left: 0; }
2576}
2577.expandable.expanded:before {
2578 background-image: url(../images/styles/disclosure_up.png);
2579}
2580
2581
2582
Scott Maine4d8f1b2012-06-21 18:03:05 -07002583/* -----------------------------------------------
2584Dialog box for popup messages
2585*/
2586
2587div.dialog {
2588 height:0;
2589 margin:0 auto;
2590}
2591
2592div.dialog>div {
2593 z-index:99;
2594 position:fixed;
2595 margin:70px 0;
2596 width: 391px;
2597 height: 200px;
2598 background: #F7F7F7;
2599-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2600-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2601box-shadow: 0 0 15px rgba(0,0,0,0.5);
2602}
2603/* IE6 can't position fixed */
2604* html div.dialog div { position:absolute; }
2605
2606
2607div#deprecatedSticker {
2608 display:none;
2609 z-index:99;
2610 position:fixed;
2611 right:15px;
2612 top:114px;
2613 margin:0;
2614 padding:1em;
2615 background:#FFF;
2616 border:1px solid #dddd00;
2617 box-shadow:-5px 5px 10px #ccc;
2618 -moz-box-shadow:-5px 5px 10px #ccc;
2619 -webkit-box-shadow:-5px 5px 10px #ccc;
2620}
2621
2622div#naMessage {
2623 display:none;
2624 width:555px;
2625 height:0;
2626 margin:0 auto;
2627}
2628
2629div#naMessage div {
2630 z-index:99;
2631 width:450px;
2632 position:fixed;
2633 margin:50px 0;
2634 padding:4em 4em 3em;
2635 background:#FFF;
2636 border:1px solid #999;
2637 box-shadow:-10px 10px 40px #888;
2638 -moz-box-shadow:-10px 10px 40px #888;
2639 -webkit-box-shadow:-10px 10px 40px #888;
2640}
2641/* IE6 can't position fixed */
2642* html div#naMessage div { position:absolute; }
2643
2644div#naMessage strong {
2645 font-size:1.1em;
2646}
2647
2648
2649/* --------------------------------------------------------------------------
2650Slideshow Controls & Next/Prev
2651*/
Scott Mainb7f96372013-02-07 16:56:43 -08002652.slideshow-next, .slideshow-prev {
2653 width: 20px;
2654 height: 36px;
2655 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002656}
2657.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08002658 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002659}
2660.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002661 content: "";
2662 display: table;
2663 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002664}
2665a.slideshow-next, a.slideshow-next:visited {
2666
Scott Mainb7f96372013-02-07 16:56:43 -08002667 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002668
Scott Mainb7f96372013-02-07 16:56:43 -08002669 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002670
2671}
2672
2673a.slideshow-prev, a.slideshow-prev:visited {
2674
Scott Mainb7f96372013-02-07 16:56:43 -08002675 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002676
Scott Mainb7f96372013-02-07 16:56:43 -08002677 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07002678
2679}
2680
2681.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2682
Scott Mainb7f96372013-02-07 16:56:43 -08002683 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002684
2685}
2686
2687.slideshow-next:active, .slideshow-prev:active {
2688
Scott Mainb7f96372013-02-07 16:56:43 -08002689 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002690
2691}
2692.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002693 width: 74px;
2694 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002695}
2696.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002697 display: inline-block;
2698 width: 12px;
2699 height: 12px;
2700 margin: 0 2px 20px 2px;
2701 background: #ccc;
2702 -webkit-border-radius: 50%;
2703 -moz-border-radius: 50%;
2704 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002705}
2706.slideshow-nav a:hover, .slideshow-nav a:focus {
2707
Scott Mainb7f96372013-02-07 16:56:43 -08002708 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002709}
2710
2711.slideshow-nav a:active {
2712
Scott Mainb7f96372013-02-07 16:56:43 -08002713 background: #1e799a;
2714 background: #ebebeb;
2715 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2716 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2717 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07002718}
2719.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002720 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07002721}
2722/* --------------------------------------------------------------------------
2723Tabs
2724*/
2725ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08002726 padding: 0;
2727 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002728}
2729ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002730 content: "";
2731 display: table;
2732 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002733}
2734ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08002735 list-style-type: none;
2736 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002737}
2738ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002739 display: block;
2740 height: 36px;
2741 line-height: 36px;
2742 padding: 0 15px;
2743 margin-right: 2px;
2744 color: #222;
2745 -moz-border-radius-topleft: 2px;
2746 -moz-border-radius-topright: 2px;
2747 -moz-border-radius-bottomright: px;
2748 -moz-border-radius-bottomleft: px;
2749 -webkit-border-radius: 2px 2px px px;
2750 border-radius: 2px 2px px px;
2751 border-top: solid 1px #ebebeb;
2752 border-left: solid 1px #ebebeb;
2753 border-right: solid 1px #ebebeb;
2754 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002755 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2756 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2757 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2758 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2759 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2760 background-image: linear-gradient(top, #ffffff, #fafafa);
2761 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2762EndColorStr='#fafafa');
2763}
2764ul.tabs li a:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002765 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002766}
2767ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08002768 height: 37px;
2769 color: #33B5E5;
2770 background-color: #f7f7f7;
2771 background-image: none;
2772 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002773}
2774.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002775 padding: 1.2em;
2776 margin: -1px 0 2em 0;
2777 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002778 -moz-border-radius: 2px;
2779 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08002780 border: solid 1px #ddd;
2781 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002782}
2783/* --------------------------------------------------------------------------
2784Feature Boxes
2785*/
2786.feature-box {
2787 width: 291px;
2788 height: 200px;
2789 position: relative;
2790 background: #F7F7F7;
2791}
2792.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08002793 z-index: 100;
2794 position: absolute;
2795 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002796}
2797.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08002798 width: 291px;
2799 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002800}
2801.dialog .box-border .top,
2802.dialog .box-border .bottom { width:391px; }
2803
Scott Mainb7f96372013-02-07 16:56:43 -08002804.box-border .left, .box-border .right {
2805 width: 1px;
2806 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002807}
2808.box-border .top { top: 0; left: 0 }
2809.box-border .top .left { top: 1px; left: 0 }
2810.box-border .top .right { top: 1px; right: 0 }
2811.box-border .bottom .left { top: -8px; left: 0 }
2812.box-border .bottom { top: 200px; left: 0 }
2813.box-border .bottom .right { top: -8px; right: 0 }
2814
2815.feature-box h4,
2816.dialog h4 {
2817 margin: 15px 18px 10px;
2818 padding:0;
2819}
2820
2821.feature-box p,
2822.dialog p {
2823 margin: 10px 18px;
2824 padding:0;
2825}
2826.feature-box .link,
2827.dialog .link {
2828 border-top: 1px solid #dedede;
2829 bottom: 0;
2830 position: absolute;
2831 width: inherit;
2832}
2833.feature-box a, .feature-box h4,
2834.dialog a, .dialog h4 {
2835 -webkit-transition: color .4s ease;
2836 -moz-transition: color .4s ease;
2837 -o-transition: color .4s ease;
2838 transition: color .4s ease;
2839}
2840.feature-box:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08002841 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002842}
2843.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Mainb7f96372013-02-07 16:56:43 -08002844.left, .feature-box:hover .right {
2845 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002846}
2847.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08002848 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002849}
2850/* --------------------------------------------------------------------------
2851Page-Specific Styles
2852*/
2853.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08002854 position: relative;
2855 float: left;
2856 width: 92px;
2857 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002858}
2859.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08002860 color: #fff;
2861 font-size: 11.5px;
2862 width: 82px;
2863 height: 82px;
2864 margin-top:-30px;
2865 line-height: 82px;
2866 text-align: center;
2867 border: solid 5px #fff;
2868 -webkit-border-radius: 50%;
2869 -moz-border-radius: 50%;
2870 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002871}
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886/* ########### REFERENCE DOCS ################## */
2887
2888#packages-nav h2,
2889#classes-nav h2 {
2890 font-size:18px;
2891 margin:0;
2892 padding:0 0 0 4px;
2893}
2894
2895#jd-header {
2896 padding: 0 0 5px;
2897 margin: 20px 0 10px;
2898 font-size:13px;
2899 border-bottom:solid 1px #ccc;
2900}
2901
2902#jd-header h1 {
2903 margin:0;
2904 padding:0;
2905}
2906
2907/* page-top-right container for reference pages (holds
2908links to summary tables) */
2909#api-info-block {
2910 font-size:13px;
2911 margin:20px 0 0;
2912 padding:0 10px 6px;
2913 font-weight:normal;
2914 float:right;
2915 text-align:right;
2916 color:#999;
2917 max-width:70%;
2918}
2919
2920#api-info-block div.api-level {
2921 font-weight:bold;
2922 font-size:inherit;
2923 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07002924 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002925 padding:0;
2926 margin:0;
2927}
2928
2929/* inheritance table */
2930.jd-inheritance-table {
2931 border-spacing:0;
2932 margin:0;
2933 padding:0;
2934 font-size:13px;
2935 background-color:transparent;
2936}
2937.jd-inheritance-table tr td {
2938 border: none;
2939 margin: 0;
2940 padding: 0;
2941 background-color:transparent;
2942}
2943.jd-inheritance-table .jd-inheritance-space {
2944 font-weight:bold;
2945 width:1em;
2946}
2947.jd-inheritance-table .jd-inheritance-interface-cell {
2948 padding-left: 17px;
2949}
2950
2951
2952
2953.jd-sumtable a {
2954 text-decoration:none;
2955}
2956
2957.jd-sumtable a:hover {
2958 text-decoration:underline;
2959}
2960
2961/* the link inside a sumtable for "Show All/Hide All" */
2962.toggle-all {
2963 display:block;
2964 float:right;
2965 font-weight:normal;
2966 font-size:0.9em;
2967}
2968
2969/* adjustments for in/direct subclasses tables */
2970.jd-sumtable.jd-sumtable-subclasses {
2971 margin: 1em 0 0 0;
2972 max-width:968px;
2973 background-color:transparent;
2974 font-size:13px;
2975}
2976
2977/* extra space between end of method name and open-paren */
2978.sympad {
2979 margin-right: 2px;
2980}
2981
2982/* right alignment for the return type in sumtable */
2983.jd-sumtable .jd-typecol {
2984 text-align:right;
2985}
2986
2987/* adjustments for the expando table-in-table */
2988.jd-sumtable-expando {
2989 margin:.5em 0;
2990 padding:0;
2991}
2992
2993/* a div that holds a short description */
2994.jd-descrdiv {
2995 padding:3px 1em 0 1em;
2996 margin:0;
2997 border:0;
2998}
2999
3000#jd-content img.jd-expando-trigger-img {
3001 padding:0 4px 4px 0;
3002 margin:0;
3003}
3004
3005.jd-sumtable-subclasses div#subclasses-direct,
3006.jd-sumtable-subclasses div#subclasses-indirect {
3007 margin:0 0 0 13px;
3008}
3009
3010
3011
3012/********* MEMBER REF *************/
3013
3014
3015.jd-details {
3016/* border:1px solid #669999;
3017 padding:4px; */
3018 margin:0 0 1em;
3019}
3020
3021/* API reference: a container for the
3022.tagdata blocks that make up the detailed
3023description */
3024.jd-details-descr {
3025 padding:0;
3026 margin:.5em .25em;
3027}
3028
3029/* API reference: a block containing
3030a detailed description, a params table,
3031seealso list, etc */
3032.jd-tagdata {
3033 margin:.5em 1em;
3034}
3035
3036.jd-tagdata p {
3037 margin:0 0 1em 1em;
3038}
3039
3040/* API reference: adjustments to
3041the detailed description block */
3042.jd-tagdescr {
3043 margin:.25em 0 .75em 0;
3044}
3045
3046.jd-tagdescr ol,
3047.jd-tagdescr ul {
3048 margin:0 2.5em;
3049 padding:0;
3050}
3051
3052.jd-tagdescr table,
3053.jd-tagdescr img {
3054 margin:.25em 1em;
3055}
3056
3057.jd-tagdescr li {
3058margin:0 0 .25em 0;
3059padding:0;
3060}
3061
3062/* API reference: heading marking
3063the details section for constants,
3064attrs, methods, etc. */
3065h4.jd-details-title {
3066 font-size:1.15em;
3067 background-color: #E2E2E2;
3068 margin:1.5em 0 .6em;
3069 padding:3px 95px 3px 3px; /* room for api-level */
3070}
Scott Mainab4daf42012-11-30 11:27:17 -08003071body.google h4.jd-details-title {
3072 background-color: #FFF;
3073 padding-top:5px;
3074 border-top: 1px solid #ccc;
3075}
3076body.google table.jd-sumtable th {
3077 background-color: #FFF;
3078 color:#000;
3079}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003080
3081h4.jd-tagtitle {
3082 margin:0;
3083}
3084
3085h4 .normal {
3086 font-weight:normal;
3087}
3088
3089/* API reference: heading for "Parameters", "See Also", etc.,
3090in details sections */
3091h5.jd-tagtitle {
3092 margin:0 0 .25em 0;
3093 font-size:1em;
3094}
3095
3096.jd-tagtable {
3097 margin:0;
3098 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003099 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003100}
3101
3102.jd-tagtable td,
3103.jd-tagtable th {
3104 border:none;
3105 background-color:#fff;
3106 vertical-align:top;
3107 font-weight:normal;
3108 padding:2px 10px;
3109}
3110
3111.jd-tagtable th {
3112 font-style:italic;
3113}
3114
3115/* Inline api level indicator for methods */
3116div.api-level {
3117 font-size:.8em;
3118 font-weight:normal;
3119 color:#999;
3120 float:right;
3121 padding:0 8px 0;
3122 margin-top:-30px;
3123}
3124
3125table.jd-tagtable td,
3126table.jd-tagtable th {
3127 background-color:transparent;
3128}
3129
3130table.jd-tagtable th {
3131 color:inherit;
3132}
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156/* SEARCH FILTER */
3157
3158#search_autocomplete {
3159 font-weight:normal;
3160}
3161
3162#search_filtered_wrapper {
3163 width: 193px;
3164 float: right;
3165}
3166#search_filtered_div {
3167 position:absolute;
3168 z-index:9999;
3169 min-width:171px; /* +padding and border makes this match input width */
3170 padding:5px;
3171 border: solid 1px #C5C5C5;
3172 background: white;
3173 top: 35px;
3174 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3175 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3176 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3177}
3178
3179ul#search_filtered {
3180 min-width:100%;
3181 margin:0;
3182 list-style: none;
3183 margin: 0;
3184 padding: 0;
3185}
3186
Scott Maine4d8f1b2012-06-21 18:03:05 -07003187#search_filtered .jd-selected {
3188 background-color: #33B5E5;
3189 cursor:pointer;
3190}
3191#search_filtered .jd-selected,
3192#search_filtered .jd-selected a {
3193 color:#f7f7f7 !important;
3194}
3195
3196.no-display {
3197 display: none;
3198}
3199
Scott Main7e447ed2013-02-19 17:22:37 -08003200#search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003201 font-size: 0.81em;
3202 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003203 margin: 0 0 2px;
3204 padding: 0;
3205 line-height:1.5em;
3206}
3207
3208#search_filtered li a {
3209 padding:0 5px;
3210 color:#222 !important;
3211}
3212
3213#search_filtered li.header {
3214 color:#aaa;
3215 font-weight:bold;
3216 font-size: 0.81em;
3217 border: none;
3218 margin: 8px 0 2px;
3219 padding:1px 5px;
3220 line-height:1.5em;
3221}
3222
3223#search_filtered li.header:first-child {
3224 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003225}
3226
3227.show-item {
3228 display: table-row;
3229}
3230.hide-item {
3231 display: hidden;
3232}
3233
3234
3235
3236
3237
3238/* SEARCH RESULTS */
3239
Scott Maine4d8f1b2012-06-21 18:03:05 -07003240
3241#leftSearchControl .gsc-twiddle {
3242 background-image : none;
3243}
3244
3245#leftSearchControl td, #searchForm td {
3246 border: 0px solid #000;
3247 padding:0;
3248}
3249
3250#leftSearchControl .gsc-resultsHeader .gsc-title {
3251 padding-left : 0px;
3252 font-weight : bold;
3253 font-size : 13px;
3254 color:#006699;
3255 display : none;
3256}
3257
3258#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3259 display : none;
3260}
3261
3262#leftSearchControl .gsc-resultsRoot {
3263 padding-top : 6px;
3264}
3265
3266#leftSearchControl div.gs-visibleUrl-long {
3267 display : block;
3268 color:#006699;
3269}
3270
3271#leftSearchControl .gsc-webResult {
3272 padding:0 0 20px 0;
3273}
3274
3275.gsc-webResult div.gs-visibleUrl-short,
3276table.gsc-branding,
3277.gsc-clear-button {
3278 display : none;
3279}
3280
3281.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3282.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3283#leftSearchControl a,
3284#leftSearchControl a b {
3285 color:#006699;
3286}
3287
3288.gsc-resultsHeader {
3289 display: none;
3290}
3291
3292/* Disable built in search forms */
3293.gsc-control form.gsc-search-box {
3294 display : none;
3295}
3296table.gsc-search-box {
3297 margin:6px 0 0 0;
3298 border-collapse:collapse;
3299}
3300
3301td.gsc-input {
3302 padding:0 2px;
3303 width:100%;
3304 vertical-align:middle;
3305}
3306
3307input.gsc-input {
3308 border:1px solid #BCCDF0;
3309 width:99%;
3310 padding-left:2px;
3311 font-size:.95em;
3312}
3313
3314td.gsc-search-button {
3315 text-align: right;
3316 padding:0;
3317 vertical-align:top;
3318}
3319
3320
3321#searchResults {
3322 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3323(it doesn't) */
3324 height:auto;
3325}
3326
3327#searchResults .gsc-control {
3328 position:relative;
3329 width:auto;
3330 padding:0 0 10px;
3331}
3332
3333#searchResults .gsc-tabsArea {
3334 position:relative;
3335 white-space:nowrap;
3336 float:left;
3337 width:200px;
3338}
3339
3340#searchResults .gsc-above-wrapper-area {
3341 display:none;
3342}
3343
3344#searchResults .gsc-resultsbox-visible {
3345 float:left;
3346 width:720px;
3347 margin-left:20px;
3348}
3349
3350#searchResults .gsc-tabHeader {
3351 padding: 3px 6px;
3352 position:relative;
3353 width:auto;
3354 display:block;
3355}
3356
3357#searchResults h2#searchTitle {
3358 padding:0;
3359 margin:5px 0;
3360 border:none;
3361}
3362
3363#searchResults h2#searchTitle em {
3364 font-style:normal;
3365 color:#33B5E5;
3366}
3367
3368#searchResults .gsc-table-result {
3369 margin:5px 0 10px 0;
3370 background-color:transparent;
3371}
3372#searchResults .gs-web-image-box, .gs-promotion-image-box {
3373 width:120px;
3374}
3375#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3376 max-width:120px;
3377}
3378
3379#searchResults .gsc-table-result .gsc-thumbnail {
3380 padding:0 20px 0 0;
3381}
3382
3383#searchResults td {
3384 background-color:transparent;
3385}
3386
3387#searchResults .gsc-expansionArea {
3388 position:relative;
3389}
3390#searchResults .gsc-tabsArea .gsc-cursor-box {
3391 width:200px;
3392 padding:20px 0 0 1px;
3393}
3394#searchResults .gsc-cursor-page {
3395 display:inline-block;
3396 float:left;
3397 margin:-1px 0 0 -1px;
3398 padding:0;
3399 height:27px;
3400 width:27px;
3401 text-align:center;
3402 line-height:2;
3403}
3404
3405#searchResults .gsc-tabHeader.gsc-tabhInactive,
3406#searchResults .gsc-cursor-page {
3407 text-decoration:none;
3408 color:#258AAF;
3409 border: solid 1px #DADADA;
3410}
3411
3412#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3413#searchResults .gsc-cursor-page:hover {
3414 border-color: #DBDBDB;
3415 background-color: #F3F3F3;
3416 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3417 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3418 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3419 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3420 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3421 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3422 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3423EndColorStr='#ececec');
3424 color: #33B5E5;
3425}
3426
3427#searchResults .gsc-tabHeader.gsc-tabhActive,
3428#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3429#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3430#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3431 color:#fff;
3432 background-color: #09C;
3433 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3434 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3435 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3436 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3437 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3438 background-image: linear-gradient(top, #2FADDB, #09C);
3439 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3440 border: 1px solid #3990AB;
3441 z-index:100;
3442}
3443
3444}
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458/*********** PREVIOUSLY dac-styles.css ***************/
3459
3460
Scott Maine4d8f1b2012-06-21 18:03:05 -07003461#header {
3462 border-bottom:0;
3463}
3464
3465#header .wrap {
3466 max-width:940px;
3467 height:41px;
3468 border-bottom:1px solid;
3469 border-color: #ccc;
3470 position:relative;
3471}
3472
3473.about #header .wrap {
3474 border-color: #9933CC;
3475}
3476
3477.design #header .wrap {
3478 border-color: #33b5e5;
3479}
3480
3481.develop #header .wrap {
3482 border-color: #F80;
3483}
3484
3485.distribute #header .wrap {
3486 border-color: #9C0;
3487}
3488
3489.logo a {
3490 width:123px;
3491 float:left;
3492}
3493
3494#header .logo {
3495 margin-top: -6px;
3496 margin-left: 0px;
3497 margin-bottom:0px;
3498 width: 160px;
3499 padding-right:10px;
3500}
3501
3502.search {
3503 height:25px;
3504 margin-top: -3px;
3505 margin-bottom: 0px;
3506}
3507
3508
3509
3510/* Quicknav */
3511.btn-quicknav {
3512 width:20px;
3513 height:28px;
3514 float:left;
3515 margin-left:6px;
3516 padding-right:10px;
3517 position:relative;
3518 cursor:pointer;
3519 border-right:1px solid #CCC;
3520}
3521
3522.btn-quicknav a {
3523 zoom:1;
3524 position:absolute;
3525 top:13px;
3526 left:5px;
3527 display:block;
3528 text-indent:-9999em;
3529 width:10px;
3530 height:5px;
3531 background:url(../images/quicknav_arrow.png) no-repeat;
3532}
3533
3534.btn-quicknav a.arrow-active {
3535 background-position: 0 -5px;
3536 display:none;
3537}
3538
3539#header-wrap.quicknav a.arrow-inactive {
3540 display:none;
3541}
3542
3543.btn-quicknav.active a.arrow-active {
3544 display:block;
3545}
3546
3547.nav-x li {
3548 display:block;
3549 float:left;
3550 margin-right:45px;
3551 -webkit-transition: all 0.25s linear;
3552 -moz-transition: all 0.25s linear;
3553 -ms-transition: all 0.25s linear;
3554 -o-transition: all 0.25s linear;
3555 transition: all 0.25s linear;
3556}
3557
3558#header-wrap.quicknav .nav-x li {
3559 min-width:160px;
3560 margin-right:20px;
3561}
3562
3563#header-wrap.quicknav li.last {
3564 margin-right:0px;
3565}
3566
3567#quicknav {
3568 float:none;
3569 clear:both;
3570 margin-left:180px;
3571 margin-top:-30px;
3572 display:none;
3573 overflow:hidden;
3574}
3575
3576#header-wrap.quicknav #quicknav {
3577
3578}
3579
3580#quicknav ul {
3581 margin:10px 0;
3582 padding:0;
3583}
3584
3585#quicknav ul li.design {
3586 border-top:1px solid #33b5e5;
3587}
3588
3589#quicknav ul li.develop {
3590 border-top:1px solid #FF8800;
3591}
3592
3593#quicknav ul li.distribute {
3594 border-top:1px solid #99cc00;
3595}
3596
3597#quicknav ul li {
3598 display:block;
3599 float:left;
3600 margin:0 20px 0 0;
3601 min-width:140px;
3602}
3603
3604#quicknav ul li.last {
3605 margin-right:0px;
3606}
3607
3608#quicknav ul li ul li {
3609 float:none;
3610}
3611
3612#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003613 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003614}
3615
3616#quicknav ul li li ul,
3617#quicknav ul li li ul li {
3618 margin:0;
3619}
3620
3621#quicknav ul li li ul li:before {
3622 content:"\21B3";
3623}
3624
3625#header-wrap {
3626 -webkit-transition: all 0.25s ease-out;
3627 -moz-transition: all 0.25s ease-out;
3628 -ms-transition: all 0.25s ease-out;
3629 -o-transition: all 0.25s ease-out;
3630 transition: all 0.25s ease-out;
3631
3632}
3633
3634#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003635 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003636
3637}
3638
3639/* SEARCH AND MORE */
3640.search {
3641 position: absolute;
3642 width: 50px;
3643 height:28px;
3644 display: block;
3645 margin-top:-3px;
3646 margin-bottom:7px;
3647 overflow:hidden;
3648 z-index:100;
3649 right:54px;
3650 -webkit-transition: width 0.4s ease;
3651 -moz-transition: width 0.4s ease;
3652 -o-transition: width 0.4s ease;
3653 transition: width 0.4s ease;
3654}
3655
3656.search #search-btn {
3657 width:50px;
3658 height:28px;
3659 background:url(../images/icon_search.png) no-repeat;
3660 float:left;
3661}
3662
3663.search-inner {
3664 width:245px;
3665}
3666
3667.search:hover, .search.active {
3668 width:245px;
3669}
3670
3671.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003672 position: absolute;
3673 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07003674}
3675
3676.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003677 width: 214px;
3678 height: 1px;
3679 top: 24px;
3680 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003681}
3682
Scott Mainb7f96372013-02-07 16:56:43 -08003683.search .left, .search .right {
3684 height: 5px;
3685 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003686}
3687
3688.search .left {
3689 top: 22px;
3690 left: 56px;
3691 background-color:#CCC;
3692}
3693
3694.search .right {
3695 top: 22px;
3696 left: 238px;
3697 background-color:#CCC;
3698}
3699
3700.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08003701 margin-top: 2px;
3702 width: 162px;
3703 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003704}
3705
3706.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08003707 color: #2f2f2f;
3708 font-size: 0.95em;
3709 width: 178px;
3710 border: none;
3711 margin-left: 6px;
3712 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003713 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08003714 background-color: transparent;
3715 border-bottom:1px solid #CCC;
3716 padding:0 0 0 4px;
3717 outline:none;
3718 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003719}
3720
3721.search:hover form input {
3722 border-bottom:1px solid #33B5E5;
3723}
3724
3725.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003726 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003727}
3728
3729.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08003730 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003731}
3732
3733.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08003734 color: #222;
3735 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07003736}
3737
3738.moremenu {
3739 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08003740 position: relative;
3741 width: 50px;
3742 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003743 display: block;
3744 margin-top:-3px;
3745 margin-bottom:7px;
3746 overflow:hidden;
3747 -webkit-transition: width 0.25s ease;
3748 -moz-transition: width 0.25s ease;
3749 -o-transition: width 0.25s ease;
3750 transition: width 0.25s ease;
3751}
3752
3753.moremenu #more-btn {
3754 width:40px;
3755 height:28px;
3756 background:url(../images/icon_more.png) no-repeat;
3757 border-left:1px solid #CCC;
3758 float:left;
3759 cursor:pointer;
3760}
3761
3762.moremenu:hover #more-btn {
3763 background-position:0 -28px;
3764}
3765
3766.morehover {
3767 position:absolute;
3768 right:6px;
3769 top:-9px;
3770 width:40px;
3771 height:35px;
3772 z-index:99;
3773 overflow:hidden;
3774
3775 -webkit-opacity:0;
3776 -moz-opacity:0;
3777 -o-opacity:0;
3778 opacity:0;
3779
3780 -webkit-transform-origin:100% 0%;
3781 -moz-transform-origin:100% 0%;
3782 -o-transform-origin:100% 0%;
3783 transform-origin:100% 0%;
3784
3785 -webkit-transition-property: -webkit-opacity;
3786 -webkit-transition-duration: .25s;
3787 -webkit-transition-timing-function:ease;
3788
3789 -moz-transition-property: -webkit-opacity;
3790 -moz-transition-duration: .25s;
3791 -moz-transition-timing-function:ease;
3792
3793 -o-transition-property: -webkit-opacity;
3794 -o-transition-duration: .25s;
3795 -o-transition-timing-function:ease;
3796
3797 -transition-property: -webkit-opacity;
3798 -transition-duration: .25s;
3799 -transition-timing-function:ease;
3800}
3801
Scott Maine05e6f92013-01-29 13:34:17 -08003802.morehover:hover,
3803.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003804 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07003805 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003806 width:268px;
3807 -webkit-transition-property:height, -webkit-opacity;
3808}
3809
3810.morehover .top {
3811 width:268px;
3812 height:39px;
3813 background:url(../images/more_top.png) no-repeat;
3814}
3815
3816.morehover .mid {
3817 width:228px;
3818 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07003819 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003820}
3821
3822.morehover .mid .header {
3823 border-bottom:1px solid #ccc;
3824 font-weight:bold;
3825}
3826
3827.morehover .bottom {
3828 width:268px;
3829 height:6px;
3830 background:url(../images/more_bottom.png) no-repeat;
3831}
3832
3833.morehover ul {
3834 margin:10px 10px 20px 0;
3835}
3836
3837.morehover ul li {
3838 list-style:none;
3839}
3840
3841.morehover ul li.active a,
3842.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07003843 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003844}
3845
3846.morehover ul li.active img {
3847 margin-right:4px;
3848}
3849
3850
3851
3852
3853/* MARQUEE */
3854.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08003855 width:100%;
3856 overflow:hidden;
3857 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003858}
3859.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08003860 position:absolute;
3861 top:50%;
3862 left:0px;
3863 margin-top:-36px;
3864 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003865}
3866.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08003867 position:absolute;
3868 top:50%;
3869 margin-top:-36px;
3870 z-index:99;
3871 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003872}
3873
3874.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08003875 position:absolute;
3876 bottom:20px;
3877 width:100%;
3878 text-align:center;
3879 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003880}
3881.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08003882 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003883}
3884.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08003885 display: inline-block;
3886 width:12px;
3887 height:12px;
3888 text-indent:-8000px;
3889 list-style:none;
3890 margin: 0 2px;
3891 border-radius:6px;
3892 background-color:#ccc;
3893 cursor:pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003894 -webkit-transition:color .5s ease-in;
3895 -moz-transition:color .5s ease-in;
3896 -o-transition:color .5s ease-in;
3897 transition:color .5s ease-in;
3898}
3899.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08003900 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003901}
3902.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08003903 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003904}
3905.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08003906 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003907}
3908.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08003909 display:inline;
3910 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003911}
3912
3913
3914
3915
3916a.download-sdk {
3917 float:right;
3918 margin:-10px 0;
3919 height:30px;
3920 padding-top:4px;
3921 padding-bottom:0px;
3922}
3923
3924#nav-x {
3925 padding-top: 14px;
3926}
3927
Scott Main1d62fa82012-07-17 13:15:12 -07003928#nav-x .wrap {
3929 min-height:34px;
3930}
3931
Scott Maine4d8f1b2012-06-21 18:03:05 -07003932#nav-x .wrap,
3933#searchResults.wrap {
3934 max-width:940px;
3935 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003936}
3937
Scott Maina214d842012-07-16 17:14:40 -07003938#searchResults.wrap #leftSearchControl {
3939 min-height:700px
3940}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003941.nav-x {
3942 margin-left:0;
3943 margin-bottom:0;
3944}
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955/*
3956 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3957 */
3958
3959.jspContainer {
3960 overflow: hidden;
3961 position: relative;
3962}
3963
3964.jspPane {
3965 position: absolute;
3966 overflow: hidden;
3967 width:auto !important; /* to avoid cut-off api names in reference in horiz scroll */
3968}
3969
3970.jspVerticalBar {
3971 position: absolute;
3972 top: 0;
3973 right: 0;
3974 width: 4px;
3975 height: 100%;
3976 background: #f5f5f5;
3977}
3978
3979.jspHorizontalBar {
3980 position: absolute;
3981 bottom: 0;
3982 left: 0;
3983 width: 100%;
3984 height: 4px;
3985 background: #f5f5f5;
3986}
3987
3988.jspVerticalBar *,
3989.jspHorizontalBar * {
3990 margin: 0;
3991 padding: 0;
3992}
3993.jspCap {
3994 display: block;
3995}
3996
3997.jspVerticalBar .jspCap {
3998 height: 4px;
3999}
4000
4001.jspHorizontalBar .jspCap {
4002 width: 0;
4003 height: 100%;
4004}
4005
4006.jspHorizontalBar .jspCap {
4007 float: left;
4008}
4009
4010.jspTrack {
4011 position: relative;
4012}
4013
4014.jspDrag {
4015 background: #bbb;
4016 position: relative;
4017 top: 0;
4018 left: 0;
4019 cursor: pointer;
4020}
4021
4022.jspDrag:hover,
4023.jspDrag:active {
4024 border-color: #09c;
4025 background-color: #4cadcb;
4026 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4027 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4028 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4029 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4030 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4031 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Mainb7f96372013-02-07 16:56:43 -08004032 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004033}
4034
4035.jspHorizontalBar .jspTrack,
4036.jspHorizontalBar .jspDrag {
4037 float: left;
4038 height: 100%;
4039}
4040
4041.jspArrow {
4042 background: #999;
4043 text-indent: -20000px;
4044 display: block;
4045 cursor: pointer;
4046}
4047
4048.jspArrow.jspDisabled {
4049 cursor: default;
4050 background: #ccc;
4051}
4052
4053.jspVerticalBar .jspArrow {
4054 height: 16px;
4055}
4056
4057.jspHorizontalBar .jspArrow {
4058 width: 16px;
4059 float: left;
4060 height: 100%;
4061}
4062
4063.jspVerticalBar .jspArrow:focus {
4064 outline: none;
4065}
4066
4067.jspCorner {
4068 float: left;
4069 height: 100%;
4070}
4071
4072/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4073* html .jspCorner {
4074 margin: 0 -3px 0 0;
4075}
4076/******* end of jscrollpane *********/
4077
4078
4079
4080
4081
4082/************ DEVELOP HOMEPAGE ******************/
4083
4084/* Slideshow */
4085.slideshow-develop {
4086 height: 300px;
4087 width: 940px;
4088 position: relative;
4089 overflow:hidden;
4090}
4091.slideshow-develop .frame {
4092 width: 940px;
4093 height: 300px;
4094}
4095.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004096 max-width:350px;
4097 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004098 margin:20px 0 0 90px;
4099 -webkit-transform: perspective(800px ) rotateY( 35deg );
4100 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4101 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4102 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4103}
4104.slideshow-develop img.play.no-shadow {
4105 box-shadow: none;
4106 -moz-box-shadow: none;
4107 -webkit-box-shadow: none;
4108}
4109.slideshow-develop img.play.no-transform {
4110 -webkit-transform: none;
4111}
4112.slideshow-develop a.slideshow-next {
4113 background: url(../images/arrow-right-develop.png);
4114}
4115.slideshow-develop a.slideshow-prev {
4116 background: url(../images/arrow-left-develop.png);
4117}
4118.slideshow-develop .content-right {
4119 float: left;
4120}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004121.slideshow-develop .content-right h2 {
4122 padding:0;
4123 margin-bottom:10px;
4124 border:none;
4125}
4126.slideshow-develop .item {
4127 height: 300px;
4128 width: 940px;
4129}
4130.slideshow-develop .pagination ul li.active {
4131 background-color: #F80;
4132}
4133.slideshow-develop .pagination ul li.active:hover {
4134 background-color: #F80;
4135}
Scott Main0e585702012-10-22 20:30:22 -07004136.slideshow-develop .item hr {
4137 margin:5px 0 10px;
4138}
4139.slideshow-develop .item p {
4140 margin:10px 0;
4141}
4142.slideshow-develop .item p.title-intro {
4143 position:absolute;
4144 margin:0;
4145}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004146
4147/* Feeds */
4148.feed ul {
4149 margin: 0;
4150}
4151.feed .feed-nav {
4152 height: 25px;
4153 border-bottom: 1px solid #CCC;
4154}
4155.feed .feed-nav li {
4156 list-style: none;
4157 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004158 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004159 margin-right: 25px;
4160 cursor: pointer;
4161}
4162.feed .feed-nav li.active {
4163 color: #000;
4164 border-bottom: 4px solid #F80;
4165}
4166.feed .feed-container {
4167 overflow: hidden;
4168 width: 460px;
4169}
4170.feed .feed-container .feed-frame {
4171 width: 1000px;
4172}
4173.feed .feed-container .feed-frame ul {
4174 float: left;
4175 width:460px;
4176}
4177.feed .feed-container .feed-frame ul ul {
4178 float: none;
4179 margin:10px 0 0 30px;
4180}
4181.feed .feed-container .feed-frame li {
4182 list-style: none;
4183 margin: 20px 0 20px 0;
4184 width: 460px;
4185 height:93px;
4186}
4187.feed .feed-container .feed-frame li.playlist {
4188 height:auto;
4189}
4190.feed .feed-container .feed-frame li.playlist a {
4191 height:93px;
4192 display:block;
4193}
4194.feed .feed-container .feed-frame li.more {
4195 height:20px;
4196 margin:10px 0 5px 5px;
4197}
4198.feed .feed-container .feed-frame li.more a {
4199 height:inherit;
4200}
4201.feed .feed-container .feed-frame li.playlist-video {
4202 list-style: none;
4203 margin: 0;
4204 width: 460px;
4205 height:55px;
4206 font-size:12px;
4207}
4208.feed .feed-container .feed-frame li.playlist-video a {
4209 height:45px;
4210 padding:5px;
4211}
4212.feed .feed-container .feed-frame li.playlist-video h5 {
4213 font-size:12px;
4214 line-height:13px;
4215 margin:0;
4216}
4217.feed .feed-container .feed-frame li.playlist-video p {
4218 margin:5px 0 0;
4219 line-height:15px;
4220}
4221.feed-container .feed-frame div.feed-image {
4222 float: left;
4223 border: 1px solid #999;
4224 margin:0 20px 0 0;
4225 width:122px;
4226 height:92px;
4227 background:url('../images/blog-default.png') no-repeat 0 0;
4228 background-size:180px;
4229}
4230#jd-content .feed .feed-container .feed-frame li img {
4231 float: left;
4232 border: 1px solid #999;
4233 margin:0 20px 0 0;
4234 width:122px;
4235 height:92px;
4236}
4237#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4238 width:inherit;
4239 height:inherit;
4240}
4241
4242.feed .feed-container .feed-frame li a,
4243.feed .feed-container .feed-frame li a:active {
4244 color:#555 !important;
4245}
4246
4247.feed .feed-container .feed-frame li a:hover,
4248.feed .feed-container .feed-frame li a:hover * {
4249 color:#7AA1B0 !important;
4250}
4251
4252/* Video player */
4253#player-wrapper {
4254 display:none;
4255 margin: -1px auto 0;
4256 position: relative;
4257 width: 940px;
4258 height: 0px;
4259}
4260#player-frame {
4261 background: #EFEFEF;
4262 border: 1px solid #CCC;
4263 padding: 0px 207px;
4264 z-index: 10; /* stay above marque, but below search suggestions */
4265 width: 525px;
4266 height: 330px;
4267 position: relative;
4268}
4269
4270
4271
4272/************ DISTRIBUTE HOMEPAGE ***************/
4273
4274.marquee {
4275 width: 760px;
4276}
4277.marquee .main-img {
4278 float: left;
4279 margin-top: 20px;
4280 width: 490px;
4281}
4282.marquee .copy {
4283 width: 270px;
4284 float: left;
4285 margin-top: 30px;
4286}
4287.distribute-features {
4288 margin: 0;
4289}
4290.distribute-features ul {
4291 margin: 0;
4292}
4293.distribute-features ul li {
4294 list-style: none;
4295 float: left;
4296 border-top: 1px solid #9C0;
4297 width: 220px;
4298 margin-right: 50px;
4299}
4300.distribute-features ul li.last {
4301 margin-right: 0px;
4302}
4303
4304
Scott Main8fa53512012-11-30 20:16:42 -08004305
Scott Maine4d8f1b2012-06-21 18:03:05 -07004306/************ DEVELOP TOPIC CONTAINERS ************/
4307
4308.landing-banner,
4309.landing-docs {
4310 margin:20px 0 0;
4311}
Scott Main8fa53512012-11-30 20:16:42 -08004312.landing-banner div:first-child,
4313.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004314.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004315 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004316 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004317}
Scott Main8fa53512012-11-30 20:16:42 -08004318.landing-banner div:last-child,
4319.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004320.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004321 margin-right:0;
4322}
4323
4324.landing-banner h1 {
4325 margin-top:0;
4326}
Scott Main0e71cee2012-08-07 13:59:43 -07004327.landing-docs {
4328 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004329 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004330}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004331.landing-docs h3 {
4332 font-size:14px;
4333 line-height:21px;
4334 color:#555;
4335 text-transform:uppercase;
4336 border-bottom:1px solid #CCC;
4337 margin:0 0 20px;
4338}
4339.landing-docs a {
4340 color:#333 !important;
4341}
Robert Ly40e90992012-11-28 17:46:17 -08004342
Scott Maine4d8f1b2012-06-21 18:03:05 -07004343.landing-docs a:hover,
4344.landing-docs a:hover * {
4345 color:#7AA1B0 !important
4346}
4347
Robert Ly40e90992012-11-28 17:46:17 -08004348.landing-docs .normal-links a {
4349 color:#258aaf !important;
4350}
4351
Scott Maine4d8f1b2012-06-21 18:03:05 -07004352.plusone {
4353 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004354}
Scott Main9edfa6d2012-08-14 15:04:40 -07004355
4356
4357
4358/************* HOME/LANDING PAGE *****************/
4359
4360.slideshow-home {
4361 height: 500px;
4362 width: 940px;
4363 border-bottom: 1px solid #CCC;
4364 position: relative;
4365 margin: 0;
4366}
4367.slideshow-home .frame {
4368 width: 940px;
4369 height: 500px;
4370}
4371.slideshow-home .content-left {
4372 float: left;
4373 text-align: center;
4374 vertical-align: center;
4375 margin: 0 0 0 35px;
4376}
4377.slideshow-home .content-right {
4378 margin: 80px 0 0 0;
4379}
4380.slideshow-home .content-right p {
4381 margin-bottom: 10px;
4382}
4383.slideshow-home .content-right p:last-child {
4384 margin-top: 15px;
4385}
4386.slideshow-home .content-right h1 {
4387 padding:0;
4388}
4389.slideshow-home .item {
4390 height: 500px;
4391 width: 940px;
4392}
4393.home-sections {
4394 padding: 30px 20px 20px;
4395 margin: 20px 0;
4396 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4397}
4398.home-sections ul {
4399 margin: 0;
4400}
4401.home-sections ul li {
4402 float: left;
4403 display: block;
4404 list-style: none;
4405 width: 170px;
4406 height: 35px;
4407 border: 1px solid #ccc;
4408 background: white;
4409 margin-right: 10px;
4410 border-radius: 1px;
4411 -webkit-border-radius: 1px;
4412 -moz-border-radius: 1px;
4413 box-shadow: 1px 1px 5px #EEE;
4414 -webkit-box-shadow: 1px 1px 5px #EEE;
4415 -moz-box-shadow: 1px 1px 5px #EEE;
4416 background: white;
4417}
4418.home-sections ul li:hover {
4419 background: #F9F9F9;
4420 border: 1px solid #CCC;
4421}
4422.home-sections ul li a,
4423.home-sections ul li a:hover {
4424 font-weight: bold;
4425 margin-top: 8px;
4426 line-height: 18px;
4427 float: left;
4428 width: 100%;
4429 text-align: center;
4430 color: #09c !important;
4431}
4432.home-sections ul li a {
4433 font-weight: bold;
4434 margin-top: 8px;
4435 line-height: 18px;
4436 float: left;
4437 width:100%;
4438 text-align:center;
4439}
4440.home-sections ul li img {
4441 float: left;
4442 margin: -8px 0 0 10px;
4443}
4444.home-sections ul li.last {
4445 margin-right: 0px;
4446}
Scott Mainf5089842012-08-14 16:31:07 -07004447.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004448 margin-top: -40px;
4449}