blob: db5bd01e8ddfa6d1ce9d0347195d85165a9ec0ca [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 */
6::-webkit-selection,
7::-moz-selection,
8::selection {
9 background-color: #0099cc;
10 color: #fff; }
11
12html, body {
13 height: 100%;
14 margin: 0;
15 padding: 0;
16 background-color:#F9F9F9;
17 -webkit-font-smoothing: antialiased;
18 /* prevent subpixel antialiasing, which thickens the text */
19 /* text-rendering: optimizeLegibility; */
20 /* turned off ligatures due to bug 5945455 */ }
21
22body {
Scott Main9ada2262012-06-23 14:59:36 -070023 color: #222;
Scott Main6a7a66b2012-06-23 11:20:48 -070024 font: 14px/19px Roboto, sans-serif;
Scott Maine4d8f1b2012-06-21 18:03:05 -070025 font-weight: 400;
26 letter-spacing:.1;
27 padding:0 10px; }
28
29#page-container {
30 width: 940px;
31 margin: 0 40px; }
32
33#page-header {
34 height: 80px;
35 margin-bottom: 20px;
36 font-size: 48px;
37 line-height: 48px;
38 font-weight: 100;
39 padding-left: 10px; }
40 #page-header a {
41 display: block;
42 position: relative;
43 top: 20px;
44 text-decoration: none;
45 color: #555555 !important; }
46
47#main-row {
48 display: inline-block; }
49 #main-row:after {
50 content: ".";
51 display: block;
52 height: 0;
53 clear: both;
54 visibility: hidden; }
55 * html #main-row {
56 height: 1px; }
57
58#page-footer {
59 margin-left: 190px;
60 margin-top: 80px;
61 color: #999999;
62 padding-bottom: 40px;
63 font-size: 12px;
64 line-height: 15px; }
65 #page-footer a {
66 color: #777777; }
67 #page-footer #copyright {
68 margin-bottom: 10px; }
69
70#nav-container {
71 width: 160px;
72 min-height: 10px;
73 margin-right: 20px;
74 float: left; }
75
76#nav {
77 margin:0;
78 padding:0 0 30px;
79}
80
81#side-nav {
82 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
83 margin-bottom:1px;
84}
85#devdoc-nav {
86 outline:none;
87 width:auto;
88 margin: 20px 0 0; }
89
90#devdoc-nav h2 {
91 border:0;
92}
93
94#devdoc-nav.fixed {
95 position: fixed;
96 margin:0;
97 top: 20px; }
Scott Main6b2dc272012-09-11 14:27:34 -070098
99#devdoc-nav span.small {
100 font-size:12px;
101 font-weight:normal;
102}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700103
104#content {
105 width: 760px;
106 float: left; }
107
108a:hover,
109acronym:hover {
110 color: #7aa1b0 !important; }
111
112a:focus,
113a:active {
114 color: #33b5e5 !important; }
115
116img {
117 border: none; }
118#jd-content img {
119 margin-bottom:15px;
120}
121
122ul {
123 margin: 0;
124 padding: 0; }
125
126strong {
127 font-weight: 500; }
128
129em {
130 font-style: italic; }
131
Scott Maindb3678b2012-10-23 14:13:41 -0700132acronym,
133.tooltip-link {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700134 border-bottom: 1px dotted #555555;
135 cursor: help; }
136
Scott Maindb3678b2012-10-23 14:13:41 -0700137acronym:hover,
138.tooltip-link:hover {
139 color: #7aa1b0;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700140 border-bottom-color: #7aa1b0; }
141
142img.with-shadow,
143video.with-shadow {
144 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
145
146/* disclosures mixin */
147/* content layout */
148.layout-content-row {
149 display: inline-block;
150 margin-bottom: 10px; }
151 .layout-content-row:after {
152 content: ".";
153 display: block;
154 height: 0;
155 clear: both;
156 visibility: hidden; }
157 * html .layout-content-row {
158 height: 1px; }
159
160.layout-content-col {
161 float: left;
162 margin-left: 20px; }
163 .layout-content-col:first-child {
164 margin-left: 0; }
165 .layout-content-col h3,
166 .layout-content-col h4 {
167 margin-top:0; }
168
169.layout-content-col.span-1 {
170 width: 40px; }
171
172.layout-content-col.span-2 {
173 width: 100px; }
174
175.layout-content-col.span-3 {
176 width: 160px; }
177
178.layout-content-col.span-4 {
179 width: 220px; }
180
181.layout-content-col.span-5 {
182 width: 280px; }
183
184.layout-content-col.span-6 {
185 width: 340px; }
186
187.layout-content-col.span-7 {
188 width: 400px; }
189
190.layout-content-col.span-8 {
191 width: 460px; }
192
193.layout-content-col.span-9 {
194 width: 520px; }
195
196.layout-content-col.span-10 {
197 width: 580px; }
198
199.layout-content-col.span-11 {
200 width: 640px; }
201
202.layout-content-col.span-12 {
203 width: 700px; }
204
205.layout-content-col.span-13 {
206 width: 760px; }
207
208.vspace.size-1 {
209 height: 10px; }
210
211.vspace.size-2 {
212 height: 20px; }
213
214.vspace.size-3 {
215 height: 30px; }
216
217.vspace.size-4 {
218 height: 40px; }
219
220.vspace.size-5 {
221 height: 50px; }
222
223.vspace.size-6 {
224 height: 60px; }
225
226.vspace.size-7 {
227 height: 70px; }
228
229.vspace.size-8 {
230 height: 80px; }
231
232.vspace.size-9 {
233 height: 90px; }
234
235.vspace.size-10 {
236 height: 100px; }
237
238.vspace.size-11 {
239 height: 110px; }
240
241.vspace.size-12 {
242 height: 120px; }
243
244.vspace.size-13 {
245 height: 130px; }
246
247.vspace.size-14 {
248 height: 140px; }
249
250.vspace.size-15 {
251 height: 150px; }
252
253.vspace.size-16 {
254 height: 160px; }
255
256/* nav */
257#nav {
258 /* section header divs */
259 /* expanded section header divs */
260 /* sublinks */ }
261 #nav li {
262 list-style-type: none;
263 font-size: 14px;
264 margin:0;
265 padding:0;
266 line-height: 15px; }
267 #nav a {
268 color: #555555;
269 text-decoration: none; }
270 #nav .nav-section-header {
271 position: relative;
272 margin-bottom: 1px;
273 padding: 0 30px 0 0; }
274 #nav li.selected a, #nav li.selected > .nav-section-header > a {
275 color: #09C;
276 }
277 #nav li.selected ul li a {
278 /* don't highlight child items */
279 color: #555555; }
280 #nav .nav-section .nav-section .nav-section-header {
281 /* no white line between second level sections */
282 margin-bottom: 0; }
283 /* section header links */
284 #nav > li > div > a {
285 display: block;
286 color: #333333;
287 font-weight: 500;
288 padding: 10px 0 10px 10px; }
289 #nav .nav-section-header:after {
290 content: '';
291 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
292 width: 34px;
293 height: 34px;
294 display: block;
295 position: absolute;
296 top: 0;
297 right: 0; }
298 #nav .nav-section-header.empty:after {
299 display: none; }
300 /* nested nav headers */
301 #nav .nav-section .nav-section {
302 position: relative;
303 padding: 0;
304 margin: 0; }
305 #nav .nav-section li a {
306 /* first gen child (2nd level li) */
307 display:block;
308 font-weight: normal;
309 text-transform: none;
310 padding: 7px 5px 7px 10px;
311 }
312 #nav .nav-section li li a {
313 /* second gen child (3rd level li) */
314 padding: 5px 5px 5px 10px;
315 }
316 #nav li.expanded .nav-section-header {
317 background:#e9e9e9;
318 background: rgba(0, 0, 0, 0.05); }
319 #nav li.expanded li .nav-section-header {
320 background: transparent; }
321 #nav li.expanded li ul {
322 /* 3rd level ul */
323 padding:0 10px;
324 }
325 #nav li.expanded > .nav-section-header:after {
326 content: '';
327 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
328 width: 34px;
329 height: 34px; }
330 #nav li ul {
331 display:none;
332 overflow: hidden;
333 margin: 0; }
334 #nav li ul.animate-height-in {
335 -webkit-transition: height 0.25s ease-in;
336 -moz-transition: height 0.25s ease-in;
337 transition: height 0.25s ease-in; }
338 #nav li ul.animate-height-out {
339 -webkit-transition: height 0.25s ease-out;
340 -moz-transition: height 0.25s ease-out;
341 transition: height 0.25s ease-out; }
342 #nav li ul li {
343 padding: 0; }
344 #nav li li li {
345 padding: 0; }
346 #nav li.expanded ul {
347 }
348 #nav li ul > li {
349 padding:0;
350 }
351 #nav li ul > li:last-child {
352 padding-bottom:5px;
353 }
354 #nav li.expanded ul > li {
355 background:#efefef;
356 background: rgba(0, 0, 0, 0.03); }
357 #nav li.expanded ul > li li {
358 background:inherit; }
359
360.new,
361.new-child {
362 font-size: .78em;
363 font-weight: bold;
364 color: #ff3d3d;
365 vertical-align:top;
366 white-space:nowrap;
367}
368
369/* content header */
370.content-header {
371 height: 30px;
372 margin:20px 0 25px;
373 padding:0 0 10px;}
374.content-header.just-links {
375 margin-bottom:0;
376 padding-bottom:0;}
377
378.content-header h1 {
379 color:#000;
380 margin:0;
381 border-bottom:0;
382 padding:0;
383}
384
385.content-footer {
386 border-top: 1px solid #ccc;
387 margin-top: 10px;
388 padding-top:10px;
389 height: 30px; }
390
391.content-footer .col-9 {
392 margin-left:0;
393}
394.content-footer .col-4 {
395 margin-right:0;
396}
397.content-footer.wrap {
398 width:940px;
399}
400
401.paging-links {
402 position: relative; }
403 .paging-links a {
404 position: absolute; }
405 .paging-links a,
406 .training-nav-top a {
407 font-size: 14px;
408 line-height: 30px;
409 color: #555555;
410 text-decoration: none;
411 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700412 .paging-links .prev-page-link:before,
413 .training-nav-top .prev-page-link:before {
414 content: '';
415 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
416 width: 10px;
417 height: 10px;
418 display: inline-block;
419 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700420 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700421 .training-nav-top .start-class-link,
422 .training-nav-top .start-course-link {
423 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700424 .paging-links .prev-page-link {
425 left: -15px; }
426 .paging-links .next-page-link {
427 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700428 .next-page-link:after,
429 .start-class-link:after,
430 .start-course-link:after,
431 .next-class-link:after {
432 content: '';
433 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
434 width: 10px;
435 height: 10px;
436 display: inline-block;
437 margin-left: 5px; }
438
439
440 .training-nav-top a {
441 display:block;
442 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700443 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700444 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700445 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700446 line-height:28px;
447 text-align:center;
448 border:1px solid #DADADA;
449 border-bottom:0;
450 }
451
452 .training-nav-top a.next-page-link {
453 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700454 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700455 }
456
457 .training-nav-top a.disabled,
458 .content-footer a.disabled {
459 color:#999;
460 }
461
462 .training-nav-top a.disabled:hover,
463 .content-footer a.disabled:hover {
464 cursor:default;
465 color:#999 !important;
466 }
467
468 .training-nav-top a.start-class-link,
469 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700470 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700471 }
472
473 .hide {
474 display:none !important;
475 }
476
477 .content-footer.next-class {
478 display:block;
479 border:0;
480 margin-top:0;
481 padding-top:0;
482 }
483
484 .content-footer.next-class a.next-class-link {
485 display:block;
486 float:right;
487 text-transform:uppercase;
488 }
489
490/* content body */
491@-webkit-keyframes glowheader {
492 from {
493 background-color: #33b5e5;
494 color: #000;
495 border-bottom-color: #000; }
496
497 to {
498 background-color: transparent;
499 color: #33b5e5;
500 border-bottom-color: #33b5e5; } }
501
502@-moz-keyframes glowheader {
503 from {
504 background-color: #33b5e5;
505 color: #000;
506 border-bottom-color: #000; }
507
508 to {
509 background-color: transparent;
510 color: #33b5e5;
511 border-bottom-color: #33b5e5; } }
512
513@keyframes glowheader {
514 from {
515 background-color: #33b5e5;
516 color: #000;
517 border-bottom-color: #000; }
518
519 to {
520 background-color: transparent;
521 color: #33b5e5;
522 border-bottom-color: #33b5e5; } }
523
524h2:target,
525h3:target {
526 -webkit-animation-name: glowheader;
527 -moz-animation-name: glowheader;
528 animation-name: glowheader;
529 -webkit-animation-duration: 0.7s;
530 -moz-animation-duration: 0.7s;
531 animation-duration: 0.7s;
532 -webkit-animation-timing-function: ease-out;
533 -moz-animation-timing-function: ease-out;
534 animation-timing-function: ease-out; }
535
536.design ol h4 {
537 margin-bottom:0;
538}
539.design ol {
540 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700541 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700542 font-size: 14px;
543 line-height: 20px;
544 list-style-type: none;
545 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700546 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700547 content: counter(item) ". ";
548 counter-increment: item;
549 position: absolute;
550 left: -20px;
551 top: 0; }
552 .design ol li.value-1:before {
553 content: "1. "; }
554 .design ol li.value-2:before {
555 content: "2. "; }
556 .design ol li.value-3:before {
557 content: "3. "; }
558 .design ol li.value-4:before {
559 content: "4. "; }
560 .design ol li.value-5:before {
561 content: "5. "; }
562 .design ol li.value-6:before {
563 content: "6. "; }
564 .design ol li.value-7:before {
565 content: "7. "; }
566 .design ol li.value-8:before {
567 content: "8. "; }
568 .design ol li.value-9:before {
569 content: "9. "; }
570 .design ol li.value-10:before {
571 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700572.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700573 list-style-position: inside;
574 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700575 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700576 display: inline;
577 left: -20px;
578 float: left;
579 width: 17px;
580 color: #33b5e5;
581 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700582.design .with-callouts ul>li {
583 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700584
585/* special list items */
586li.no-bullet {
587 list-style-type: none !important; }
588li.no-bullet *{
589 margin:0; }
590
591.design li.with-icon {
592 position: relative;
593 margin-left: 20px;
594 min-height: 30px; }
595 .design li.with-icon p {
596 margin-left: 0 !important; }
597 .design li.with-icon:before {
598 position: absolute;
599 left: -40px;
600 top: 0;
601 content: '';
602 width: 30px;
603 height: 30px; }
604 .design li.with-icon.tablet:before {
605 background-image: url(../images/styles/ico_phone_tablet.png); }
606 .design li.with-icon.web:before {
607 background-image: url(../images/styles/ico_web.png); }
608 .design li.with-icon.action:before {
609 background-image: url(../images/styles/ico_action.png); }
610 .design li.with-icon.use:before {
611 background-image: url(../images/styles/ico_use.png); }
612
613/* figures and callouts */
614.figure {
615 position: relative; }
616 .figure.pad-below {
617 margin-bottom: 20px; }
618 .figure .figure-callout {
619 position: absolute;
620 color: #fff;
621 font-weight: 500;
622 font-size: 16px;
623 line-height: 23px;
624 text-align: center;
625 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
626 padding-right: 2px;
627 width: 30px;
628 height: 29px;
629 z-index: 1000; }
630 .figure .figure-callout.top {
631 top: -9px; }
632 .figure .figure-callout.right {
633 right: -5px; }
634
635.figure-caption {
636 margin: 0 10px 20px 0;
637 font-size: 14px;
638 line-height: 20px;
639 font-style: italic; }
640
641/* rows of figures */
642.figure-row {
643 font-size: 0;
644 line-height: 0;
645 /* to prevent space between figures */ }
646 .figure-row .figure {
647 display: inline-block;
648 vertical-align: top; }
649 .figure-row .figure + .figure {
650 margin-left: 10px;
651 /* reintroduce space between figures */ }
652
653/* video containers */
654.framed-galaxynexus-land-span-13 {
655 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
656scroll top left;
657 padding: 42px 122px 62px 126px;
658 overflow: hidden; }
659 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
660.framed-galaxynexus-land-span-13 img {
661 width: 512px;
662 height: 286px; }
663
Robert Lyd78354d2012-11-01 17:09:52 -0700664
665.framed-galaxynexus-land-span-8{
666 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
667scroll top left;
668 padding: 26px 68px 38px 72px;
669 overflow: hidden; }
670 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
671.framed-galaxynexus-land-span-8 img {
672 width: 320px;
673 height: 180px; }
674
Scott Maine4d8f1b2012-06-21 18:03:05 -0700675.framed-galaxynexus-port-span-9 {
676 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
677scroll top left;
678 padding: 95px 122px 107px 124px;
679 overflow: hidden; }
680 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
681.framed-galaxynexus-port-span-9 img {
682 width: 274px;
683 height: 488px; }
684
685.framed-galaxynexus-port-span-5 {
686 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
687scroll top left;
688 padding: 75px 31px 76px 33px;
689 overflow: hidden; }
690 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
691.framed-galaxynexus-port-span-5 img {
692 width: 216px;
693 height: 384px; }
694
695/* landing page disclosures */
696.landing-page-link {
697 text-decoration: none;
698 font-weight: 500;
699 color: #333333; }
700 .landing-page-link:after {
701 content: '';
702 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
703 width: 10px;
704 height: 10px;
705 display: inline-block;
706 margin-left: 5px; }
707
708/* tooltips */
709.tooltip-box {
710 position: absolute;
711 background-color: rgba(0, 0, 0, 0.9);
712 border-radius: 2px;
713 font-size: 14px;
714 line-height: 20px;
715 color: #fff;
716 padding: 6px 10px;
717 max-width: 250px;
718 z-index: 10000; }
719 .tooltip-box.below:after {
720 position: absolute;
721 content: '';
722 line-height: 0;
723 display: block;
724 top: -10px;
725 left: 5px;
726 border: 5px solid transparent;
727 border-bottom-color: rgba(0, 0, 0, 0.9); }
728
729/* video note */
730.video-instructions {
731 margin-top: 10px;
732 margin-bottom: 10px; }
733 .video-instructions:before {
734 content: '';
735 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
736 display: inline-block;
737 width: 12px;
738 height: 12px;
739 margin-right: 8px; }
740 .video-instructions:after {
741 content: 'Click device screen to replay movie.'; }
742
743/* download buttons */
744.download-button {
745 display: block;
746 margin-bottom: 5px;
747 text-decoration: none;
748 background-color: #33b5e5;
749 color: #fff !important;
750 font-weight: 500;
751 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
752 padding: 6px 12px;
753 border-radius: 2px; }
754 .download-button:hover, .download-button:focus {
755 background-color: #0099cc;
756 color: #fff !important; }
757 .download-button:active {
758 background-color: #006699; }
759
760/* UI tables and other things found in Writing style and Settings pattern */
761.ui-table {
762 width: 100%;
763 background-color: #282828;
764 color: #fff;
765 border-radius: 2px;
766 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
767 border-collapse: separate; }
768 .ui-table th,
769 .ui-table td {
770 padding: 5px 10px;
771 background-color: inherit;
772 border:0;}
773 .ui-table thead th {
774 font-weight: bold; }
775 .ui-table tfoot td {
776 border-top: 1px solid #494949;
777 border-right: 1px solid #494949;
778 text-align: center; }
779 .ui-table tfoot td:last-child {
780 border-right: 0; }
781
782.layout-with-list-item-margins {
783 margin-left: 30px !important; }
784
785.emulate-content-left-padding {
786 margin-left: 10px; }
787
788.do-dont-label {
789 margin-bottom: 10px;
790 padding-left: 20px;
791 background: transparent none no-repeat scroll 0px 3px; }
792 .do-dont-label.bad {
793 background-image: url(../images/styles/ico_wrong.png); }
794 .do-dont-label.good {
795 background-image: url(../images/styles/ico_good.png); }
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815/***** PREVIOUSLY style.css ******************/
816
817
818
819
820
821@media screen, projection, print {
822[dir='rtl'] {
823 direction: rtl;
824}
825html {
826 line-height: 20px;
827}
828pre, table, input, textarea, code {
829 font-size: 1em;
830}
831address, abbr, cite {
832 font-style: normal;
833}
834[dir='rtl'] th {
835 text-align: right;
836}
837html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
838html[lang^=zh] blockquote, html[lang^=zh] q {
839 font-style: normal;
840}
841q {
842 font-style: italic;
843}
844fieldset, iframe, img {
845 border: 0;
846}
847img {
848 -ms-interpolation-mode: bicubic;
849 vertical-align: middle;
850 max-width: 100%;
851}
852q {
853 quotes: none;
854}
855sup, sub {
856 font-size: 11px;
857 line-height: 0;
858}
859}
860
861@media screen, projection {
862
863table, fieldset {
864 margin: 0;
865}
866h1 {
867 color:#333;
868 font-size: 22px;
869 margin: 20px 0 20px;
870 padding:0 0 10px;
871}
872h1, h2 {
873 line-height: 32px;
874}
875h1.short {
876 margin-right:320px;
877}
878h1.short {
879 margin-right:320px;
880}
881h1.super {
882 font-size: 37px;
883}
884h2 {
885 color:#333;
886 font-size: 20px;
887 margin: 20px 0 20px;
888 padding:0;
889}
890h3 {
891 color:#333;
892 font-size: 18px;
893}
894h3, h4 {
895 color:#333;
896 line-height: 20px;
897 margin: 10px 0;
898}
899h4 {
900 font-size: 16px;
901}
902h5 {
903 font-size: 14px;
904}
905h5, h6 {
906 margin: 5px 0;
907}
908h6 {
909 font-size: 12px;
910}
911hr { /* applied to the bottom of h2 elements */
912 height: 1px;
913 margin: 5px 0 20px;
914 border: 0;
915 background: #ccc;
916}
917p, pre, table, form {
918 margin: 0 0 15px;
919}
920small {
921 font-size: 11.5px;
922 color: #000;
923}
924ul, ol {
925 margin: 0 0 15px 18px;
926 padding: 0;
927}
928[dir='rtl'] ul, [dir='rtl'] ol {
929 margin: 10px 30px 10px 10px;
930}
931ul ul, ul ol, ol ul, ol ol {
932 margin-bottom: 0;
933 margin-top: 0;
934}
935li {
Scott Main52948fc2012-09-18 11:27:59 -0700936 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700937}
938dd {
939 margin:0 0 10px 30px;
940}
941dd p {
942 margin:10px 0 0;
943}
Scott Maindb3678b2012-10-23 14:13:41 -0700944li p,
945li pre,
946li ul,
947li ol {
948 margin-top:5px;
949 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700950}
951pre strong, pre b, a strong, a b, a code {
952 color: inherit;
953}
954pre, code {
955 color: #060;
956 font: 14px/1.5 'courier new', courier, monospace;
957}
958code {
959 font-weight:bold;
960}
961
962legend {
963 display: none;
964}
965a:link, a:visited {
966 color: #258aaf;
967 text-decoration: none;
968}
969a:focus, a:hover, a:active {
970 color: #33B5E5;
971 text-decoration: none;
972}
973strong, b {
974 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -0700975 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700976}
977table {
978 border-collapse: collapse;
979 border-spacing: 0;
980 border:0;
981 margin: .5em 1em 1em 0;
982 width:100%; /* consistent table widths; within IE's quirks */
983 background-color:#f7f7f7;
984}
985th, td {
986 padding: 4px 12px;
987 vertical-align: top;
988 text-align: left;
989}
990td {
991 background-color:inherit;
992 border:solid 1px #DDD;
993}
994th {
995 background-color: #999;
996 color: #fff;
997 border:solid 1px #DDD;
998 font-weight: normal;
999}
1000tr:first-of-type th:first-of-type:empty {
1001 visibility: hidden;
1002}
1003/* --------------------------------------------------------------------------
1004Footer
1005*/
1006.line {
1007 clear: both;
1008 background: #acbc00;
1009 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1010 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1011color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1012 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1013 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1014 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1015 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1016 height: 2px;
1017 margin-top: 150px;
1018 position: relative;
1019 z-index: 11;
1020}
1021#footer {
1022 font-size:11px;
1023 clear: both;
1024 color: #999;
1025 padding: 15px 0;
1026 margin-top:10px;
1027 width:auto;
1028}
1029#footer-local ul {
1030 list-style: none;
1031 margin: 5px 0 30px 0;
1032}
1033#footer-local li {
1034 display: inline;
1035}
1036#footer-local li+li:before {
1037 content: '|';
1038 padding: 0 3px;
1039 color: #e5e5e5;
1040}
1041#footer-global {
1042 padding: 10px 15px;
1043 background: #f5f5f5;
1044}
1045#footer-global {
1046 border-top: 1px solid #ebebeb;
1047 font-size: 11.5px;
1048 line-height: 1.8;
1049 list-style: none;
1050}
1051#footer-global ul {
1052 margin: 0;
1053}
1054#footer-global li {
1055 display: inline;
1056 font-weight: bold;
1057}
1058#footer-global li+li:before {
1059 content: '¬?';
1060 padding: 0 3px;
1061}
1062* html #footer-global li {
1063 margin: 0 13px 0 0;
1064}
1065* [dir='rtl'] #footer-global li {
1066 margin: 0 0 0 13px;
1067}
1068*+html #footer-global li {
1069 margin: 0 13px 0 0;
1070}
1071*+[dir='rtl'] #footer-global li {
1072 margin: 0 0 0 13px;
1073}
1074#footer-global li a {
1075 font-weight: normal;
1076}
1077.locales {
1078 margin: 10px 0 0 0px;
1079}
1080[dir='rtl'] .locales {
1081 background-position: right center;
1082 float: left;
1083 padding: 0 24px 0 0;
1084}
1085.locales form {
1086 margin: 0;
1087}
1088.locales select, .sites select {
1089 line-height: 3.08;
1090 margin: 0px 0;
1091 border: solid 1px #EBEBEB;
1092 -webkit-appearance: none;
1093 background: white url('../images/arrows-up-down.png') right center no-repeat;
1094 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001095 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001096 line-height: normal;
1097 padding: 5px;
1098 width: 230px;
1099}
1100}
1101
1102/* =============================================================================
1103 Print Only
1104 ========================================================================== */
1105@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001106 /* configure printed page */
1107 @page {
1108 margin: 0.75in 1in;
1109 widows: 4;
1110 orphans: 4;
1111 }
1112
1113 /* reset spacing metrics */
1114 html, body, .wrap {
1115 margin: 0 !important;
1116 padding: 0 !important;
1117 width: auto !important;
1118 }
1119
1120 /* leave enough space on the left for bullets */
1121 body {
1122 padding-left: 20px !important;
1123 }
1124 #doc-col {
1125 margin-left: 0;
1126 }
1127
1128 /* hide a bunch of non-content elements */
1129 #header, #footer, #nav-x, #side-nav,
1130 .training-nav-top, .training-nav-bottom,
1131 #doc-col .content-footer,
1132 .nav-x, .nav-y,
1133 .paging-links,
1134 a.totop {
1135 display: none !important;
1136 }
1137
1138 /* remove extra space above page titles */
1139 #doc-col .content-header {
1140 margin-top: 0;
1141 }
1142
1143 /* bump up spacing above subheadings */
1144 h2 {
1145 margin-top: 40px !important;
1146 }
1147
1148 /* print link URLs where possible and give links default text color */
1149 p a:after {
1150 content: " (" attr(href) ")";
1151 font-size: 80%;
1152 }
1153 p a {
1154 word-wrap: break-word;
1155 }
1156 a {
1157 color: inherit;
1158 }
1159
1160 /* syntax highlighting rules */
1161 .str { color: #060; }
1162 .kwd { color: #006; font-weight: bold; }
1163 .com { color: #600; font-style: italic; }
1164 .typ { color: #404; font-weight: bold; }
1165 .lit { color: #044; }
1166 .pun { color: #440; }
1167 .pln { color: #000; }
1168 .tag { color: #006; font-weight: bold; }
1169 .atn { color: #404; }
1170 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001171}
1172
1173/* =============================================================================
1174 Columns
1175 ========================================================================== */
1176
1177@media screen, projection, print {
1178.full {
1179 padding: 2.5em 0;
1180 border-top: solid 1px #ddd;
1181 border-bottom: solid 1px #ddd;
1182 background: #f7f7f7;
1183}
1184.wrap {
1185 margin: 0 auto;
1186 width: 940px;
1187 clear: both;
1188}
1189.cols {
1190 height: 1%;
1191 margin: 0 -1.533742331288343558282%;
1192 width: 103.06748466257669%}
1193*+html .cols {
1194 margin-bottom: 20px;
1195}
1196.cols:after {
1197 clear: both;
1198 content: ' ';
1199 display: block;
1200 height: 0;
1201 visibility: hidden;
1202}
1203.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1204.col-13, .col-14, .col-15, .col-16 {
1205 display: inline;
1206 float: left;
1207 margin-left: 10px;
1208 margin-right: 10px;
1209}
1210/*
1211* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1212.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1213 margin: 0;
1214 padding: 0 1.4% 20px;
1215}
1216[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1217[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1218[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1219 float: right;
1220}
1221*/
1222.col-1 { width: 40px }
1223.col-2 { width: 100px }
1224.col-3 { width: 160px }
1225.col-4 { width: 220px }
1226.col-5 { width: 280px }
1227.col-6 { width: 340px }
1228.col-7 { width: 400px }
1229.col-8 { width: 460px }
1230.col-9 { width: 520px }
1231.col-10 { width: 580px }
1232.col-11 { width: 640px }
1233.col-12 { width: 700px }
1234.col-13 { width: 760px }
1235.col-14 { width: 820px }
1236.col-15 { width: 880px }
1237.col-16 { width: 940px }
1238}
1239
1240.col-right {
1241 margin-right:0px;
1242}
1243
1244@media screen and (max-width:772px) {
1245.col-5, .col-6, .col-7 {
1246 clear: both;
1247 width: 97.0238096%}
1248}
1249
1250/* =============================================================================
1251 Layout
1252 ========================================================================== */
1253@media screen, projection, print {
1254
1255/* --------------------------------------------------------------------------
1256Header, Login, Nav-X, Search
1257*/
1258#header {
1259 padding: 2.2em 0 0.2em 0;
1260}
1261#header:before, #header:after {
1262 content: "";
1263 display: table;
1264 clear: both
1265}
1266.logo, .nav-x {
1267 float: left;
1268}
1269.nav-x {
1270 margin-top: -2px;
1271 list-style-type: none;
1272}
1273.nav-x a {
1274 color: #333;
1275 font-size: 16px;
1276}
1277.design a.selected {
1278 color: #33b5e5;
1279}
1280.develop a.selected {
1281 color: #F80;
1282}
1283.distribute a.selected {
1284 color: #9C0;
1285}
1286
1287
1288
1289.nav-x li {
1290 display: inline;
1291 margin-right: 45px;
1292}
1293.search {
1294 float: right;
1295 position: relative;
1296 width: 220px
1297}
1298.search .bottom, .search .left, .search .right {
1299 position: absolute;
1300 background-color: #a3a3a3;
1301}
1302.search .bottom {
1303 width: 220px;
1304 height: 1px;
1305 top: 24px;
1306 left: 0
1307}
1308.search .left, .search .right {
1309 height: 5px;
1310 width: 1px
1311}
1312.search .left { top: 19px; left: 0 }
1313.search .right { top: 19px; right: 0 }
1314.search form {
1315 float: left;
1316 margin-top: 2px;
1317 width: inherit;
1318}
1319.search .close,
1320#player-frame .close {
1321 position: absolute;
1322 right: 8px;
1323 bottom: 4px;
1324 width: 16px;
1325 height: 16px;
1326 margin: 0;
1327 text-indent: -1000em;
1328 background: url(../images/close.png) no-repeat 0 0;
1329 z-index:9999;
1330}
1331.search .close:hover, .search .close:focus,
1332#player-frame .close:hover, #player-frame .close:focus {
1333 background-position: -16px 0;
1334 cursor:pointer;
1335}
1336#player-frame .close {
1337 top: 6px;
1338}
1339.search form input {
1340 color: #999;
1341 font-size: 1em;
1342 width: inherit;
1343 border: none;
1344 margin: 0;
1345 padding:0 0 0 6px;
1346 z-index: 1500;
1347 background-color: transparent
1348}
1349.search:hover .bottom, .search:hover .left, .search:hover .right {
1350 background-color: #33b5e5;
1351}
1352.search:hover .icon {
1353 background-position: -8px 0
1354}
1355.search form input:focus {
Scott Main9ada2262012-06-23 14:59:36 -07001356 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001357 font-weight: bold;
1358 outline:0;
1359}
1360/* Search Dropdown */
1361.search-dropdown {
1362 padding: 15px;
1363 width: 192px;
1364 border: solid 1px #c5c5c5;
1365 background: #fff;
1366 position: absolute;
1367 top: 35px;
1368 left: 0;
1369 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1370 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1371 box-shadow: 0 0 10px rgba(0,0,0,0.2)
1372}
1373.search-dropdown ul, .search-dropdown ul li {
1374 list-style-type: none;
1375 margin: 0;
1376 padding: 0
1377}
1378.search-dropdown ul li {
1379 clear: both
1380}
1381.search-dropdown img {
1382 float: left;
1383 margin: 0 10px 10px 0
1384}
1385.search-dropdown h6 {
Scott Main9ada2262012-06-23 14:59:36 -07001386 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001387 margin: 0;
1388 line-height: normal
1389}
1390.search-dropdown .desc {
1391 color: #999;
1392 font-size: 11.5px;
1393 line-height: normal;
1394 margin: 0;
1395}
1396.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
1397 color: #33b5e5
1398}
1399/* --------------------------------------------------------------------------
1400Buttons
1401*/
1402.button, a.button, .button-secondary, a.button-secondary {
1403 border-image: initial;
1404 -webkit-border-radius: 2px;
1405 -moz-border-radius: 2px;
1406 border-radius: 2px;
1407 cursor: pointer;
1408}
1409.button, a.button {
1410 background-color: #09c;
1411 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1412 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1413 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1414 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1415 background-image: -o-linear-gradient(top, #2faddb, #09c);
1416 background-image: linear-gradient(top, #2faddb, #09c);
1417 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1418 border: 1px solid #3990ab;
1419 color: #fff;
1420}
1421.button-secondary, a.button-secondary {
1422 background-color: #f3f3f3;
1423 border: 1px solid #dcdcdc;
1424 color: #444;
1425}
1426a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001427 margin-right: 16px;
Scott Maindb3678b2012-10-23 14:13:41 -07001428 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001429 min-width: 54px;
1430 outline: 0;
1431 padding: 8px 15px;
1432 text-align: center;
1433}
1434.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001435 margin-right: 16px;
1436 font-weight: 400;
1437 min-width: 54px;
1438 outline: 0;
1439 padding: 0 15px;
1440 text-align: center;
1441}
1442.button:hover, a.button:hover {
1443 border-color: #09c;
1444 background-color: #4cadcb;
1445 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1446 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1447 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1448 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1449 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1450 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1451 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1452EndColorStr='#4cadcb',GradientType=0);
1453 color: #fff !important;
1454}
1455.button:active, a.button:active {
1456 background-color: #1e799a;
1457 background-image: none;
1458 border-color: #30b7e6;
1459}
Scott Maindb3678b2012-10-23 14:13:41 -07001460a.button.big.subtitle {
1461 line-height:18px;
1462}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001463.button-secondary:hover, a.button-secondary:hover {
1464 border-color: #dbdbdb;
1465 background-color: #f3f3f3;
1466 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1467 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1468 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1469 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1470 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1471 background-image: linear-gradient(top, #f9f9f9, #ececec);
1472 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1473EndColorStr='#ececec');
1474 color: #33B5E5 !important;
1475}
1476.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001477 border-color: #dadada;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001478 background: #ebebeb; /* Old browsers */
1479 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1480 background:
1481url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1482Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1483eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1484CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1485eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1486YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1487CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1488CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1489CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1490CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1491R3JhZGllbnQ+
1492CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1493Lz4KPC9zdmc+);
1494 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
1495#ffffff 100%); /* FF3.6+ */
1496 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
1497color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1498/* Chrome,Safari4+ */
1499 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
150090%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
1501 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1502100%); /* Opera 11.10+ */
1503 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1504100%); /* IE10+ */
1505 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1506100%); /* W3C */
1507 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
1508endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
1509 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1510 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1511 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1512 color: #258AAF !important;
1513}
1514.button.big {
1515 font-size:20px;
1516 display:inline-block;
1517}
Scott Maindb3678b2012-10-23 14:13:41 -07001518.button.big span.small {
1519 font-size:14px;
1520}
1521.button-caption {
1522 margin-top:10px;
1523 font-size:12px;
1524 font-style:italic;
1525}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001526
1527.button.disabled,
1528.button.disabled:hover,
1529.button.disabled:active {
1530 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001531 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001532 border-color:#999;
1533 cursor:default;
1534}
1535
1536.training-nav-top a.button-secondary,
1537.training-nav-bottom a.button-secondary {
1538 display:block;
1539 float:left;
1540 margin:0;
1541 width:130px;
1542 text-transform:uppercase;
1543 font-weight:bold;
1544
1545 background-color: #f3f3f3;
1546 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1547 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1548 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1549 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1550 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1551 background-image: linear-gradient(top, #f9f9f9, #ececec);
1552 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1553EndColorStr='#ececec');
1554 color: #33B5E5;
1555}
1556
1557.training-nav-top a.button-secondary:hover,
1558.training-nav-bottom a.button-secondary:hover {
1559 background-color: #09c;
1560 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1561 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1562 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1563 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1564 background-image: -o-linear-gradient(top, #2faddb, #09c);
1565 background-image: linear-gradient(top, #2faddb, #09c);
1566 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1567 border: 1px solid #3990ab;
1568 color: #fff !important;
1569}
1570
1571.training-nav-top a.button-secondary.last,
1572.training-nav-bottom a.button-secondary.last {
1573 border-left:0;
1574}
1575
1576.training-nav-top a.button-secondary.double-size,
1577.training-nav-bottom a.button-secondary.double-size {
1578 width:291px;
1579}
1580
1581.training-nav-top,
1582.training-nav-bottom {
1583 float:right;
1584 margin:0 0 0 20px;
1585}
1586
1587.training-nav-bottom {
1588 padding:0 0 20px;
1589}
1590
1591#tb-wrapper,
1592#qv-wrapper {
1593 float:right;
1594 clear:right;
1595 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1596 padding:0 0 20px;
1597}
1598
1599#tb,
1600#qv {
1601 font-size:13px;
1602 line-height:18px;
1603 width:238px;
1604 border:1px solid #ccc;
1605 float:right;
1606}
1607
1608#tb {
1609 width:278px;
1610}
1611
1612#tb h2,
1613#qv h2 {
1614 margin:10px 15px;
1615 padding:0;
1616 text-transform:uppercase;
1617 border-bottom:1px solid gainsboro;
1618}
1619
1620#tb *,
1621#qv * {
1622 font-size:inherit;
1623}
1624
1625#tb .download-box {
1626 padding:0 0 0 15px;
1627}
1628
1629#tb .download-box .filename {
1630 font-size:11px;
1631 margin:4px 4px 10px;
1632 color:#666;
1633}
1634
1635
1636/* Dev guide quicknav */
1637
1638.sidebox-wrapper {
1639 float:right;
1640 clear:right;
1641 margin:0 0 0 20px;
1642 padding:0 0 20px;
1643}
1644
1645.sidebox {
1646 width:226px;
1647 font-size:13px;
1648 line-height:18px;
1649 border-left:4px solid #99CC00;
1650 float:right;
1651 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001652 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001653}
1654
1655.sidebox h2,
1656.sidebox h3,
1657.sidebox h4,
1658.sidebox h5 {
1659 font-weight:bold;
1660 margin:0 0 10px;
1661}
1662
1663.sidebox * {
1664 font-size:inherit;
1665}
1666
1667#tb ol,
1668#tb ul,
1669#qv ul {
1670 margin:0 15px 10px 35px;
1671}
1672
1673#qv ol {
1674 list-style:none;
1675 margin:0 15px 15px;
1676 font-size:inherit;
1677 line-height:inherit;
1678}
1679
1680#tb ol ol,
1681#tb ul ul,
1682#qv ol ol,
1683#qv ul ul,
1684.sidebox ol ol,
1685.sidebox ul ul {
1686 margin-bottom:0;
1687}
1688
1689#qv ol ol {
1690 margin:3px 0 3px 15px;
1691}
1692
1693.sidebox p,
1694#qv p,
1695#tb p {
1696 margin: 0 0 10px;
1697}
1698
1699
1700/* --------------------------------------------------------------------------
1701Form
1702*/
1703.article form {
1704 margin: 0 0 20px;
1705}
1706.article form .form-required {
1707 color: #dd4b39;
1708}
1709.article form fieldset {
1710 margin: 0 0 20px;
1711 padding: 0;
1712}
1713.article form legend {
1714 display: block;
1715 line-height: 1.5;
1716 margin: 0;
1717 padding: 0;
1718}
1719/*
1720.article form ol, .article form ul {
1721 margin: 0 0 0 1em;
1722 padding: 0 0 0 1em;
1723}
1724[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1725 margin: 0 1em 0 0;
1726 padding: 0 1em 0 0;
1727}
1728.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1729ul ul {
1730 list-style: none;
1731 margin: 0;
1732 padding: 0;
1733}
1734.article form li {
1735 margin: 0 0 20px;
1736}
1737.article form li li {
1738 margin: 0 0 5px;
1739}
1740*/
1741.article form label {
1742 display: block;
1743 margin: 0 0 5px;
1744 padding: 0;
1745}
1746.article form input[type='text'], .article form select, .article form textarea, .article form
1747.checkbox-group, .article form .radio-group {
1748 margin-bottom: 15px;
1749}
1750.checkbox-group input {
1751 width: 13px;
1752 height: 13px;
1753 background: #fff;
1754 border: solid 1px #c6c6c6;
1755 float: left;
1756}
1757.article form .checkbox-group, .article form .radio-group {
1758 display: block
1759}
1760.article form select {
1761 border: solid 1px #ebebeb;
1762 border-top-color: #ddd;
1763 -webkit-appearance: none;
1764 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
1765 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001766 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001767 line-height: normal;
1768 padding: 5px;
1769 width: 130px;
1770}
1771
1772.article form .browse .browse-msg {
1773 font-size: 11.5px;
1774}
1775.article form .browse .button-secondary {
1776 height: auto;
1777 line-height: 25px;
1778 font-size: 11px;
1779 padding: 0 8px;
1780 margin: 0 10px 15px 0;
1781}
1782.article form input[type='text'], .article form textarea {
1783 border: 1px solid #ebebeb;
1784 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07001785 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001786 line-height: normal;
1787 padding: 6px 10px;
1788 width: 300px;
1789}
1790.article form textarea {
1791 height: 150px;
1792}
1793.article form input[type='text']:focus, .article form textarea:focus {
1794 border-color: #33B5E5;
1795 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1796 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1797 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1798 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
1799 outline: 0;
1800}
1801.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
1802 color: #999;
1803}
1804.article form input[type='text'][disabled], .article form textarea[disabled] {
1805 background-color: #ebebeb;
1806}
1807form .form-error input[type='text'], form .form-error textarea {
1808 border-color: #dd4b39;
1809 margin-right: 20px;
1810}
1811.aside {
1812 -moz-border-radius: 2px;
1813 -webkit-border-radius: 2px;
1814 border-radius: 2px;
1815 margin: 10px 0;
1816 padding: 20px;
1817 color: #666;
1818 position: relative;
1819 background: #f9f9f9;
1820}
1821/*
1822.aside, .notification, .promo {
1823 -moz-border-radius: 2px;
1824 -webkit-border-radius: 2px;
1825 border-radius: 2px;
1826 margin: 10px 0;
1827 padding: 10px;
1828 position: relative;
1829}
1830.aside>:first-child, .notification>:first-child, .promo>:first-child {
1831 margin-top: 0;
1832}
1833.aside>:last-child, .notification>:last-child, .promo>:last-child {
1834 margin-bottom: 0;
1835}
1836.aside {
1837 background: #f9f9f9;
1838}
1839.notification {
1840 background: #fffbe4;
1841 border-color: #f8f6e6;
1842}
1843.promo {
1844 background: #f6f9ff;
1845 border-color: #eff2f9;
1846}
1847*/
Scott Maindb3678b2012-10-23 14:13:41 -07001848
1849/* SDK TOS styles */
1850
1851div.sdk-terms {
1852 white-space: pre-wrap;
1853 word-wrap: break-word;
1854 font-family: inherit;
1855 font-size: inherit;
1856 padding: 10px;
1857 height: 370px;
1858 width: 738px;
1859 border: 1px solid #444;
1860 background: transparent;
1861 overflow:auto;
1862 margin:0 0 10px;
1863}
1864
1865div.sdk-terms.fullsize {
1866 padding: 0;
1867 height: auto;
1868 width: auto;
1869 border:none;
1870}
1871
1872div.sdk-terms h3,
1873div.sdk-terms h2 {
1874 margin:0;
1875}
1876
1877div#sdk-terms-form {
1878 padding:0 0 0 10px;
1879}
1880
1881div#sdk-terms-form input#agree {
1882 display:inline;
1883 margin:4px 4px 4px 0;
1884}
1885
1886
Scott Maine4d8f1b2012-06-21 18:03:05 -07001887/* --------------------------------------------------------------------------
1888Code Style
1889*/
1890pre {
Scott Maindb3678b2012-10-23 14:13:41 -07001891 margin:0 0 1em 0;
1892 padding: 1em;
1893 overflow: auto;
1894 border: solid 1px #ddd;
1895 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001896}
1897.str { color: #080; }
1898.kwd { color: #008; }
1899.com { color: #800; }
1900.typ { color: #606; }
1901.lit { color: #066; }
1902.pun { color: #660; }
1903.pln { color: #000; }
1904.tag { color: #008; }
1905.atn { color: #828; }
1906.atv { color: #080; }
1907.dec { color: #606; }
1908
1909/* --------------------------------------------------------------------------
1910Three-Pane
1911*/
1912/* Package Nav & Classes Nav */
1913.three-pane {
1914 position: relative;
1915 border-top: solid 1px #ebebeb;
1916}
1917#packages-nav .js-pane,
1918#classes-nav .js-pane {
1919 overflow:visible;
1920}
1921#packages-nav {
1922 height:270px;
1923 max-height: inherit;
1924 overflow: hidden;
1925 position: relative;
1926}
1927#classes-nav {
1928 overflow: hidden;
1929 position: relative;
1930}
1931#packages-nav ul, #classes-nav ul {
1932 list-style-type: none;
1933 margin: 10px 0 20px 0;
1934 padding: 0;
1935}
1936#classes-nav li {
1937 font-weight: bold;
1938 margin: 5px 0;
1939}
1940#packages-nav li,
1941#classes-nav li li {
1942 margin: 0;
1943}
1944#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1945#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
1946 padding: 0 0 0 4px;
1947}
1948#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1949#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
1950#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Main9ada2262012-06-23 14:59:36 -07001951 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001952 font-weight: normal;
1953}
1954#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
1955#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
1956 display: block;
1957}
1958#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
1959a:visited,
1960#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
1961a:visited,
1962#nav-tree li div.selected {
1963 font-weight: 500;
1964 color: #0099cc;
1965 background-color:#fff; }
1966 #packages-nav li.selected ul li a,
1967 #classes-nav li.selected ul li a {
1968 /* don't highlight child items */
1969 color: #555555; }
1970#nav-tree li div.selected a {
1971 font-weight: 500;
1972 color: #0099cc;
1973}
1974#nav-swap {
1975 height:30px;
1976 border-top:1px solid #ccc;
1977}
1978#nav-swap a {
1979 display:inline-block;
1980 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07001981 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001982 font-size: 12px;
1983 padding: 5px 0 5px 5px;
1984}
1985
1986#nav-swap .fullscreen {
1987 float: right;
1988 width: 24px;
1989 height: 24px;
1990 text-indent: -1000em;
1991 padding:0;
1992 margin:3px 5px 0;
1993 background: url(../images/fullscreen.png) no-repeat -24px 0;
1994}
1995#nav-swap .fullscreen.disabled {
1996 background-position: 0 0;
1997}
1998#nav-swap .fullscreen:hover,
1999#nav-swap .fullscreen:focus {
2000 cursor:pointer;
2001}
2002
2003
2004/* nav tree */
2005#side-nav, #devdoc-nav, #swapper,
2006#nav-tree, #tree-list {
2007 overflow:hidden;
2008 margin-left:0;
2009}
2010
2011#nav-tree ul {
2012 list-style:none;
2013 padding:0;
2014 margin:10px 0;
2015}
2016
2017#nav-tree ul li div {
2018 padding:0 0 0 4px;
2019}
2020
2021#side-nav #nav-tree ul li a,
2022#side-nav #nav-tree ul li span.no-children {
2023 padding: 0;
2024 margin: 0;
2025}
2026
2027#nav-tree .plus {
2028 margin: 0 3px 0 0;
2029}
2030
2031#nav-tree ul ul {
2032 list-style: none;
2033 margin: 0;
2034 padding: 0 0 0 0;
2035}
2036
2037#nav-tree ul li {
2038 margin: 0;
2039 padding: 0 0 0 0;
2040 white-space: nowrap;
2041}
2042
2043#nav-tree .children_ul {
2044 padding:0;
2045 margin:0;
2046}
2047#nav-tree .children_ul li div {
2048 padding:0 0 0 10px;
2049}
2050#nav-tree .children_ul .children_ul li div {
2051 padding:0 0 0 20px;
2052}
2053
2054#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002055 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002056 text-decoration: none;
2057}
2058
2059#nav-tree span.label {
2060 width: 100%;
2061}
2062
2063#nav-tree {
2064 overflow-x: auto;
2065 overflow-y: scroll;
2066 outline:0;
2067}
2068
2069
2070/* Content */
2071#doc-col {
2072 margin-right:0;
2073}
2074#doc-content-container {
2075 margin-left: 291px
2076}
2077#doc-header, #doc-content {
2078 padding: 1em 2em;
2079}
2080#doc-header {
2081 background: #f7f7f7;
2082}
2083#doc-header h1 {
2084 line-height: 0;
2085 margin-bottom: 15px;
2086}
2087#api-info-block {
2088 float: right;
2089 font-weight: bold;
2090}
2091#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Main9ada2262012-06-23 14:59:36 -07002092 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002093}
2094#api-info-block a:hover, #api-info-block a:focus {
2095 color: #33B5E5;
2096}
2097#api-nav-header {
2098 height:19px; /* plus 16px padding = 35; same as #nav li */
2099 font-size:14px;
2100 padding: 8px 0;
2101 margin: 0;
2102 border-bottom: 1px solid #CCC;
2103 background:#e9e9e9;
2104 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2105
2106}
2107#api-nav-title {
2108 padding:0 5px;
2109 white-space:nowrap;
2110}
2111
2112#api-level-toggle {
2113 float:right;
2114 padding:0 5px;
2115}
2116
2117#api-level-toggle label {
2118 margin:0;
2119 vertical-align:top;
2120 line-height: 19px;
2121 font-size:13px;
2122 height: 19px;
2123}
2124
2125#api-level-toggle .select-wrapper {
2126 width: 35px;
2127 display: inline-block;
2128 overflow: hidden;
2129}
2130#api-level-toggle select {
2131 border: 0;
2132 appearance:none;
2133 -moz-appearance:none;
2134 -webkit-appearance: none;
2135 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002136 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002137 height: 19px;
2138 line-height: 19px;
2139 padding: 0;
2140 margin:1px 0 0 0;
2141 width:150%;
2142 font-size:13px;
2143 vertical-align:top;
2144 outline:0;
2145}
2146
2147
2148/* Toggle for revision notes and stuff */
2149div.toggle-content.closed .toggle-content-toggleme {
2150 display:none;
2151}
2152
2153#jd-content img.toggle-content-img {
2154 margin:0 5px 5px 0;
2155}
Scott Main220c3442012-07-16 15:40:17 -07002156div.toggle-content p {
2157 margin:10px 0 0;
2158}
2159div.toggle-content-toggleme {
2160 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002161}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002162
2163
2164/* API LEVEL FILTERED MEMBERS */
2165
2166.absent,
2167.absent a:link,
2168.absent a:visited,
2169.absent a:hover,
2170.absent * {
2171 color:#bbb !important;
2172 cursor:default !important;
2173 text-decoration:none !important;
2174}
2175#devdoc-nav li.absent.selected,
2176#devdoc-nav li.absent.selected *,
2177#devdoc-nav div.label.absent.selected,
2178#devdoc-nav div.label.absent.selected * {
2179 background-color:#eaeaea !important;
2180}
2181.absent h4.jd-details-title,
2182.absent h4.jd-details-title * {
2183 background-color:#f6f6f6 !important;
2184}
2185.absent img {
2186 opacity: .3;
2187 filter: alpha(opacity=30);
2188 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2189}
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199/* JQUERY RESIZABLE STYLES */
2200.ui-resizable { position: relative; }
2201.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2202.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2203/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2204body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2205.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2206border-bottom: solid 1px #ededed;
2207 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2208/*
2209.ui-resizable-e {
2210cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
22111px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2212*/
2213
2214/* --------------------------------------------------------------------------
2215Lightbox
2216*/
2217.lightbox {
2218 width: 769px;
2219 padding: 1.5em;
2220 margin: 0 auto;
2221 border: solid 1px #dcdcdc;
2222 background: #fff;
2223 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2224 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2225 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
2226}
2227.lightbox .header {
2228 float: left;
2229 width: 720px;
2230 margin: -10px 20px 10px 0;
2231}
2232.lightbox .close {
2233 float: right;
2234 width: 10px;
2235 height: 10px;
2236 margin: -10px -10px 10px 0;
2237 text-indent: -1000em;
2238 background: url(../images/close.png) no-repeat 0 0;
2239}
2240.lightbox .close:hover, .lightbox .close:focus {
2241 background-position: -10px 0;
2242}
2243
2244/* --------------------------------------------------------------------------
2245Misc
2246*/
2247
2248
2249.clearfix:before, .clearfix:after {
2250 content: "";
2251 display: table
2252}
2253.clearfix:after {
2254 clear: both
2255}
2256.clearfix {
2257 *zoom: 1
2258}
2259table.blank th, table.blank td {
2260 border: 0;
2261 background: none
2262}
2263.caption {
2264 margin: 0.5em 0 2em 0;
2265 color: #000;
2266 font-size: 11.5px;
2267}
2268
2269.nolist {
2270 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002271 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002272}
2273
Scott Maine4d8f1b2012-06-21 18:03:05 -07002274
2275pre.classic {
2276 background-color:transparent;
2277 border:none;
2278 padding:0;
2279}
2280
2281p.img-caption {
2282 margin: -10px 0 20px;
2283 font-size:13px;
2284 color:#666;
2285}
2286
2287div.figure {
2288 float:right;
2289 clear:right;
2290 margin:10px 0 0 0;
2291 padding:0 0 0 20px;
2292 /* width must be defined w/ an inline style matching the image width */
2293}
2294
2295p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002296 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002297 font-size:13px;
2298 color:#666;
2299}
2300
Scott Main24bbcd52012-09-21 14:33:43 -07002301p.code-caption {
2302 margin: 0 0 4px 0;
2303 font: 13px/1.5 'courier new', courier, monospace;
2304 color:#666;
2305}
2306
Scott Main54d2a9b2012-07-24 14:54:32 -07002307div.note,
2308div.caution,
2309div.warning {
2310 margin: 0 0 15px;
2311}
2312
Scott Maine4d8f1b2012-06-21 18:03:05 -07002313p.note, div.note,
2314p.caution, div.caution,
2315p.warning, div.warning {
2316 padding: 0 0 0 10px;
2317 border-left: 4px solid;
2318}
2319
Scott Main24bbcd52012-09-21 14:33:43 -07002320p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002321 border-color: #258AAF;
2322}
2323
Scott Main24bbcd52012-09-21 14:33:43 -07002324p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002325 border-color: #FF8800;
2326}
2327
Scott Main24bbcd52012-09-21 14:33:43 -07002328p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002329 border-color: #ff4443;
2330}
2331
Scott Main412eaf22012-06-22 14:36:33 -07002332div.note.design {
2333 border-left: 4px solid #33B5E5;
2334}
2335
2336div.note.develop {
2337 border-left: 4px solid #F80;
2338}
2339
2340div.note.distribute {
2341 border-left: 4px solid #9C0;
2342}
2343
2344.note p, .caution p, .warning p {
2345 margin:0 0 5px;
2346}
2347
2348.note p:last-child, .caution p:last-child, .warning p:last-child {
2349 margin-bottom:0;
2350}
2351
Scott Main5b5ff1a2012-09-12 10:29:45 -07002352body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002353 display:block;
2354 float:right;
2355 width:280px;
2356 font-size:20px;
2357 font-style:italic;
2358 line-height:24px;
2359 color:#33B5E5;
2360 margin:0 0 20px 30px;
2361}
2362
Scott Maine4d8f1b2012-06-21 18:03:05 -07002363div.design-announce p {
2364 margin:0 0 10px;
2365}
2366
2367#devdoc-nav a.totop {
2368 display:block;
2369 top:0;
2370 width:inherit;
2371 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2372 text-indent:-9999em;
2373}
2374#devdoc-nav a.totop {
2375 position:fixed;
2376 display:none;
2377}
2378#devdoc-nav a.totop:hover {
2379 background-color:#33B5E5;
2380}
2381
2382.content-footer a.totop {
2383 text-transform:uppercase;
2384 line-height:30px;
2385}
2386
Scott Maindb3678b2012-10-23 14:13:41 -07002387.expandable {
2388 height:34px;
2389 padding-left:20px;
2390 position:relative;
2391}
2392.expandable:before {
2393 content: '';
2394 background-image: url(../images/styles/disclosure_down.png);
2395 background-repeat:no-repeat;
2396 background-position: -12px -9px;
2397 width: 20px;
2398 height: 20px;
2399 display: inline-block;
2400 position: absolute;
2401 top: 0;
2402 left: 0; }
2403}
2404.expandable.expanded:before {
2405 background-image: url(../images/styles/disclosure_up.png);
2406}
2407
2408
2409
Scott Maine4d8f1b2012-06-21 18:03:05 -07002410/* -----------------------------------------------
2411Dialog box for popup messages
2412*/
2413
2414div.dialog {
2415 height:0;
2416 margin:0 auto;
2417}
2418
2419div.dialog>div {
2420 z-index:99;
2421 position:fixed;
2422 margin:70px 0;
2423 width: 391px;
2424 height: 200px;
2425 background: #F7F7F7;
2426-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2427-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2428box-shadow: 0 0 15px rgba(0,0,0,0.5);
2429}
2430/* IE6 can't position fixed */
2431* html div.dialog div { position:absolute; }
2432
2433
2434div#deprecatedSticker {
2435 display:none;
2436 z-index:99;
2437 position:fixed;
2438 right:15px;
2439 top:114px;
2440 margin:0;
2441 padding:1em;
2442 background:#FFF;
2443 border:1px solid #dddd00;
2444 box-shadow:-5px 5px 10px #ccc;
2445 -moz-box-shadow:-5px 5px 10px #ccc;
2446 -webkit-box-shadow:-5px 5px 10px #ccc;
2447}
2448
2449div#naMessage {
2450 display:none;
2451 width:555px;
2452 height:0;
2453 margin:0 auto;
2454}
2455
2456div#naMessage div {
2457 z-index:99;
2458 width:450px;
2459 position:fixed;
2460 margin:50px 0;
2461 padding:4em 4em 3em;
2462 background:#FFF;
2463 border:1px solid #999;
2464 box-shadow:-10px 10px 40px #888;
2465 -moz-box-shadow:-10px 10px 40px #888;
2466 -webkit-box-shadow:-10px 10px 40px #888;
2467}
2468/* IE6 can't position fixed */
2469* html div#naMessage div { position:absolute; }
2470
2471div#naMessage strong {
2472 font-size:1.1em;
2473}
2474
2475
2476/* --------------------------------------------------------------------------
2477Slideshow Controls & Next/Prev
2478*/
2479.slideshow-next, .slideshow-prev {
2480 width: 20px;
2481 height: 36px;
2482 text-indent: -1000em;
2483}
2484.slideshow-container {
2485 margin: 2em 0;
2486}
2487.slideshow-container:before, .slideshow-container:after {
2488 content: "";
2489 display: table;
2490 clear: both;
2491}
2492a.slideshow-next, a.slideshow-next:visited {
2493
2494 float: right;
2495
2496 background: url(../images/arrow-right.png) no-repeat 0 0
2497
2498}
2499
2500a.slideshow-prev, a.slideshow-prev:visited {
2501
2502 float: left;
2503
2504 background: url(../images/arrow-left.png) no-repeat 0 0
2505
2506}
2507
2508.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
2509
2510 background-position: 0 -36px
2511
2512}
2513
2514.slideshow-next:active, .slideshow-prev:active {
2515
2516 background-position: 0 -72px
2517
2518}
2519.slideshow-nav {
2520 width: 74px;
2521 margin: 0 auto;
2522}
2523.slideshow-nav a, .slideshow-nav a:visited {
2524 display: inline-block;
2525 width: 12px;
2526 height: 12px;
2527 margin: 0 2px 20px 2px;
2528 background: #ccc;
2529 -webkit-border-radius: 50%;
2530 -moz-border-radius: 50%;
2531 border-radius: 50%;
2532}
2533.slideshow-nav a:hover, .slideshow-nav a:focus {
2534
2535 background: #33B5E5
2536}
2537
2538.slideshow-nav a:active {
2539
2540 background: #1e799a;
2541 background: #ebebeb;
2542 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2543 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2544 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
2545}
2546.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
2547 background: #33B5E5
2548}
2549/* --------------------------------------------------------------------------
2550Tabs
2551*/
2552ul.tabs {
2553 padding: 0;
2554 margin: 2em 0 0 0;
2555}
2556ul.tabs:before, ul.tabs:after {
2557 content: "";
2558 display: table;
2559 clear: both;
2560}
2561ul.tabs li {
2562 list-style-type: none;
2563 float: left;
2564}
2565ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
2566 display: block;
2567 height: 36px;
2568 line-height: 36px;
2569 padding: 0 15px;
2570 margin-right: 2px;
Scott Main9ada2262012-06-23 14:59:36 -07002571 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002572 -moz-border-radius-topleft: 2px;
2573 -moz-border-radius-topright: 2px;
2574 -moz-border-radius-bottomright: px;
2575 -moz-border-radius-bottomleft: px;
2576 -webkit-border-radius: 2px 2px px px;
2577 border-radius: 2px 2px px px;
2578 border-top: solid 1px #ebebeb;
2579 border-left: solid 1px #ebebeb;
2580 border-right: solid 1px #ebebeb;
2581 background-color: #fff;
2582 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
2583 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
2584 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
2585 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
2586 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
2587 background-image: linear-gradient(top, #ffffff, #fafafa);
2588 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
2589EndColorStr='#fafafa');
2590}
2591ul.tabs li a:hover {
2592 color: #33B5E5;
2593}
2594ul.tabs li a.selected {
2595 height: 37px;
2596 color: #33B5E5;
2597 background-color: #f7f7f7;
2598 background-image: none;
2599 border-color: #ddd;
2600}
2601.tab-content {
2602 padding: 1.2em;
2603 margin: -1px 0 2em 0;
2604 -webkit-border-radius: 2px;
2605 -moz-border-radius: 2px;
2606 border-radius: 2px;
2607 border: solid 1px #ddd;
2608 background: #f7f7f7;
2609}
2610/* --------------------------------------------------------------------------
2611Feature Boxes
2612*/
2613.feature-box {
2614 width: 291px;
2615 height: 200px;
2616 position: relative;
2617 background: #F7F7F7;
2618}
2619.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
2620 z-index: 100;
2621 position: absolute;
2622 background-color: #aaa;
2623}
2624.box-border .top, .box-border .bottom {
2625 width: 291px;
2626 height: 1px;
2627}
2628.dialog .box-border .top,
2629.dialog .box-border .bottom { width:391px; }
2630
2631.box-border .left, .box-border .right {
2632 width: 1px;
2633 height: 8px;
2634}
2635.box-border .top { top: 0; left: 0 }
2636.box-border .top .left { top: 1px; left: 0 }
2637.box-border .top .right { top: 1px; right: 0 }
2638.box-border .bottom .left { top: -8px; left: 0 }
2639.box-border .bottom { top: 200px; left: 0 }
2640.box-border .bottom .right { top: -8px; right: 0 }
2641
2642.feature-box h4,
2643.dialog h4 {
2644 margin: 15px 18px 10px;
2645 padding:0;
2646}
2647
2648.feature-box p,
2649.dialog p {
2650 margin: 10px 18px;
2651 padding:0;
2652}
2653.feature-box .link,
2654.dialog .link {
2655 border-top: 1px solid #dedede;
2656 bottom: 0;
2657 position: absolute;
2658 width: inherit;
2659}
2660.feature-box a, .feature-box h4,
2661.dialog a, .dialog h4 {
2662 -webkit-transition: color .4s ease;
2663 -moz-transition: color .4s ease;
2664 -o-transition: color .4s ease;
2665 transition: color .4s ease;
2666}
2667.feature-box:hover {
2668 cursor: pointer;
2669}
2670.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
2671.left, .feature-box:hover .right {
2672 background-color: #33B5E5;
2673}
2674.feature-box:hover h4, .feature-box:hover a {
2675 color: #33B5E5;
2676}
2677/* --------------------------------------------------------------------------
2678Page-Specific Styles
2679*/
2680.colors {
2681 position: relative;
2682 float: left;
2683 width: 92px;
2684 margin: 40px 0 20px;
2685}
2686.colors div {
2687 color: #fff;
2688 font-size: 11.5px;
2689 width: 82px;
2690 height: 82px;
2691 margin-top:-30px;
2692 line-height: 82px;
2693 text-align: center;
2694 border: solid 5px #fff;
2695 -webkit-border-radius: 50%;
2696 -moz-border-radius: 50%;
2697 border-radius: 50%;
2698}
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713/* ########### REFERENCE DOCS ################## */
2714
2715#packages-nav h2,
2716#classes-nav h2 {
2717 font-size:18px;
2718 margin:0;
2719 padding:0 0 0 4px;
2720}
2721
2722#jd-header {
2723 padding: 0 0 5px;
2724 margin: 20px 0 10px;
2725 font-size:13px;
2726 border-bottom:solid 1px #ccc;
2727}
2728
2729#jd-header h1 {
2730 margin:0;
2731 padding:0;
2732}
2733
2734/* page-top-right container for reference pages (holds
2735links to summary tables) */
2736#api-info-block {
2737 font-size:13px;
2738 margin:20px 0 0;
2739 padding:0 10px 6px;
2740 font-weight:normal;
2741 float:right;
2742 text-align:right;
2743 color:#999;
2744 max-width:70%;
2745}
2746
2747#api-info-block div.api-level {
2748 font-weight:bold;
2749 font-size:inherit;
2750 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07002751 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002752 padding:0;
2753 margin:0;
2754}
2755
2756/* inheritance table */
2757.jd-inheritance-table {
2758 border-spacing:0;
2759 margin:0;
2760 padding:0;
2761 font-size:13px;
2762 background-color:transparent;
2763}
2764.jd-inheritance-table tr td {
2765 border: none;
2766 margin: 0;
2767 padding: 0;
2768 background-color:transparent;
2769}
2770.jd-inheritance-table .jd-inheritance-space {
2771 font-weight:bold;
2772 width:1em;
2773}
2774.jd-inheritance-table .jd-inheritance-interface-cell {
2775 padding-left: 17px;
2776}
2777
2778
2779
2780.jd-sumtable a {
2781 text-decoration:none;
2782}
2783
2784.jd-sumtable a:hover {
2785 text-decoration:underline;
2786}
2787
2788/* the link inside a sumtable for "Show All/Hide All" */
2789.toggle-all {
2790 display:block;
2791 float:right;
2792 font-weight:normal;
2793 font-size:0.9em;
2794}
2795
2796/* adjustments for in/direct subclasses tables */
2797.jd-sumtable.jd-sumtable-subclasses {
2798 margin: 1em 0 0 0;
2799 max-width:968px;
2800 background-color:transparent;
2801 font-size:13px;
2802}
2803
2804/* extra space between end of method name and open-paren */
2805.sympad {
2806 margin-right: 2px;
2807}
2808
2809/* right alignment for the return type in sumtable */
2810.jd-sumtable .jd-typecol {
2811 text-align:right;
2812}
2813
2814/* adjustments for the expando table-in-table */
2815.jd-sumtable-expando {
2816 margin:.5em 0;
2817 padding:0;
2818}
2819
2820/* a div that holds a short description */
2821.jd-descrdiv {
2822 padding:3px 1em 0 1em;
2823 margin:0;
2824 border:0;
2825}
2826
2827#jd-content img.jd-expando-trigger-img {
2828 padding:0 4px 4px 0;
2829 margin:0;
2830}
2831
2832.jd-sumtable-subclasses div#subclasses-direct,
2833.jd-sumtable-subclasses div#subclasses-indirect {
2834 margin:0 0 0 13px;
2835}
2836
2837
2838
2839/********* MEMBER REF *************/
2840
2841
2842.jd-details {
2843/* border:1px solid #669999;
2844 padding:4px; */
2845 margin:0 0 1em;
2846}
2847
2848/* API reference: a container for the
2849.tagdata blocks that make up the detailed
2850description */
2851.jd-details-descr {
2852 padding:0;
2853 margin:.5em .25em;
2854}
2855
2856/* API reference: a block containing
2857a detailed description, a params table,
2858seealso list, etc */
2859.jd-tagdata {
2860 margin:.5em 1em;
2861}
2862
2863.jd-tagdata p {
2864 margin:0 0 1em 1em;
2865}
2866
2867/* API reference: adjustments to
2868the detailed description block */
2869.jd-tagdescr {
2870 margin:.25em 0 .75em 0;
2871}
2872
2873.jd-tagdescr ol,
2874.jd-tagdescr ul {
2875 margin:0 2.5em;
2876 padding:0;
2877}
2878
2879.jd-tagdescr table,
2880.jd-tagdescr img {
2881 margin:.25em 1em;
2882}
2883
2884.jd-tagdescr li {
2885margin:0 0 .25em 0;
2886padding:0;
2887}
2888
2889/* API reference: heading marking
2890the details section for constants,
2891attrs, methods, etc. */
2892h4.jd-details-title {
2893 font-size:1.15em;
2894 background-color: #E2E2E2;
2895 margin:1.5em 0 .6em;
2896 padding:3px 95px 3px 3px; /* room for api-level */
2897}
2898
2899h4.jd-tagtitle {
2900 margin:0;
2901}
2902
2903h4 .normal {
2904 font-weight:normal;
2905}
2906
2907/* API reference: heading for "Parameters", "See Also", etc.,
2908in details sections */
2909h5.jd-tagtitle {
2910 margin:0 0 .25em 0;
2911 font-size:1em;
2912}
2913
2914.jd-tagtable {
2915 margin:0;
2916 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07002917 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002918}
2919
2920.jd-tagtable td,
2921.jd-tagtable th {
2922 border:none;
2923 background-color:#fff;
2924 vertical-align:top;
2925 font-weight:normal;
2926 padding:2px 10px;
2927}
2928
2929.jd-tagtable th {
2930 font-style:italic;
2931}
2932
2933/* Inline api level indicator for methods */
2934div.api-level {
2935 font-size:.8em;
2936 font-weight:normal;
2937 color:#999;
2938 float:right;
2939 padding:0 8px 0;
2940 margin-top:-30px;
2941}
2942
2943table.jd-tagtable td,
2944table.jd-tagtable th {
2945 background-color:transparent;
2946}
2947
2948table.jd-tagtable th {
2949 color:inherit;
2950}
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974/* SEARCH FILTER */
2975
2976#search_autocomplete {
2977 font-weight:normal;
2978}
2979
2980#search_filtered_wrapper {
2981 width: 193px;
2982 float: right;
2983}
2984#search_filtered_div {
2985 position:absolute;
2986 z-index:9999;
2987 min-width:171px; /* +padding and border makes this match input width */
2988 padding:5px;
2989 border: solid 1px #C5C5C5;
2990 background: white;
2991 top: 35px;
2992 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
2993 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2994 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
2995}
2996
2997ul#search_filtered {
2998 min-width:100%;
2999 margin:0;
3000 list-style: none;
3001 margin: 0;
3002 padding: 0;
3003}
3004
3005
3006#search_filtered li{
3007 line-height:1.5em;
3008 margin: 0 0 2px;
3009 padding: 0;
3010}
3011
3012#search_filtered li a {
3013 padding:0 5px;
Scott Main9ada2262012-06-23 14:59:36 -07003014 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003015}
3016
3017#search_filtered .jd-selected {
3018 background-color: #33B5E5;
3019 cursor:pointer;
3020}
3021#search_filtered .jd-selected,
3022#search_filtered .jd-selected a {
3023 color:#f7f7f7 !important;
3024}
3025
3026.no-display {
3027 display: none;
3028}
3029
3030.jd-autocomplete {
3031 padding-left: 6px;
3032 padding-right: 6px;
3033 padding-top: 1px;
3034 padding-bottom: 1px;
3035 font-size: 0.81em;
3036 border: none;
3037 margin: 0;
3038 line-height: 1.05em;
3039}
3040
3041.show-item {
3042 display: table-row;
3043}
3044.hide-item {
3045 display: hidden;
3046}
3047
3048
3049
3050
3051
3052/* SEARCH RESULTS */
3053
Scott Maine4d8f1b2012-06-21 18:03:05 -07003054
3055#leftSearchControl .gsc-twiddle {
3056 background-image : none;
3057}
3058
3059#leftSearchControl td, #searchForm td {
3060 border: 0px solid #000;
3061 padding:0;
3062}
3063
3064#leftSearchControl .gsc-resultsHeader .gsc-title {
3065 padding-left : 0px;
3066 font-weight : bold;
3067 font-size : 13px;
3068 color:#006699;
3069 display : none;
3070}
3071
3072#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3073 display : none;
3074}
3075
3076#leftSearchControl .gsc-resultsRoot {
3077 padding-top : 6px;
3078}
3079
3080#leftSearchControl div.gs-visibleUrl-long {
3081 display : block;
3082 color:#006699;
3083}
3084
3085#leftSearchControl .gsc-webResult {
3086 padding:0 0 20px 0;
3087}
3088
3089.gsc-webResult div.gs-visibleUrl-short,
3090table.gsc-branding,
3091.gsc-clear-button {
3092 display : none;
3093}
3094
3095.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3096.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3097#leftSearchControl a,
3098#leftSearchControl a b {
3099 color:#006699;
3100}
3101
3102.gsc-resultsHeader {
3103 display: none;
3104}
3105
3106/* Disable built in search forms */
3107.gsc-control form.gsc-search-box {
3108 display : none;
3109}
3110table.gsc-search-box {
3111 margin:6px 0 0 0;
3112 border-collapse:collapse;
3113}
3114
3115td.gsc-input {
3116 padding:0 2px;
3117 width:100%;
3118 vertical-align:middle;
3119}
3120
3121input.gsc-input {
3122 border:1px solid #BCCDF0;
3123 width:99%;
3124 padding-left:2px;
3125 font-size:.95em;
3126}
3127
3128td.gsc-search-button {
3129 text-align: right;
3130 padding:0;
3131 vertical-align:top;
3132}
3133
3134
3135#searchResults {
3136 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3137(it doesn't) */
3138 height:auto;
3139}
3140
3141#searchResults .gsc-control {
3142 position:relative;
3143 width:auto;
3144 padding:0 0 10px;
3145}
3146
3147#searchResults .gsc-tabsArea {
3148 position:relative;
3149 white-space:nowrap;
3150 float:left;
3151 width:200px;
3152}
3153
3154#searchResults .gsc-above-wrapper-area {
3155 display:none;
3156}
3157
3158#searchResults .gsc-resultsbox-visible {
3159 float:left;
3160 width:720px;
3161 margin-left:20px;
3162}
3163
3164#searchResults .gsc-tabHeader {
3165 padding: 3px 6px;
3166 position:relative;
3167 width:auto;
3168 display:block;
3169}
3170
3171#searchResults h2#searchTitle {
3172 padding:0;
3173 margin:5px 0;
3174 border:none;
3175}
3176
3177#searchResults h2#searchTitle em {
3178 font-style:normal;
3179 color:#33B5E5;
3180}
3181
3182#searchResults .gsc-table-result {
3183 margin:5px 0 10px 0;
3184 background-color:transparent;
3185}
3186#searchResults .gs-web-image-box, .gs-promotion-image-box {
3187 width:120px;
3188}
3189#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3190 max-width:120px;
3191}
3192
3193#searchResults .gsc-table-result .gsc-thumbnail {
3194 padding:0 20px 0 0;
3195}
3196
3197#searchResults td {
3198 background-color:transparent;
3199}
3200
3201#searchResults .gsc-expansionArea {
3202 position:relative;
3203}
3204#searchResults .gsc-tabsArea .gsc-cursor-box {
3205 width:200px;
3206 padding:20px 0 0 1px;
3207}
3208#searchResults .gsc-cursor-page {
3209 display:inline-block;
3210 float:left;
3211 margin:-1px 0 0 -1px;
3212 padding:0;
3213 height:27px;
3214 width:27px;
3215 text-align:center;
3216 line-height:2;
3217}
3218
3219#searchResults .gsc-tabHeader.gsc-tabhInactive,
3220#searchResults .gsc-cursor-page {
3221 text-decoration:none;
3222 color:#258AAF;
3223 border: solid 1px #DADADA;
3224}
3225
3226#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3227#searchResults .gsc-cursor-page:hover {
3228 border-color: #DBDBDB;
3229 background-color: #F3F3F3;
3230 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3231 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3232 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3233 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3234 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3235 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3236 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3237EndColorStr='#ececec');
3238 color: #33B5E5;
3239}
3240
3241#searchResults .gsc-tabHeader.gsc-tabhActive,
3242#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3243#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3244#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3245 color:#fff;
3246 background-color: #09C;
3247 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3248 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3249 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3250 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3251 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3252 background-image: linear-gradient(top, #2FADDB, #09C);
3253 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3254 border: 1px solid #3990AB;
3255 z-index:100;
3256}
3257
3258}
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272/*********** PREVIOUSLY dac-styles.css ***************/
3273
3274
3275
3276
3277
3278::-webkit-selection,
3279::-moz-selection,
3280::selection {
3281 background-color: #0099cc;
3282 color: #fff; }
3283
3284#header {
3285 border-bottom:0;
3286}
3287
3288#header .wrap {
3289 max-width:940px;
3290 height:41px;
3291 border-bottom:1px solid;
3292 border-color: #ccc;
3293 position:relative;
3294}
3295
3296.about #header .wrap {
3297 border-color: #9933CC;
3298}
3299
3300.design #header .wrap {
3301 border-color: #33b5e5;
3302}
3303
3304.develop #header .wrap {
3305 border-color: #F80;
3306}
3307
3308.distribute #header .wrap {
3309 border-color: #9C0;
3310}
3311
3312.logo a {
3313 width:123px;
3314 float:left;
3315}
3316
3317#header .logo {
3318 margin-top: -6px;
3319 margin-left: 0px;
3320 margin-bottom:0px;
3321 width: 160px;
3322 padding-right:10px;
3323}
3324
3325.search {
3326 height:25px;
3327 margin-top: -3px;
3328 margin-bottom: 0px;
3329}
3330
3331
3332
3333/* Quicknav */
3334.btn-quicknav {
3335 width:20px;
3336 height:28px;
3337 float:left;
3338 margin-left:6px;
3339 padding-right:10px;
3340 position:relative;
3341 cursor:pointer;
3342 border-right:1px solid #CCC;
3343}
3344
3345.btn-quicknav a {
3346 zoom:1;
3347 position:absolute;
3348 top:13px;
3349 left:5px;
3350 display:block;
3351 text-indent:-9999em;
3352 width:10px;
3353 height:5px;
3354 background:url(../images/quicknav_arrow.png) no-repeat;
3355}
3356
3357.btn-quicknav a.arrow-active {
3358 background-position: 0 -5px;
3359 display:none;
3360}
3361
3362#header-wrap.quicknav a.arrow-inactive {
3363 display:none;
3364}
3365
3366.btn-quicknav.active a.arrow-active {
3367 display:block;
3368}
3369
3370.nav-x li {
3371 display:block;
3372 float:left;
3373 margin-right:45px;
3374 -webkit-transition: all 0.25s linear;
3375 -moz-transition: all 0.25s linear;
3376 -ms-transition: all 0.25s linear;
3377 -o-transition: all 0.25s linear;
3378 transition: all 0.25s linear;
3379}
3380
3381#header-wrap.quicknav .nav-x li {
3382 min-width:160px;
3383 margin-right:20px;
3384}
3385
3386#header-wrap.quicknav li.last {
3387 margin-right:0px;
3388}
3389
3390#quicknav {
3391 float:none;
3392 clear:both;
3393 margin-left:180px;
3394 margin-top:-30px;
3395 display:none;
3396 overflow:hidden;
3397}
3398
3399#header-wrap.quicknav #quicknav {
3400
3401}
3402
3403#quicknav ul {
3404 margin:10px 0;
3405 padding:0;
3406}
3407
3408#quicknav ul li.design {
3409 border-top:1px solid #33b5e5;
3410}
3411
3412#quicknav ul li.develop {
3413 border-top:1px solid #FF8800;
3414}
3415
3416#quicknav ul li.distribute {
3417 border-top:1px solid #99cc00;
3418}
3419
3420#quicknav ul li {
3421 display:block;
3422 float:left;
3423 margin:0 20px 0 0;
3424 min-width:140px;
3425}
3426
3427#quicknav ul li.last {
3428 margin-right:0px;
3429}
3430
3431#quicknav ul li ul li {
3432 float:none;
3433}
3434
3435#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07003436 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003437}
3438
3439#quicknav ul li li ul,
3440#quicknav ul li li ul li {
3441 margin:0;
3442}
3443
3444#quicknav ul li li ul li:before {
3445 content:"\21B3";
3446}
3447
3448#header-wrap {
3449 -webkit-transition: all 0.25s ease-out;
3450 -moz-transition: all 0.25s ease-out;
3451 -ms-transition: all 0.25s ease-out;
3452 -o-transition: all 0.25s ease-out;
3453 transition: all 0.25s ease-out;
3454
3455}
3456
3457#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07003458 height:196px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003459
3460}
3461
3462/* SEARCH AND MORE */
3463.search {
3464 position: absolute;
3465 width: 50px;
3466 height:28px;
3467 display: block;
3468 margin-top:-3px;
3469 margin-bottom:7px;
3470 overflow:hidden;
3471 z-index:100;
3472 right:54px;
3473 -webkit-transition: width 0.4s ease;
3474 -moz-transition: width 0.4s ease;
3475 -o-transition: width 0.4s ease;
3476 transition: width 0.4s ease;
3477}
3478
3479.search #search-btn {
3480 width:50px;
3481 height:28px;
3482 background:url(../images/icon_search.png) no-repeat;
3483 float:left;
3484}
3485
3486.search-inner {
3487 width:245px;
3488}
3489
3490.search:hover, .search.active {
3491 width:245px;
3492}
3493
3494.search .bottom, .search .left, .search .right {
3495 position: absolute;
3496 background-color: #a2a2a2
3497}
3498
3499.search .bottom {
3500 width: 214px;
3501 height: 1px;
3502 top: 24px;
3503 left: 0
3504}
3505
3506.search .left, .search .right {
3507 height: 5px;
3508 width: 1px
3509}
3510
3511.search .left {
3512 top: 22px;
3513 left: 56px;
3514 background-color:#CCC;
3515}
3516
3517.search .right {
3518 top: 22px;
3519 left: 238px;
3520 background-color:#CCC;
3521}
3522
3523.search form {
3524 margin-top: 2px;
3525 width: 162px;
3526 float:left;
3527}
3528
3529.search form input {
3530 color: #2f2f2f;
3531 font-size: 0.95em;
3532 width: 178px;
3533 border: none;
3534 margin-left: 6px;
3535 z-index: 1500;
3536 position: relative;
3537 background-color: transparent;
3538 border-bottom:1px solid #CCC;
3539 padding:0 0 0 4px;
3540 outline:none;
3541 height:24px;
3542}
3543
3544.search:hover form input {
3545 border-bottom:1px solid #33B5E5;
3546}
3547
3548.search:hover .bottom, .search:hover .left, .search:hover .right {
3549 background-color: #33b5e5;
3550}
3551
3552.search:hover #search-btn {
3553 background-position: 0 -28px
3554}
3555
3556.search form input:focus {
Scott Main9ada2262012-06-23 14:59:36 -07003557 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003558 font-weight: bold
3559}
3560
3561.moremenu {
3562 float: right;
3563 position: relative;
3564 width: 50px;
3565 height:28px;
3566 display: block;
3567 margin-top:-3px;
3568 margin-bottom:7px;
3569 overflow:hidden;
3570 -webkit-transition: width 0.25s ease;
3571 -moz-transition: width 0.25s ease;
3572 -o-transition: width 0.25s ease;
3573 transition: width 0.25s ease;
3574}
3575
3576.moremenu #more-btn {
3577 width:40px;
3578 height:28px;
3579 background:url(../images/icon_more.png) no-repeat;
3580 border-left:1px solid #CCC;
3581 float:left;
3582 cursor:pointer;
3583}
3584
3585.moremenu:hover #more-btn {
3586 background-position:0 -28px;
3587}
3588
3589.morehover {
3590 position:absolute;
3591 right:6px;
3592 top:-9px;
3593 width:40px;
3594 height:35px;
3595 z-index:99;
3596 overflow:hidden;
3597
3598 -webkit-opacity:0;
3599 -moz-opacity:0;
3600 -o-opacity:0;
3601 opacity:0;
3602
3603 -webkit-transform-origin:100% 0%;
3604 -moz-transform-origin:100% 0%;
3605 -o-transform-origin:100% 0%;
3606 transform-origin:100% 0%;
3607
3608 -webkit-transition-property: -webkit-opacity;
3609 -webkit-transition-duration: .25s;
3610 -webkit-transition-timing-function:ease;
3611
3612 -moz-transition-property: -webkit-opacity;
3613 -moz-transition-duration: .25s;
3614 -moz-transition-timing-function:ease;
3615
3616 -o-transition-property: -webkit-opacity;
3617 -o-transition-duration: .25s;
3618 -o-transition-timing-function:ease;
3619
3620 -transition-property: -webkit-opacity;
3621 -transition-duration: .25s;
3622 -transition-timing-function:ease;
3623}
3624
3625.morehover:hover {
3626 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07003627 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003628 width:268px;
3629 -webkit-transition-property:height, -webkit-opacity;
3630}
3631
3632.morehover .top {
3633 width:268px;
3634 height:39px;
3635 background:url(../images/more_top.png) no-repeat;
3636}
3637
3638.morehover .mid {
3639 width:228px;
3640 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07003641 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003642}
3643
3644.morehover .mid .header {
3645 border-bottom:1px solid #ccc;
3646 font-weight:bold;
3647}
3648
3649.morehover .bottom {
3650 width:268px;
3651 height:6px;
3652 background:url(../images/more_bottom.png) no-repeat;
3653}
3654
3655.morehover ul {
3656 margin:10px 10px 20px 0;
3657}
3658
3659.morehover ul li {
3660 list-style:none;
3661}
3662
3663.morehover ul li.active a,
3664.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07003665 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003666}
3667
3668.morehover ul li.active img {
3669 margin-right:4px;
3670}
3671
3672
3673
3674
3675/* MARQUEE */
3676.slideshow-container {
3677 width:100%;
3678 overflow:hidden;
3679 position:relative;
3680}
3681.slideshow-container .slideshow-prev {
3682 position:absolute;
3683 top:50%;
3684 left:0px;
3685 margin-top:-36px;
3686 z-index:99;
3687}
3688.slideshow-container .slideshow-next {
3689 position:absolute;
3690 top:50%;
3691 margin-top:-36px;
3692 z-index:99;
3693 right:0px;
3694}
3695
3696.slideshow-container .pagination {
3697 position:absolute;
3698 bottom:20px;
3699 width:100%;
3700 text-align:center;
3701 z-index:99;
3702}
3703.slideshow-container .pagination ul {
3704 margin:0;
3705}
3706.slideshow-container .pagination ul li{
3707 display: inline-block;
3708 width:12px;
3709 height:12px;
3710 text-indent:-8000px;
3711 list-style:none;
3712 margin: 0 2px;
3713 border-radius:6px;
3714 background-color:#ccc;
3715 cursor:pointer;
3716 -webkit-transition:color .5s ease-in;
3717 -moz-transition:color .5s ease-in;
3718 -o-transition:color .5s ease-in;
3719 transition:color .5s ease-in;
3720}
3721.slideshow-container .pagination ul li:hover {
3722 background-color:#999;
3723}
3724.slideshow-container .pagination ul li.active {
3725 background-color:#33b5e5;
3726}
3727.slideshow-container .pagination ul li.active:hover {
3728 background-color:#33b5e5;
3729}
3730.slideshow-container ul li {
3731 display:inline;
3732 list-style:none;
3733}
3734
3735
3736
3737
3738a.download-sdk {
3739 float:right;
3740 margin:-10px 0;
3741 height:30px;
3742 padding-top:4px;
3743 padding-bottom:0px;
3744}
3745
3746#nav-x {
3747 padding-top: 14px;
3748}
3749
Scott Main1d62fa82012-07-17 13:15:12 -07003750#nav-x .wrap {
3751 min-height:34px;
3752}
3753
Scott Maine4d8f1b2012-06-21 18:03:05 -07003754#nav-x .wrap,
3755#searchResults.wrap {
3756 max-width:940px;
3757 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003758}
3759
Scott Maina214d842012-07-16 17:14:40 -07003760#searchResults.wrap #leftSearchControl {
3761 min-height:700px
3762}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003763.nav-x {
3764 margin-left:0;
3765 margin-bottom:0;
3766}
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777/*
3778 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3779 */
3780
3781.jspContainer {
3782 overflow: hidden;
3783 position: relative;
3784}
3785
3786.jspPane {
3787 position: absolute;
3788 overflow: hidden;
3789 width:auto !important; /* to avoid cut-off api names in reference in horiz scroll */
3790}
3791
3792.jspVerticalBar {
3793 position: absolute;
3794 top: 0;
3795 right: 0;
3796 width: 4px;
3797 height: 100%;
3798 background: #f5f5f5;
3799}
3800
3801.jspHorizontalBar {
3802 position: absolute;
3803 bottom: 0;
3804 left: 0;
3805 width: 100%;
3806 height: 4px;
3807 background: #f5f5f5;
3808}
3809
3810.jspVerticalBar *,
3811.jspHorizontalBar * {
3812 margin: 0;
3813 padding: 0;
3814}
3815.jspCap {
3816 display: block;
3817}
3818
3819.jspVerticalBar .jspCap {
3820 height: 4px;
3821}
3822
3823.jspHorizontalBar .jspCap {
3824 width: 0;
3825 height: 100%;
3826}
3827
3828.jspHorizontalBar .jspCap {
3829 float: left;
3830}
3831
3832.jspTrack {
3833 position: relative;
3834}
3835
3836.jspDrag {
3837 background: #bbb;
3838 position: relative;
3839 top: 0;
3840 left: 0;
3841 cursor: pointer;
3842}
3843
3844.jspDrag:hover,
3845.jspDrag:active {
3846 border-color: #09c;
3847 background-color: #4cadcb;
3848 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
3849 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
3850 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
3851 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
3852 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
3853 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
3854 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
3855}
3856
3857.jspHorizontalBar .jspTrack,
3858.jspHorizontalBar .jspDrag {
3859 float: left;
3860 height: 100%;
3861}
3862
3863.jspArrow {
3864 background: #999;
3865 text-indent: -20000px;
3866 display: block;
3867 cursor: pointer;
3868}
3869
3870.jspArrow.jspDisabled {
3871 cursor: default;
3872 background: #ccc;
3873}
3874
3875.jspVerticalBar .jspArrow {
3876 height: 16px;
3877}
3878
3879.jspHorizontalBar .jspArrow {
3880 width: 16px;
3881 float: left;
3882 height: 100%;
3883}
3884
3885.jspVerticalBar .jspArrow:focus {
3886 outline: none;
3887}
3888
3889.jspCorner {
3890 float: left;
3891 height: 100%;
3892}
3893
3894/* Yuk! CSS Hack for IE6 3 pixel bug :( */
3895* html .jspCorner {
3896 margin: 0 -3px 0 0;
3897}
3898/******* end of jscrollpane *********/
3899
3900
3901
3902
3903
3904/************ DEVELOP HOMEPAGE ******************/
3905
3906/* Slideshow */
3907.slideshow-develop {
3908 height: 300px;
3909 width: 940px;
3910 position: relative;
3911 overflow:hidden;
3912}
3913.slideshow-develop .frame {
3914 width: 940px;
3915 height: 300px;
3916}
3917.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07003918 max-width:350px;
3919 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003920 margin:20px 0 0 90px;
3921 -webkit-transform: perspective(800px ) rotateY( 35deg );
3922 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3923 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3924 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
3925}
3926.slideshow-develop img.play.no-shadow {
3927 box-shadow: none;
3928 -moz-box-shadow: none;
3929 -webkit-box-shadow: none;
3930}
3931.slideshow-develop img.play.no-transform {
3932 -webkit-transform: none;
3933}
3934.slideshow-develop a.slideshow-next {
3935 background: url(../images/arrow-right-develop.png);
3936}
3937.slideshow-develop a.slideshow-prev {
3938 background: url(../images/arrow-left-develop.png);
3939}
3940.slideshow-develop .content-right {
3941 float: left;
3942}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003943.slideshow-develop .content-right h2 {
3944 padding:0;
3945 margin-bottom:10px;
3946 border:none;
3947}
3948.slideshow-develop .item {
3949 height: 300px;
3950 width: 940px;
3951}
3952.slideshow-develop .pagination ul li.active {
3953 background-color: #F80;
3954}
3955.slideshow-develop .pagination ul li.active:hover {
3956 background-color: #F80;
3957}
Scott Main0e585702012-10-22 20:30:22 -07003958.slideshow-develop .item hr {
3959 margin:5px 0 10px;
3960}
3961.slideshow-develop .item p {
3962 margin:10px 0;
3963}
3964.slideshow-develop .item p.title-intro {
3965 position:absolute;
3966 margin:0;
3967}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003968
3969/* Feeds */
3970.feed ul {
3971 margin: 0;
3972}
3973.feed .feed-nav {
3974 height: 25px;
3975 border-bottom: 1px solid #CCC;
3976}
3977.feed .feed-nav li {
3978 list-style: none;
3979 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07003980 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07003981 margin-right: 25px;
3982 cursor: pointer;
3983}
3984.feed .feed-nav li.active {
3985 color: #000;
3986 border-bottom: 4px solid #F80;
3987}
3988.feed .feed-container {
3989 overflow: hidden;
3990 width: 460px;
3991}
3992.feed .feed-container .feed-frame {
3993 width: 1000px;
3994}
3995.feed .feed-container .feed-frame ul {
3996 float: left;
3997 width:460px;
3998}
3999.feed .feed-container .feed-frame ul ul {
4000 float: none;
4001 margin:10px 0 0 30px;
4002}
4003.feed .feed-container .feed-frame li {
4004 list-style: none;
4005 margin: 20px 0 20px 0;
4006 width: 460px;
4007 height:93px;
4008}
4009.feed .feed-container .feed-frame li.playlist {
4010 height:auto;
4011}
4012.feed .feed-container .feed-frame li.playlist a {
4013 height:93px;
4014 display:block;
4015}
4016.feed .feed-container .feed-frame li.more {
4017 height:20px;
4018 margin:10px 0 5px 5px;
4019}
4020.feed .feed-container .feed-frame li.more a {
4021 height:inherit;
4022}
4023.feed .feed-container .feed-frame li.playlist-video {
4024 list-style: none;
4025 margin: 0;
4026 width: 460px;
4027 height:55px;
4028 font-size:12px;
4029}
4030.feed .feed-container .feed-frame li.playlist-video a {
4031 height:45px;
4032 padding:5px;
4033}
4034.feed .feed-container .feed-frame li.playlist-video h5 {
4035 font-size:12px;
4036 line-height:13px;
4037 margin:0;
4038}
4039.feed .feed-container .feed-frame li.playlist-video p {
4040 margin:5px 0 0;
4041 line-height:15px;
4042}
4043.feed-container .feed-frame div.feed-image {
4044 float: left;
4045 border: 1px solid #999;
4046 margin:0 20px 0 0;
4047 width:122px;
4048 height:92px;
4049 background:url('../images/blog-default.png') no-repeat 0 0;
4050 background-size:180px;
4051}
4052#jd-content .feed .feed-container .feed-frame li img {
4053 float: left;
4054 border: 1px solid #999;
4055 margin:0 20px 0 0;
4056 width:122px;
4057 height:92px;
4058}
4059#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4060 width:inherit;
4061 height:inherit;
4062}
4063
4064.feed .feed-container .feed-frame li a,
4065.feed .feed-container .feed-frame li a:active {
4066 color:#555 !important;
4067}
4068
4069.feed .feed-container .feed-frame li a:hover,
4070.feed .feed-container .feed-frame li a:hover * {
4071 color:#7AA1B0 !important;
4072}
4073
4074/* Video player */
4075#player-wrapper {
4076 display:none;
4077 margin: -1px auto 0;
4078 position: relative;
4079 width: 940px;
4080 height: 0px;
4081}
4082#player-frame {
4083 background: #EFEFEF;
4084 border: 1px solid #CCC;
4085 padding: 0px 207px;
4086 z-index: 10; /* stay above marque, but below search suggestions */
4087 width: 525px;
4088 height: 330px;
4089 position: relative;
4090}
4091
4092
4093
4094/************ DISTRIBUTE HOMEPAGE ***************/
4095
4096.marquee {
4097 width: 760px;
4098}
4099.marquee .main-img {
4100 float: left;
4101 margin-top: 20px;
4102 width: 490px;
4103}
4104.marquee .copy {
4105 width: 270px;
4106 float: left;
4107 margin-top: 30px;
4108}
4109.distribute-features {
4110 margin: 0;
4111}
4112.distribute-features ul {
4113 margin: 0;
4114}
4115.distribute-features ul li {
4116 list-style: none;
4117 float: left;
4118 border-top: 1px solid #9C0;
4119 width: 220px;
4120 margin-right: 50px;
4121}
4122.distribute-features ul li.last {
4123 margin-right: 0px;
4124}
4125
4126
4127/************ DEVELOP TOPIC CONTAINERS ************/
4128
4129.landing-banner,
4130.landing-docs {
4131 margin:20px 0 0;
4132}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004133.landing-banner .col-6:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004134.landing-docs .col-6:first-child,
4135.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004136 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004137 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004138}
4139.landing-banner .col-6:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004140.landing-docs .col-6:last-child,
4141.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004142 margin-right:0;
4143}
4144
4145.landing-banner h1 {
4146 margin-top:0;
4147}
Scott Main0e71cee2012-08-07 13:59:43 -07004148.landing-docs {
4149 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004150 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004151}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004152.landing-docs h3 {
4153 font-size:14px;
4154 line-height:21px;
4155 color:#555;
4156 text-transform:uppercase;
4157 border-bottom:1px solid #CCC;
4158 margin:0 0 20px;
4159}
4160.landing-docs a {
4161 color:#333 !important;
4162}
4163.landing-docs a:hover,
4164.landing-docs a:hover * {
4165 color:#7AA1B0 !important
4166}
4167
4168.plusone {
4169 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004170}
Scott Main9edfa6d2012-08-14 15:04:40 -07004171
4172
4173
4174/************* HOME/LANDING PAGE *****************/
4175
4176.slideshow-home {
4177 height: 500px;
4178 width: 940px;
4179 border-bottom: 1px solid #CCC;
4180 position: relative;
4181 margin: 0;
4182}
4183.slideshow-home .frame {
4184 width: 940px;
4185 height: 500px;
4186}
4187.slideshow-home .content-left {
4188 float: left;
4189 text-align: center;
4190 vertical-align: center;
4191 margin: 0 0 0 35px;
4192}
4193.slideshow-home .content-right {
4194 margin: 80px 0 0 0;
4195}
4196.slideshow-home .content-right p {
4197 margin-bottom: 10px;
4198}
4199.slideshow-home .content-right p:last-child {
4200 margin-top: 15px;
4201}
4202.slideshow-home .content-right h1 {
4203 padding:0;
4204}
4205.slideshow-home .item {
4206 height: 500px;
4207 width: 940px;
4208}
4209.home-sections {
4210 padding: 30px 20px 20px;
4211 margin: 20px 0;
4212 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4213}
4214.home-sections ul {
4215 margin: 0;
4216}
4217.home-sections ul li {
4218 float: left;
4219 display: block;
4220 list-style: none;
4221 width: 170px;
4222 height: 35px;
4223 border: 1px solid #ccc;
4224 background: white;
4225 margin-right: 10px;
4226 border-radius: 1px;
4227 -webkit-border-radius: 1px;
4228 -moz-border-radius: 1px;
4229 box-shadow: 1px 1px 5px #EEE;
4230 -webkit-box-shadow: 1px 1px 5px #EEE;
4231 -moz-box-shadow: 1px 1px 5px #EEE;
4232 background: white;
4233}
4234.home-sections ul li:hover {
4235 background: #F9F9F9;
4236 border: 1px solid #CCC;
4237}
4238.home-sections ul li a,
4239.home-sections ul li a:hover {
4240 font-weight: bold;
4241 margin-top: 8px;
4242 line-height: 18px;
4243 float: left;
4244 width: 100%;
4245 text-align: center;
4246 color: #09c !important;
4247}
4248.home-sections ul li a {
4249 font-weight: bold;
4250 margin-top: 8px;
4251 line-height: 18px;
4252 float: left;
4253 width:100%;
4254 text-align:center;
4255}
4256.home-sections ul li img {
4257 float: left;
4258 margin: -8px 0 0 10px;
4259}
4260.home-sections ul li.last {
4261 margin-right: 0px;
4262}
Scott Mainf5089842012-08-14 16:31:07 -07004263.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004264 margin-top: -40px;
4265}