blob: e7ab40fe505a35c535ecc7fb871e08ef1a0d3b77 [file] [log] [blame]
Dirk Dougherty541b4942014-02-14 18:31:53 -08001/* color definitions */
2/* 16 column layout */
3/* clearfix idiom */
4/* common mixins */
5/* page layout + top-level styles */
6::selection {
7 background-color: #0099cc;
8 color: #fff; }
9::-webkit-selection {
10 background-color: #0099cc;
11 color: #fff; }
12::-moz-selection {
13 background-color: #0099cc;
14 color: #fff; }
15
16html, body {
17 height: 100%;
18 margin: 0;
19 padding: 0;
20 background-color:#F9F9F9;
21 -webkit-font-smoothing: antialiased;
22 /* prevent subpixel antialiasing, which thickens the text */
23 /* text-rendering: optimizeLegibility; */
24 /* turned off ligatures due to bug 5945455 */ }
25
26body {
27 color: #222;
28 font: 14px/19px Roboto, sans-serif;
29 font-weight: 400;
30 letter-spacing:.1;
31 padding:0 10px; }
32
33#page-container {
34 width: 940px;
35 margin: 0 40px; }
36
37#page-header {
38 height: 80px;
39 margin-bottom: 20px;
40 font-size: 48px;
41 line-height: 48px;
42 font-weight: 100;
43 padding-left: 10px; }
44 #page-header a {
45 display: block;
46 position: relative;
47 top: 20px;
48 text-decoration: none;
49 color: #555555 !important; }
50
51#main-row {
52 display: inline-block; }
53 #main-row:after {
54 content: ".";
55 display: block;
56 height: 0;
57 clear: both;
58 visibility: hidden; }
59 * html #main-row {
60 height: 1px; }
61
62#page-footer {
63 margin-left: 190px;
64 margin-top: 80px;
65 color: #999999;
66 padding-bottom: 40px;
67 font-size: 12px;
68 line-height: 15px; }
69 #page-footer a {
70 color: #777777; }
71 #page-footer #copyright {
72 margin-bottom: 10px; }
73
74#nav-container {
75 width: 160px;
76 min-height: 10px;
77 margin-right: 20px;
78 float: left; }
79
80#nav {
81 margin:0;
82 padding:0 0 30px;
83}
84
85#side-nav {
86 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
87 margin-bottom:1px;
88}
89#devdoc-nav {
90 outline:none;
91 width:auto;
92 margin: 20px 0 0; }
93
94#devdoc-nav h2 {
95 border:0;
96}
97
98#devdoc-nav.fixed {
99 position: fixed;
100 margin:0;
Scott Main20cf2a92014-04-02 21:57:20 -0700101 top: 65px; /* sticky-header height + 20px gutter */
102}
Dirk Dougherty541b4942014-02-14 18:31:53 -0800103
104#devdoc-nav span.small {
105 font-size:12px;
106 font-weight:normal;
107}
108
109#content {
110 width: 760px;
111 float: left; }
112
113a:hover,
114acronym:hover {
115 color: #7aa1b0 !important; }
116
117a:focus,
118a:active {
119 color: #33b5e5 !important; }
120
121a.external-link {
122 background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
123 padding-right:16px;
124}
125
126img {
127 border: none; }
128#jd-content img {
129 margin-bottom:15px;
130}
131
132ul {
133 margin: 0;
134 padding: 0; }
135
136strong {
137 font-weight: 500; }
138
139em {
140 font-style: italic; }
141
142acronym,
143.tooltip-link {
144 border-bottom: 1px dotted #555555;
145 cursor: help; }
146
147acronym:hover,
148.tooltip-link:hover {
149 color: #7aa1b0;
150 border-bottom-color: #7aa1b0; }
151
152img.with-shadow,
153video.with-shadow {
154 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
155
156/* disclosures mixin */
157/* content layout */
158.layout-content-row {
159 display: inline-block;
160 margin-bottom: 10px; }
161 .layout-content-row:after {
162 content: ".";
163 display: block;
164 height: 0;
165 clear: both;
166 visibility: hidden; }
167 * html .layout-content-row {
168 height: 1px; }
169
170.layout-content-col {
171 float: left;
172 margin-left: 20px; }
173 .layout-content-col:first-child {
174 margin-left: 0; }
175 .layout-content-col h3,
176 .layout-content-col h4 {
177 margin-top:0; }
178
179.layout-content-col.span-1 {
180 width: 40px; }
181
182.layout-content-col.span-2 {
183 width: 100px; }
184
185.layout-content-col.span-3 {
186 width: 160px; }
187
188.layout-content-col.span-4 {
189 width: 220px; }
190
191.layout-content-col.span-5 {
192 width: 280px; }
193
194.layout-content-col.span-6 {
195 width: 340px; }
196
197.layout-content-col.span-7 {
198 width: 400px; }
199
200.layout-content-col.span-8 {
201 width: 460px; }
202
203.layout-content-col.span-9 {
204 width: 520px; }
205
206.layout-content-col.span-10 {
207 width: 580px; }
208
209.layout-content-col.span-11 {
210 width: 640px; }
211
212.layout-content-col.span-12 {
213 width: 700px; }
214
215.layout-content-col.span-13 {
216 width: 760px; }
217
218.vspace.size-1 {
219 height: 10px; }
220
221.vspace.size-2 {
222 height: 20px; }
223
224.vspace.size-3 {
225 height: 30px; }
226
227.vspace.size-4 {
228 height: 40px; }
229
230.vspace.size-5 {
231 height: 50px; }
232
233.vspace.size-6 {
234 height: 60px; }
235
236.vspace.size-7 {
237 height: 70px; }
238
239.vspace.size-8 {
240 height: 80px; }
241
242.vspace.size-9 {
243 height: 90px; }
244
245.vspace.size-10 {
246 height: 100px; }
247
248.vspace.size-11 {
249 height: 110px; }
250
251.vspace.size-12 {
252 height: 120px; }
253
254.vspace.size-13 {
255 height: 130px; }
256
257.vspace.size-14 {
258 height: 140px; }
259
260.vspace.size-15 {
261 height: 150px; }
262
263.vspace.size-16 {
264 height: 160px; }
265
266/* nav */
267#nav {
268 /* section header divs */
269 /* expanded section header divs */
270 /* sublinks */ }
271 #nav li {
272 list-style-type: none;
273 font-size: 14px;
274 margin:0;
275 padding:0;
276 line-height: 15px; }
277 #nav a {
278 color: #555555;
279 text-decoration: none;
280 word-wrap:break-word; }
281 #nav .nav-section-header {
282 position: relative;
283 margin-bottom: 1px;
284 padding: 0 30px 0 0; }
285 #nav li.selected a, #nav li.selected > .nav-section-header > a {
286 color: #09C;
287 }
288 #nav li.selected ul li a {
289 /* don't highlight child items */
290 color: #555555; }
291 #nav .nav-section .nav-section .nav-section-header {
292 /* no white line between second level sections */
293 margin-bottom: 0; }
294 /* section header links */
295 #nav > li > div > a {
296 display: block;
297 color: #333333;
298 font-weight: 500;
299 padding: 10px 0 10px 10px; }
300 #nav .nav-section-header:after {
301 content: '';
302 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
303 width: 34px;
304 height: 34px;
305 display: block;
306 position: absolute;
307 top: 0;
308 right: 0; }
309 #nav .nav-section-header.empty {
310 padding:0; }
311 #nav .nav-section-header.empty:after {
312 display: none; }
313 /* nested nav headers */
314 #nav .nav-section .nav-section {
315 position: relative;
316 padding: 0;
317 margin: 0; }
318 #nav .nav-section li a {
319 /* first gen child (2nd level li) */
320 display:block;
321 font-weight: normal;
322 text-transform: none;
323 padding: 7px 5px 7px 10px;
324 }
325 #nav .nav-section li li a {
326 /* second gen child (3rd level li) */
327 padding: 5px 5px 5px 10px;
328 }
329 #nav li.expanded .nav-section-header {
330 background:#e9e9e9;
331 background: rgba(0, 0, 0, 0.05); }
332 #nav li.expanded li .nav-section-header {
333 background: transparent; }
334 #nav li.expanded li ul {
335 /* 3rd level ul */
336 padding:0 0 0 10px;
337 }
338 #nav li.expanded > .nav-section-header:after {
339 content: '';
340 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
341 width: 34px;
342 height: 34px; }
343 #nav li.expanded li ul.tree-list-children {
344 padding: 0;
345 }
346 #nav li.expanded li ul.tree-list-children .tree-list-children {
347 padding:0 0 0 10px;
348 }
349 #nav li span.tree-list-subtitle {
350 display:inline-block;
351 padding:5px 0 0 10px;
352 color:#555;
353 text-transform:uppercase;
354 font-size:12px;
355 }
356 #nav li span.tree-list-subtitle:before {
357 content: '—';
358 }
359 #nav li span.tree-list-subtitle:after {
360 content: '—';
361 }
362 #nav li ul {
363 display:none;
364 overflow: hidden;
365 margin: 0; }
366 #nav li ul.animate-height-in {
367 -webkit-transition: height 0.25s ease-in;
368 -moz-transition: height 0.25s ease-in;
369 transition: height 0.25s ease-in; }
370 #nav li ul.animate-height-out {
371 -webkit-transition: height 0.25s ease-out;
372 -moz-transition: height 0.25s ease-out;
373 transition: height 0.25s ease-out; }
374 #nav li ul li {
375 padding: 0; }
376 #nav li li li {
377 padding: 0; }
378 #nav li.expanded ul {
379 }
380 #nav li ul > li {
381 padding:0;
382 }
383 #nav li ul > li:last-child {
384 padding-bottom:5px;
385 }
386 #nav li ul.tree-list-children > li:last-child {
387 padding-bottom:0;
388 }
389 #nav li.expanded ul > li {
390 background:#efefef;
391 background: rgba(0, 0, 0, 0.03); }
392 #nav li.expanded ul > li li {
393 background:inherit; }
394 #nav li ul.tree-list-children ul {
395 display:block; }
396
397#nav.samples-nav li li li {
398 font-size:13px;
399}
400#nav.samples-nav li li li a {
401 padding-top:3px;
402 padding-bottom:3px;
403}
404#nav.samples-nav li li ul > li:last-child {
405 padding-bottom:3px;
406}
407
408.new,
409.new-child {
410 font-size: .78em;
411 font-weight: bold;
412 color: #ff3d3d;
413 vertical-align:top;
414 white-space:nowrap;
415}
416
417/* content header */
418.content-header {
419 height: 30px;
420 margin:20px 0 25px;
421 padding:0 0 10px;}
422.content-header.just-links {
423 margin-bottom:0;
424 padding-bottom:0;}
425
426.content-header h1 {
427 color:#000;
428 margin:0;
429 border-bottom:0;
430 padding:0;
431}
432.content-header > div:first-child {
433 height:55px; /* set fixed height for the header div to ensure the
434 next/prev links align with toc on training classes */
435}
436
437.content-footer {
438 border-top: 1px solid #ccc;
439 margin-top: 10px;
440 padding-top:10px;
441 height: 30px; }
442
443.content-footer .col-9 {
444 margin-left:0;
445}
446.content-footer .col-4 {
447 margin-right:0;
448}
449.content-footer.wrap {
450 width:940px;
451}
452
453.paging-links {
454 position: relative; }
455 .paging-links a {
456 position: absolute; }
457 .paging-links a,
458 .training-nav-top a {
459 font-size: 14px;
460 line-height: 30px;
461 color: #555555;
462 text-decoration: none;
463 text-transform: uppercase; }
464 .paging-links .prev-page-link:before,
465 .training-nav-top .prev-page-link:before {
466 content: '';
467 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
468 width: 10px;
469 height: 10px;
470 display: inline-block;
471 margin-right: 5px; }
472 .training-nav-top .next-page-link,
473 .training-nav-top .start-class-link,
474 .training-nav-top .start-course-link {
475 right: 10px; }
476 .paging-links .prev-page-link {
477 left: -15px; }
478 .paging-links .next-page-link {
479 right: 0px; }
480 .next-page-link:after,
481 .start-class-link:after,
482 .start-course-link:after,
483 .next-class-link:after,
484 .go-link:after {
485 content: '';
486 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
487 width: 10px;
488 height: 10px;
489 display: inline-block;
490 margin-left: 5px; }
491 .prev-page-link.inline:before {
492 content: none; }
493 .next-page-link.inline:after {
494 content: none; }
495
496
497 .training-nav-top a {
498 display:block;
499 float:left;
500 width:122px;
501 height:28px;
502 padding: 8px;
503 line-height:28px;
504 text-align:center;
505 border:1px solid #DADADA;
506 border-bottom:0;
507 }
508
509 .training-nav-top a.next-page-link {
510 border-left:0;
511 width:123px;
512 }
513
514 .paging-links a.disabled,
515 .training-nav-top a.disabled,
516 .content-footer a.disabled {
517 color:#bbb;
518 }
519
520 .paging-links a.disabled:hover,
521 .training-nav-top a.disabled:hover,
522 .content-footer a.disabled:hover {
523 cursor:default;
524 color:#bbb !important;
525 }
526
527 .training-nav-top a.start-class-link,
528 .training-nav-top a.start-course-link {
529 width:262px;
530 }
531
Dirk Dougherty08032402014-02-15 10:14:35 -0800532 .paging-links a.start-class-link {
533 width:100%;
534 text-align:right;
Dirk Dougherty541b4942014-02-14 18:31:53 -0800535 }
536
537 /* list of classes on course landing page */
538 ol.class-list {
539 list-style:none;
540 margin-left:0;
541 }
542 ol.class-list>li {
543 margin:0 0 15px;
544 padding:5px 0 0;
545 overflow:hidden;
546 border-top:1px solid #ccc;
547 }
548 ol.class-list li a.title {
549 font-size:16px;
550 margin:0;
551 clear:left;
552 display:block;
553 height:32px;
554 padding:0 4px;
555 }
556 ol.class-list li a.title h2 {
557 color:inherit;
558 margin:0 0 10px;
559 display:block;
560 float:left;
561 width:675px;
562 }
563 ol.class-list li a.title span {
564 display:none;
565 float:left;
566 font-size:18px;
567 font-weight:bold;
568 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
569 width: 10px;
570 height: 32px;
571 }
572 ol.class-list li a.title:hover {
573 background:#ddd;
574 color:#258AAF !important;
575 }
576 ol.class-list li a.title:hover span {
577 display:block;
578 }
579
580 #jd-content
581 ol.class-list li img {
582 float:left;
583 clear:left;
584 width:64px;
585 margin:0 20px 0 0;
586 }
587 ol.class-list li p.description {
588 float:left;
589 display:block;
590 width:250px;
591 margin:0;
592 }
593 ol.class-list li p.description.article {
594 width: 550px;
595 }
596 ol.class-list ol {
597 float:left;
598 width:320px;
599 margin:0 0 0 30px;
600 list-style:none;
601 margin:0 0 0 20px;
602 }
603 ol.class-list div.lessons li {
604 margin:0 0 6px;
605 line-height:16px;
606 }
607
608
609 .hide {
610 display:none !important;
611 }
612
613 .content-footer.next-class {
614 display:block;
615 border:0;
616 margin-top:0;
617 padding-top:0;
618 }
619
620 .content-footer.next-class a.next-class-link {
621 display:block;
622 float:right;
623 text-transform:uppercase;
624 }
625
626
627
628 /* inner-doc tabs w/ title */
629
630div#title-tabs-wrapper {
631 border-bottom:1px solid #ccc;
632 margin:20px 0 30px;
633}
634h1.with-title-tabs {
635 display:inline-block;
636 margin:0 0 -1px 0;
637 padding:0 60px 0 0;
638 border-bottom:1px solid #F9F9F9;
639}
640ul#title-tabs {
641 list-style:none;
642 padding:0;
643 height:29px;
644 margin:0;
645 font-size:16px;
646 line-height:26px;
647 display:inline-block;
648 vertical-align:bottom;
649}
650ul#title-tabs li {
651 display:block;
652 float:left;
653 margin-right:40px;
654 border-bottom: 3px solid transparent;
655}
656ul#title-tabs li.selected {
657 border-bottom: 3px solid #93C;
658}
659ul#title-tabs li a {
660 color:#333;
661}
662ul#title-tabs li a:hover,
663ul#title-tabs li a:active {
664 color:#93C !important;
665}
666
667
668
669/* content body */
670@-webkit-keyframes glowheader {
671 from {
672 background-color: #33b5e5;
673 color: #000;
674 border-bottom-color: #000; }
675
676 to {
677 background-color: transparent;
678 color: #33b5e5;
679 border-bottom-color: #33b5e5; } }
680
681@-moz-keyframes glowheader {
682 from {
683 background-color: #33b5e5;
684 color: #000;
685 border-bottom-color: #000; }
686
687 to {
688 background-color: transparent;
689 color: #33b5e5;
690 border-bottom-color: #33b5e5; } }
691
692@keyframes glowheader {
693 from {
694 background-color: #33b5e5;
695 color: #000;
696 border-bottom-color: #000; }
697
698 to {
699 background-color: transparent;
700 color: #33b5e5;
701 border-bottom-color: #33b5e5; } }
702
703h2:target,
704h3:target {
705 -webkit-animation-name: glowheader;
706 -moz-animation-name: glowheader;
707 animation-name: glowheader;
708 -webkit-animation-duration: 0.7s;
709 -moz-animation-duration: 0.7s;
710 animation-duration: 0.7s;
711 -webkit-animation-timing-function: ease-out;
712 -moz-animation-timing-function: ease-out;
713 animation-timing-function: ease-out; }
714
715.design ol h4 {
716 margin-bottom:0;
717}
718.design ol {
719 counter-reset: item; }
720 .design ol>li {
721 font-size: 14px;
722 line-height: 20px;
723 list-style-type: none;
724 position: relative; }
725 .design ol>li:before {
726 content: counter(item) ". ";
727 counter-increment: item;
728 position: absolute;
729 left: -20px;
730 top: 0; }
731 .design ol li.value-1:before {
732 content: "1. "; }
733 .design ol li.value-2:before {
734 content: "2. "; }
735 .design ol li.value-3:before {
736 content: "3. "; }
737 .design ol li.value-4:before {
738 content: "4. "; }
739 .design ol li.value-5:before {
740 content: "5. "; }
741 .design ol li.value-6:before {
742 content: "6. "; }
743 .design ol li.value-7:before {
744 content: "7. "; }
745 .design ol li.value-8:before {
746 content: "8. "; }
747 .design ol li.value-9:before {
748 content: "9. "; }
749 .design ol li.value-10:before {
750 content: "10. "; }
751.design .with-callouts ol>li {
752 list-style-position: inside;
753 margin-left: 0; }
754 .design .with-callouts ol>li:before {
755 display: inline;
756 left: -20px;
757 float: left;
758 width: 17px;
759 color: #33b5e5;
760 font-weight: 500; }
761.design .with-callouts ul>li {
762 list-style-position: outside; }
763
764/* special list items */
765li.no-bullet {
766 list-style-type: none !important; }
767li.no-bullet *{
768 margin:0; }
769
770.design li.with-icon {
771 position: relative;
772 margin-left: 20px;
773 min-height: 30px; }
774 .design li.with-icon p {
775 margin-left: 0 !important; }
776 .design li.with-icon:before {
777 position: absolute;
778 left: -40px;
779 top: 0;
780 content: '';
781 width: 30px;
782 height: 30px; }
783 .design li.with-icon.tablet:before {
784 background-image: url(../images/styles/ico_phone_tablet.png); }
785 .design li.with-icon.web:before {
786 background-image: url(../images/styles/ico_web.png); }
787 .design li.with-icon.action:before {
788 background-image: url(../images/styles/ico_action.png); }
789 .design li.with-icon.use:before {
790 background-image: url(../images/styles/ico_use.png); }
791
792/* figures and callouts */
793.figure {
794 position: relative; }
795 .figure.pad-below {
796 margin-bottom: 20px; }
797 .figure .figure-callout {
798 position: absolute;
799 color: #fff;
800 font-weight: 500;
801 font-size: 16px;
802 line-height: 23px;
803 text-align: center;
804 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
805 padding-right: 2px;
806 width: 30px;
807 height: 29px;
808 z-index: 1000; }
809 .figure .figure-callout.top {
810 top: -9px; }
811 .figure .figure-callout.right {
812 right: -5px; }
813
814.figure-caption {
815 margin: 0 10px 20px 0;
816 font-size: 14px;
817 line-height: 20px;
818 font-style: italic; }
819
820/* rows of figures */
821.figure-row {
822 font-size: 0;
823 line-height: 0;
824 /* to prevent space between figures */ }
825 .figure-row .figure {
826 display: inline-block;
827 vertical-align: top; }
828 .figure-row .figure + .figure {
829 margin-left: 10px;
830 /* reintroduce space between figures */ }
831
832/* video containers */
833.framed-galaxynexus-land-span-13 {
834 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
835scroll top left;
836 padding: 42px 122px 62px 126px;
837 overflow: hidden; }
838 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
839.framed-galaxynexus-land-span-13 img {
840 width: 512px;
841 height: 286px; }
842
843
844.framed-galaxynexus-land-span-8{
845 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
846scroll top left;
847 padding: 26px 68px 38px 72px;
848 overflow: hidden; }
849 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
850.framed-galaxynexus-land-span-8 img {
851 width: 320px;
852 height: 180px; }
853
854.framed-galaxynexus-port-span-9 {
855 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
856scroll top left;
857 padding: 95px 122px 107px 124px;
858 overflow: hidden; }
859 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
860.framed-galaxynexus-port-span-9 img {
861 width: 274px;
862 height: 488px; }
863
864.framed-galaxynexus-port-span-5 {
865 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
866scroll top left;
867 padding: 75px 31px 76px 33px;
868 overflow: hidden; }
869 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
870.framed-galaxynexus-port-span-5 img {
871 width: 216px;
872 height: 384px; }
873
874.framed-nexus4-port-216 {
875 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
876scroll top left;
877 background-size:240px 465px;
878 padding: 52px 12px 52px 12px;
879 overflow: hidden; }
880 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
881 .framed-nexus4-port-216 img {
882 width: 216px;
883 height: 360px; }
884
885.framed-nexus5-port-span-5 {
886 background: transparent url(../images/styles/device_nexus5_blank_port_span5.png) no-repeat
887 scroll top left;
888 padding: 52px 33px 69px 31px;
889 overflow: hidden;
890}
891
892.framed-nexus5-port-span-5,
893.framed-nexus5-port-span-5 video,
894.framed-nexus5-port-span-5 img {
895 width: 216px;
896 height: 384px;
897}
898
899.framed-nexus5-land-span-13 {
900 background: transparent url(../images/styles/device_nexus5_blank_land_span13.png) no-repeat scroll top left;
901 padding: 36px 119px 54px 108px;
902 overflow: hidden;
903}
904
905.framed-nexus5-land-span-13,
906.framed-nexus5-land-span-13 video,
907.framed-nexus5-land-span-13 img {
908 width: 533px;
909 height: 300px;
910}
911
912.framed-nexus5-port-span-5,
913.framed-nexus5-port-span-5 video,
914.framed-nexus5-port-span-5 img {
915 width: 216px;
916 height: 384px;
917}
918
919/* landing page disclosures */
920.landing-page-link {
921 text-decoration: none;
922 font-weight: 500;
923 color: #333333; }
924 .landing-page-link:after {
925 content: '';
926 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
927 width: 10px;
928 height: 10px;
929 display: inline-block;
930 margin-left: 5px; }
931
932/* tooltips */
933.tooltip-box {
934 position: absolute;
935 background-color: rgba(0, 0, 0, 0.9);
936 border-radius: 2px;
937 font-size: 14px;
938 line-height: 20px;
939 color: #fff;
940 padding: 6px 10px;
941 max-width: 250px;
942 z-index: 10000; }
943 .tooltip-box.below:after {
944 position: absolute;
945 content: '';
946 line-height: 0;
947 display: block;
948 top: -10px;
949 left: 5px;
950 border: 5px solid transparent;
951 border-bottom-color: rgba(0, 0, 0, 0.9); }
952
953/* video note */
954.video-instructions {
955 margin-top: 10px;
956 margin-bottom: 10px; }
957 .video-instructions:before {
958 content: '';
959 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
960 display: inline-block;
961 width: 12px;
962 height: 12px;
963 margin-right: 8px; }
964 .video-instructions:after {
965 content: 'Click device screen to replay movie.'; }
966
967/* download buttons */
968.download-button {
969 display: block;
970 margin-bottom: 5px;
971 text-decoration: none;
972 background-color: #33b5e5;
973 color: #fff !important;
974 font-weight: 500;
975 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
976 padding: 6px 12px;
977 border-radius: 2px; }
978 .download-button:hover, .download-button:focus {
979 background-color: #0099cc;
980 color: #fff !important; }
981 .download-button:active {
982 background-color: #006699; }
983
984/* UI tables and other things found in Writing style and Settings pattern */
985.ui-table {
986 width: 100%;
987 background-color: #282828;
988 color: #fff;
989 border-radius: 2px;
990 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
991 border-collapse: separate; }
992 .ui-table th,
993 .ui-table td {
994 padding: 5px 10px;
995 background-color: inherit;
996 border:0;}
997 .ui-table thead th {
998 font-weight: bold; }
999 .ui-table tfoot td {
1000 border-top: 1px solid #494949;
1001 border-right: 1px solid #494949;
1002 text-align: center; }
1003 .ui-table tfoot td:last-child {
1004 border-right: 0; }
1005
1006.layout-with-list-item-margins {
1007 margin-left: 30px !important; }
1008
1009.emulate-content-left-padding {
1010 margin-left: 10px; }
1011
1012.do-dont-label {
1013 margin-bottom: 10px;
1014 padding-left: 20px;
1015 background: transparent none no-repeat scroll 0px 3px; }
1016 .do-dont-label.bad {
1017 background-image: url(../images/styles/ico_wrong.png); }
1018 .do-dont-label.good {
1019 background-image: url(../images/styles/ico_good.png); }
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039/***** PREVIOUSLY style.css ******************/
1040
1041
1042
1043
1044
1045@media screen, projection, print {
1046[dir='rtl'] {
1047 direction: rtl;
1048}
1049html {
1050 line-height: 20px;
1051}
1052pre, table, input, textarea, code {
1053 font-size: 1em;
1054}
1055address, abbr, cite {
1056 font-style: normal;
1057}
1058[dir='rtl'] th {
1059 text-align: right;
1060}
1061html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1062html[lang^=zh] blockquote, html[lang^=zh] q {
1063 font-style: normal;
1064}
1065q {
1066 font-style: italic;
1067}
1068fieldset, iframe, img {
1069 border: 0;
1070}
1071img {
1072 -ms-interpolation-mode: bicubic;
1073 vertical-align: middle;
1074 max-width: 100%;
1075}
1076q {
1077 quotes: none;
1078}
1079sup, sub {
1080 font-size: 11px;
1081 line-height: 0;
1082}
1083}
1084
1085@media screen, projection {
1086
1087table, fieldset {
1088 margin: 0;
1089}
1090h1 {
1091 color:#333;
1092 font-size: 22px;
1093 margin: 20px 0 20px;
1094 padding:0 0 10px;
1095}
1096h1, h2 {
1097 line-height: 32px;
1098}
1099h1.short {
1100 margin-right:320px;
1101}
1102h1.short {
1103 margin-right:320px;
1104}
1105h1.super {
1106 font-size: 37px;
1107}
1108h2 {
1109 color:#333;
1110 font-size: 20px;
1111 margin: 20px 0 20px;
1112 padding:0;
1113}
1114h3 {
1115 color:#333;
1116 font-size: 18px;
1117}
1118h3, h4 {
1119 color:#333;
1120 line-height: 20px;
1121 margin: 10px 0;
1122}
1123h4 {
1124 font-size: 16px;
1125}
1126h5 {
1127 font-size: 14px;
1128}
1129h5, h6 {
1130 margin: 5px 0;
1131}
1132h6 {
1133 font-size: 12px;
1134}
1135hr { /* applied to the bottom of h2 elements */
1136 height: 1px;
1137 margin: 5px 0 20px;
1138 border: 0;
1139 background: #ccc;
1140}
1141p, pre, table, form {
1142 margin: 0 0 15px;
1143}
1144small {
1145 font-size: 11.5px;
1146 color: #000;
1147}
1148ul, ol {
1149 margin: 0 0 15px 18px;
1150 padding: 0;
1151}
1152[dir='rtl'] ul, [dir='rtl'] ol {
1153 margin: 10px 30px 10px 10px;
1154}
1155ul ul, ul ol, ol ul, ol ol {
1156 margin-bottom: 0;
1157 margin-top: 0;
1158}
1159li {
1160 margin:0 0 5px;
1161}
1162dd {
1163 margin:0 0 10px 30px;
1164}
1165dd p,
1166dd pre,
1167dd ul,
1168dd ol,
1169dd dl {
1170 margin-top:10px;
1171}
1172li p,
1173li pre,
1174li ul,
1175li ol,
1176li dl {
1177 margin-top:5px;
1178 margin-bottom:5px;
1179}
1180dl dd dl:first-child {
1181 margin-top:0;
1182}
1183pre strong, pre b, a strong, a b, a code {
1184 color: inherit;
1185}
1186pre, code {
1187 color: #060;
1188 font: 13px/1.5 monospace;
1189}
1190code {
1191 font-weight:bold;
1192 font: 13px/14px monospace;
1193}
1194
1195legend {
1196 display: none;
1197}
1198a:link, a:visited {
1199 color: #258aaf;
1200 text-decoration: none;
1201}
1202a:focus, a:hover, a:active {
1203 color: #33B5E5;
1204 text-decoration: none;
1205}
1206strong, b {
1207 font-weight:bold;
1208 color: #222;
1209}
1210table {
1211 border-collapse: collapse;
1212 border-spacing: 0;
1213 border:0;
1214 margin: .5em 1em 1em 0;
1215 width:100%; /* consistent table widths; within IE's quirks */
1216 background-color:#f7f7f7;
1217}
1218th, td {
1219 padding: 4px 12px;
1220 vertical-align: top;
1221 text-align: left;
1222}
1223td {
1224 background-color:inherit;
1225 border:solid 1px #DDD;
1226}
1227td *:last-child {
1228 margin-bottom:0;
1229}
1230th {
1231 background-color: #999;
1232 color: #fff;
1233 border:solid 1px #DDD;
1234 font-weight: normal;
1235}
1236tr:first-of-type th:first-of-type:empty {
1237 visibility: hidden;
1238}
1239/* --------------------------------------------------------------------------
1240Footer
1241*/
1242.line {
1243 clear: both;
1244 background: #acbc00;
1245 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1246 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1247color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1248 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1249 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1250 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1251 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1252 height: 2px;
1253 margin-top: 150px;
1254 position: relative;
1255 z-index: 11;
1256}
1257#footer {
1258 font-size:11px;
1259 clear: both;
1260 color: #999;
1261 padding: 15px 0;
1262 margin-top:10px;
1263 width:auto;
1264}
1265#footer-local ul {
1266 list-style: none;
1267 margin: 5px 0 30px 0;
1268}
1269#footer-local li {
1270 display: inline;
1271}
1272#footer-local li+li:before {
1273 content: '|';
1274 padding: 0 3px;
1275 color: #e5e5e5;
1276}
1277#footer-global {
1278 padding: 10px 15px;
1279 background: #f5f5f5;
1280}
1281#footer-global {
1282 border-top: 1px solid #ebebeb;
1283 font-size: 11.5px;
1284 line-height: 1.8;
1285 list-style: none;
1286}
1287#footer-global ul {
1288 margin: 0;
1289}
1290#footer-global li {
1291 display: inline;
1292 font-weight: bold;
1293}
1294#footer-global li+li:before {
1295 content: '¬?';
1296 padding: 0 3px;
1297}
1298* html #footer-global li {
1299 margin: 0 13px 0 0;
1300}
1301* [dir='rtl'] #footer-global li {
1302 margin: 0 0 0 13px;
1303}
1304*+html #footer-global li {
1305 margin: 0 13px 0 0;
1306}
1307*+[dir='rtl'] #footer-global li {
1308 margin: 0 0 0 13px;
1309}
1310#footer-global li a {
1311 font-weight: normal;
1312}
1313.locales {
1314 margin: 10px 0 0 0px;
1315}
1316[dir='rtl'] .locales {
1317 background-position: right center;
1318 float: left;
1319 padding: 0 24px 0 0;
1320}
1321.locales form {
1322 margin: 0;
1323}
1324.locales select, .sites select {
1325 line-height: 3.08;
1326 margin: 0px 0;
1327 border: solid 1px #EBEBEB;
1328 -webkit-appearance: none;
1329 background: white url('../images/arrows-up-down.png') right center no-repeat;
1330 height: 30px;
1331 color: #222;
1332 line-height: normal;
1333 padding: 5px;
1334 width: 230px;
1335}
1336}
1337
1338/* =============================================================================
1339 Print Only
1340 ========================================================================== */
1341@media print {
1342 /* configure printed page */
1343 @page {
1344 margin: 0.75in 1in;
1345 widows: 4;
1346 orphans: 4;
1347 }
1348
1349 /* reset spacing metrics */
1350 html, body, .wrap {
1351 margin: 0 !important;
1352 padding: 0 !important;
1353 width: auto !important;
1354 }
1355
1356 /* leave enough space on the left for bullets */
1357 body {
1358 padding-left: 20px !important;
1359 }
1360 #doc-col {
1361 margin-left: 0;
1362 }
1363
1364 /* hide a bunch of non-content elements */
1365 #header, #footer, #nav-x, #side-nav,
1366 .training-nav-top, .training-nav-bottom,
1367 #doc-col .content-footer,
1368 .nav-x, .nav-y,
Scott Main20cf2a92014-04-02 21:57:20 -07001369 .paging-links {
Dirk Dougherty541b4942014-02-14 18:31:53 -08001370 display: none !important;
1371 }
1372
1373 /* remove extra space above page titles */
1374 #doc-col .content-header {
1375 margin-top: 0;
1376 }
1377
1378 /* bump up spacing above subheadings */
1379 h2 {
1380 margin-top: 40px !important;
1381 }
1382
1383 /* print link URLs where possible and give links default text color */
1384 p a:after {
1385 content: " (" attr(href) ")";
1386 font-size: 80%;
1387 }
1388 p a {
1389 word-wrap: break-word;
1390 }
1391 a {
1392 color: inherit;
1393 }
1394
1395 /* syntax highlighting rules */
1396 .str { color: #060; }
1397 .kwd { color: #006; font-weight: bold; }
1398 .com { color: #600; font-style: italic; }
1399 .typ { color: #404; font-weight: bold; }
1400 .lit { color: #044; }
1401 .pun { color: #440; }
1402 .pln { color: #000; }
1403 .tag { color: #006; font-weight: bold; }
1404 .atn { color: #404; }
1405 .atv { color: #060; }
1406}
1407
1408/* =============================================================================
1409 Columns
1410 ========================================================================== */
1411
1412@media screen, projection, print {
1413.full {
1414 padding: 2.5em 0;
1415 border-top: solid 1px #ddd;
1416 border-bottom: solid 1px #ddd;
1417 background: #f7f7f7;
1418}
1419.wrap {
1420 margin: 0 auto;
1421 width: 940px;
1422 clear: both;
1423}
1424.cols {
1425 height: 1%;
1426 margin: 0 -1.533742331288343558282%;
1427 width: 103.06748466257669%}
1428*+html .cols {
1429 margin-bottom: 20px;
1430}
1431.cols:after {
1432 clear: both;
1433 content: ' ';
1434 display: block;
1435 height: 0;
1436 visibility: hidden;
1437}
1438.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1439.col-13, .col-14, .col-15, .col-16 {
1440 display: inline;
1441 float: left;
1442 margin-left: 10px;
1443 margin-right: 10px;
1444}
1445/*
1446* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1447.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1448 margin: 0;
1449 padding: 0 1.4% 20px;
1450}
1451[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1452[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1453[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1454 float: right;
1455}
1456*/
1457.col-1 { width: 40px }
1458.col-2 { width: 100px }
1459.col-3 { width: 160px }
1460.col-4 { width: 220px }
1461.col-5 { width: 280px }
1462.col-6 { width: 340px }
1463.col-7 { width: 400px }
1464.col-8 { width: 460px }
1465.col-9 { width: 520px }
1466.col-10 { width: 580px }
1467.col-11 { width: 640px }
1468.col-12 { width: 700px }
1469.col-13 { width: 760px }
1470.col-14 { width: 820px }
1471.col-15 { width: 880px }
1472.col-16 { width: 940px }
1473}
1474
1475.col-right {
1476 margin-right:0px;
1477}
1478
1479@media screen and (max-width:772px) {
1480.col-5, .col-6, .col-7 {
1481 clear: both;
1482 width: 97.0238096%}
1483}
1484
1485/* =============================================================================
1486 Layout
1487 ========================================================================== */
1488@media screen, projection, print {
1489
1490/* --------------------------------------------------------------------------
1491Header, Login, Nav-X, Search
1492*/
1493#header {
Dirk Dougherty08032402014-02-15 10:14:35 -08001494 margin: 0;
1495 padding: 0;
Dirk Dougherty541b4942014-02-14 18:31:53 -08001496}
1497#header:before, #header:after {
1498 content: "";
1499 display: table;
1500 clear: both
1501}
1502.logo, .nav-x {
1503 float: left;
1504}
1505.nav-x {
1506 margin-top: -2px;
1507 list-style-type: none;
1508}
1509.nav-x a {
1510 color: #333;
1511 font-size: 16px;
1512}
1513.design a.selected {
1514 color: #33b5e5;
1515}
1516.develop a.selected {
1517 color: #F80;
1518}
Dirk Dougherty08032402014-02-15 10:14:35 -08001519
Dirk Dougherty541b4942014-02-14 18:31:53 -08001520.distribute a.selected {
1521 color: #9C0;
1522}
1523
Dirk Dougherty541b4942014-02-14 18:31:53 -08001524.nav-x li {
1525 display: inline;
1526 margin-right: 45px;
1527}
1528.search {
1529 float: right;
1530 position: relative;
1531 width: 220px
1532}
1533.search .bottom, .search .left, .search .right {
1534 position: absolute;
1535 background-color: #a3a3a3;
1536}
1537.search .bottom {
1538 width: 220px;
1539 height: 1px;
1540 top: 24px;
1541 left: 0
1542}
1543.search .left, .search .right {
1544 height: 5px;
1545 width: 1px
1546}
1547.search .left { top: 19px; left: 0 }
1548.search .right { top: 19px; right: 0 }
1549.search form {
1550 float: left;
1551 margin-top: 2px;
1552 width: inherit;
1553}
1554.search .close,
1555#player-frame .close {
1556 position: absolute;
1557 right: 8px;
1558 bottom: 4px;
1559 width: 16px;
1560 height: 16px;
1561 margin: 0;
1562 text-indent: -1000em;
1563 background: url(../images/close.png) no-repeat 0 0;
1564 z-index:9999;
1565}
1566.search .close:hover, .search .close:focus,
1567#player-frame .close:hover, #player-frame .close:focus {
1568 background-position: -16px 0;
1569 cursor:pointer;
1570}
1571#player-frame .close {
1572 top: 6px;
1573}
1574.search form input {
1575 color: #999;
1576 font-size: 1em;
1577 width: inherit;
1578 border: none;
1579 margin: 0;
1580 padding:0 0 0 6px;
1581 z-index: 1500;
1582 background-color: transparent
1583}
1584.search:hover .bottom, .search:hover .left, .search:hover .right {
1585 background-color: #33b5e5;
1586}
1587.search:hover .icon {
1588 background-position: -8px 0
1589}
1590.search form input:focus {
1591 color: #222;
1592 font-weight: bold;
1593 outline:0;
1594}
1595/* Search Dropdown */
1596.search-dropdown {
1597 padding: 15px;
1598 width: 192px;
1599 border: solid 1px #c5c5c5;
1600 background: #fff;
1601 position: absolute;
1602 top: 35px;
1603 left: 0;
1604 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1605 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1606 box-shadow: 0 0 10px rgba(0,0,0,0.2)
1607}
1608.search-dropdown ul, .search-dropdown ul li {
1609 list-style-type: none;
1610 margin: 0;
1611 padding: 0
1612}
1613.search-dropdown ul li {
1614 clear: both
1615}
1616.search-dropdown img {
1617 float: left;
1618 margin: 0 10px 10px 0
1619}
1620.search-dropdown h6 {
1621 color: #222;
1622 margin: 0;
1623 line-height: normal
1624}
1625.search-dropdown .desc {
1626 color: #999;
1627 font-size: 11.5px;
1628 line-height: normal;
1629 margin: 0;
1630}
1631.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
1632 color: #33b5e5
1633}
Dirk Dougherty08032402014-02-15 10:14:35 -08001634
Dirk Dougherty08032402014-02-15 10:14:35 -08001635
Dirk Dougherty541b4942014-02-14 18:31:53 -08001636/* --------------------------------------------------------------------------
1637Buttons
1638*/
1639.button, a.button, .button-secondary, a.button-secondary {
1640 border-image: initial;
1641 -webkit-border-radius: 2px;
1642 -moz-border-radius: 2px;
1643 border-radius: 2px;
1644 cursor: pointer;
1645}
1646.button, a.button {
1647 display:inline-block;
1648 background-color: #09c;
1649 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1650 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1651 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1652 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1653 background-image: -o-linear-gradient(top, #2faddb, #09c);
1654 background-image: linear-gradient(top, #2faddb, #09c);
1655 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1656 border: 1px solid #3990ab;
1657 color: #fff;
1658}
1659.button-secondary, a.button-secondary {
1660 background-color: #f3f3f3;
1661 border: 1px solid #dcdcdc;
1662 color: #444;
1663}
1664a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
1665 margin-right: 16px;
1666 font-weight: 400;
1667 min-width: 54px;
1668 outline: 0;
1669 padding: 8px 15px;
1670 text-align: center;
1671}
1672.button, .button-secondary {
1673 margin-right: 16px;
1674 font-weight: 400;
1675 min-width: 54px;
1676 outline: 0;
1677 padding: 0 15px;
1678 text-align: center;
1679}
1680.button:hover, a.button:hover {
1681 border-color: #09c;
1682 background-color: #4cadcb;
1683 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1684 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1685 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1686 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1687 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1688 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1689 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1690EndColorStr='#4cadcb',GradientType=0);
1691 color: #fff !important;
1692}
1693.button:active, a.button:active {
1694 background-color: #1e799a;
1695 background-image: none;
1696 border-color: #30b7e6;
1697}
1698a.button.big.subtitle {
1699 line-height:18px;
1700}
1701.button-secondary:hover, a.button-secondary:hover {
1702 border-color: #dbdbdb;
1703 background-color: #f3f3f3;
1704 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1705 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1706 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1707 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1708 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1709 background-image: linear-gradient(top, #f9f9f9, #ececec);
1710 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1711EndColorStr='#ececec');
1712 color: #33B5E5 !important;
1713}
1714.button-secondary:active, a.button-secondary:active {
1715 border-color: #dadada;
1716 background: #ebebeb; /* Old browsers */
1717 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1718 background:
1719url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1720Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1721eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1722CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1723eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1724YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1725CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1726CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1727CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1728CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1729R3JhZGllbnQ+
1730CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1731Lz4KPC9zdmc+);
1732 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
1733#ffffff 100%); /* FF3.6+ */
1734 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
1735color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1736/* Chrome,Safari4+ */
1737 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
173890%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
1739 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1740100%); /* Opera 11.10+ */
1741 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1742100%); /* IE10+ */
1743 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
1744100%); /* W3C */
1745 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
1746endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
1747 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1748 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1749 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1750 color: #258AAF !important;
1751}
1752.button.big {
1753 font-size:20px;
1754 display:inline-block;
1755}
1756.button.big span.small {
1757 font-size:14px;
1758}
1759.button-caption {
1760 margin-top:10px;
1761 font-size:12px;
1762 font-style:italic;
1763}
1764
1765.button.disabled,
1766.button.disabled:hover,
1767.button.disabled:active {
1768 background:#ebebeb;
1769 color:#999 !important;
1770 border-color:#999;
1771 cursor:default;
1772}
1773
1774.training-nav-top a.button-secondary,
1775.training-nav-bottom a.button-secondary {
1776 display:block;
1777 float:left;
1778 margin:0;
1779 width:130px;
1780 text-transform:uppercase;
1781 font-weight:bold;
1782
1783 background-color: #f3f3f3;
1784 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1785 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1786 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1787 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1788 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1789 background-image: linear-gradient(top, #f9f9f9, #ececec);
1790 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1791EndColorStr='#ececec');
1792 color: #33B5E5;
1793}
1794
1795.training-nav-top a.button-secondary:hover,
1796.training-nav-bottom a.button-secondary:hover {
1797 background-color: #09c;
1798 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1799 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1800 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1801 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1802 background-image: -o-linear-gradient(top, #2faddb, #09c);
1803 background-image: linear-gradient(top, #2faddb, #09c);
1804 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1805 border: 1px solid #3990ab;
1806 color: #fff !important;
1807}
1808
1809.training-nav-top a.button-secondary.last,
1810.training-nav-bottom a.button-secondary.last {
1811 border-left:0;
1812}
1813
1814.training-nav-top a.button-secondary.double-size,
1815.training-nav-bottom a.button-secondary.double-size {
1816 width:291px;
1817}
1818
1819.training-nav-top,
1820.training-nav-bottom {
1821 float:right;
1822 margin:0 0 0 20px;
1823}
1824
1825.training-nav-bottom {
1826 padding:0 0 20px;
1827}
1828
1829#tb-wrapper,
1830#qv-wrapper {
1831 float:right;
1832 clear:right;
Dirk Dougherty08032402014-02-15 10:14:35 -08001833 margin:0 0 0 30px; /* negative top-margin to counter the content-header bottom margin */
1834 padding:0 0 30px;
Dirk Dougherty541b4942014-02-14 18:31:53 -08001835}
1836
1837#tb-wrapper {
1838 margin:-29px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1839}
1840
1841#tb,
1842#qv {
1843 font-size:13px;
1844 line-height:18px;
1845 width:238px;
1846 border:1px solid #ccc;
1847 float:right;
1848}
1849
1850#tb {
1851 width:278px;
1852}
1853
1854#tb h2,
1855#qv h2 {
1856 margin:10px 15px;
1857 padding:0;
1858 text-transform:uppercase;
1859 border-bottom:1px solid gainsboro;
1860}
1861
1862#tb *,
1863#qv * {
1864 font-size:inherit;
1865}
1866
1867#tb .download-box,
1868#qv .download-box {
1869 padding:0 0 0 15px;
1870}
1871
1872#tb .download-box .filename,
1873#qv .download-box .filename {
1874 font-size:11px;
1875 margin:4px 4px 10px;
1876 color:#666;
1877}
1878
1879
1880/* Dev guide quicknav */
1881
1882.sidebox-wrapper {
1883 float:right;
1884 clear:right;
1885 margin:0 0 0 20px;
1886 padding:0 0 20px;
1887}
1888
1889.sidebox {
1890 width:226px;
1891 font-size:13px;
1892 line-height:18px;
1893 border-left:4px solid #99CC00;
1894 float:right;
1895 padding:0 0 0 10px;
1896 margin:0 0 1em 20px;
1897}
1898
1899.sidebox h2,
1900.sidebox h3,
1901.sidebox h4,
1902.sidebox h5 {
1903 font-weight:bold;
1904 margin:0 0 10px;
Dirk Dougherty541b4942014-02-14 18:31:53 -08001905}
1906
1907.sidebox * {
1908 font-size:inherit;
1909}
1910
1911.sidebox > *:last-child {
1912 margin-bottom:0;
1913}
1914
1915#tb ol,
1916#tb ul,
1917#qv ul {
1918 margin:0 15px 10px 35px;
1919}
1920
1921#qv ol {
1922 list-style:none;
1923 margin:0 15px 15px;
1924 font-size:inherit;
1925 line-height:inherit;
1926}
1927
1928#tb ol ol,
1929#tb ul ul,
1930#qv ol ol,
1931#qv ul ul,
1932.sidebox ol ol,
1933.sidebox ul ul {
1934 margin-bottom:0;
1935}
1936
1937#qv ol ol {
1938 margin:3px 0 3px 15px;
1939}
1940
1941.sidebox p,
1942#qv p,
1943#tb p {
1944 margin: 0 0 10px;
1945}
1946
1947/* related resources blocks in checklists */
1948
1949.rel-resources {
1950 margin:10px 0px;
1951 border:1px solid #ccc;
1952 background-color:rgba(0, 0, 0, 0.027451);
1953 border:1px solid #ccc;
1954 font-size:13px;
1955 color:#6f6f6f;
1956}
1957
1958.rel-resources ul {
1959padding: .5em 1em 0 1em;
1960}
1961
1962.rel-resources a {
1963font-weight:500;
1964}
1965
1966.rel-resources h3 {
1967 margin:4px 15px 0px 15px;
1968 font-size:13px;
1969 font-weight:600;
1970 text-transform:uppercase;
1971}
1972
1973/* --------------------------------------------------------------------------
1974Form
1975*/
1976.article form {
1977 margin: 0 0 20px;
1978}
1979.article form .form-required {
1980 color: #dd4b39;
1981}
1982.article form fieldset {
1983 margin: 0 0 20px;
1984 padding: 0;
1985}
1986.article form legend {
1987 display: block;
1988 line-height: 1.5;
1989 margin: 0;
1990 padding: 0;
1991}
1992/*
1993.article form ol, .article form ul {
1994 margin: 0 0 0 1em;
1995 padding: 0 0 0 1em;
1996}
1997[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1998 margin: 0 1em 0 0;
1999 padding: 0 1em 0 0;
2000}
2001.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
2002ul ul {
2003 list-style: none;
2004 margin: 0;
2005 padding: 0;
2006}
2007.article form li {
2008 margin: 0 0 20px;
2009}
2010.article form li li {
2011 margin: 0 0 5px;
2012}
2013*/
2014.article form label {
2015 display: block;
2016 margin: 0 0 5px;
2017 padding: 0;
2018}
2019.article form input[type='text'], .article form select, .article form textarea, .article form
2020.checkbox-group, .article form .radio-group {
2021 margin-bottom: 15px;
2022}
2023.checkbox-group input {
2024 width: 13px;
2025 height: 13px;
2026 background: #fff;
2027 border: solid 1px #c6c6c6;
2028 float: left;
2029}
2030.article form .checkbox-group, .article form .radio-group {
2031 display: block
2032}
2033.article form select {
2034 border: solid 1px #ebebeb;
2035 border-top-color: #ddd;
2036 -webkit-appearance: none;
2037 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2038 height: 30px;
2039 color: #222;
2040 line-height: normal;
2041 padding: 5px;
2042 width: 130px;
2043}
2044
2045.article form .browse .browse-msg {
2046 font-size: 11.5px;
2047}
2048.article form .browse .button-secondary {
2049 height: auto;
2050 line-height: 25px;
2051 font-size: 11px;
2052 padding: 0 8px;
2053 margin: 0 10px 15px 0;
2054}
2055.article form input[type='text'], .article form textarea {
2056 border: 1px solid #ebebeb;
2057 border-top-color: #dcdcdc;
2058 color: #222;
2059 line-height: normal;
2060 padding: 6px 10px;
2061 width: 300px;
2062}
2063.article form textarea {
2064 height: 150px;
2065}
2066.article form input[type='text']:focus, .article form textarea:focus {
2067 border-color: #33B5E5;
2068 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2069 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2070 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2071 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2072 outline: 0;
2073}
2074.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2075 color: #999;
2076}
2077.article form input[type='text'][disabled], .article form textarea[disabled] {
2078 background-color: #ebebeb;
2079}
2080form .form-error input[type='text'], form .form-error textarea {
2081 border-color: #dd4b39;
2082 margin-right: 20px;
2083}
2084.aside {
2085 -moz-border-radius: 2px;
2086 -webkit-border-radius: 2px;
2087 border-radius: 2px;
2088 margin: 10px 0;
2089 padding: 20px;
2090 color: #666;
2091 position: relative;
2092 background: #f9f9f9;
2093}
2094/*
2095.aside, .notification, .promo {
2096 -moz-border-radius: 2px;
2097 -webkit-border-radius: 2px;
2098 border-radius: 2px;
2099 margin: 10px 0;
2100 padding: 10px;
2101 position: relative;
2102}
2103.aside>:first-child, .notification>:first-child, .promo>:first-child {
2104 margin-top: 0;
2105}
2106.aside>:last-child, .notification>:last-child, .promo>:last-child {
2107 margin-bottom: 0;
2108}
2109.aside {
2110 background: #f9f9f9;
2111}
2112.notification {
2113 background: #fffbe4;
2114 border-color: #f8f6e6;
2115}
2116.promo {
2117 background: #f6f9ff;
2118 border-color: #eff2f9;
2119}
2120*/
2121
2122/* SDK TOS styles */
2123
2124div.sdk-terms {
2125 white-space: pre-wrap;
2126 word-wrap: break-word;
2127 font-family: inherit;
2128 font-size: inherit;
2129 padding: 10px;
2130 height: 370px;
2131 width: 738px;
2132 border: 1px solid #444;
2133 background: transparent;
2134 overflow:auto;
2135 margin:0 0 10px;
2136}
2137
2138div.sdk-terms.fullsize {
2139 padding: 0;
2140 height: auto;
2141 width: auto;
2142 border:none;
2143}
2144
2145div.sdk-terms h3,
2146div.sdk-terms h2 {
2147 margin:0;
2148}
2149
2150div#sdk-terms-form {
2151 padding:0 0 0 10px;
2152}
2153
2154div#sdk-terms-form input {
2155 display:inline;
2156 margin:4px 4px 4px 0;
2157}
2158
2159
2160/* --------------------------------------------------------------------------
2161Code Style
2162*/
2163pre {
2164 margin:0 0 1em 0;
2165 padding: 1em;
2166 overflow: auto;
2167 border: solid 1px #ddd;
2168 background: #f7f7f7;
2169}
2170.str { color: #800; } /* Code string */
2171.kwd { color: #008; }
2172.typ { color: #606; }
2173.lit { color: #066; }
2174.pun { color: #660; }
2175.pln { color: #000; }
2176.tag { color: #008; }
2177.atn { color: #828; }
2178.atv { color: #800; } /* XML string */
2179.dec { color: #606; }
2180
2181/* --------------------------------------------------------------------------
2182Three-Pane
2183*/
2184/* Package Nav & Classes Nav */
2185.three-pane {
2186 position: relative;
2187 border-top: solid 1px #ebebeb;
2188}
2189#packages-nav .js-pane,
2190#classes-nav .js-pane {
2191 overflow:visible;
2192}
2193#packages-nav {
2194 height:270px;
2195 max-height: inherit;
2196 overflow: hidden;
2197 position: relative;
2198}
2199#classes-nav {
2200 overflow: hidden;
2201 position: relative;
2202}
2203#packages-nav ul, #classes-nav ul {
2204 list-style-type: none;
2205 margin: 10px 0 20px 0;
2206 padding: 0;
2207}
2208#classes-nav li {
2209 font-weight: bold;
2210 margin: 5px 0;
2211}
2212#packages-nav li,
2213#classes-nav li li {
2214 margin: 0;
2215}
2216#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2217#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
2218 padding: 0 0 0 4px;
2219}
2220#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2221#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2222#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
2223 color: #222;
2224 font-weight: normal;
2225}
2226#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2227#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
2228 display: block;
2229}
2230#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2231a:visited,
2232#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2233a:visited,
2234#nav-tree li div.selected {
2235 font-weight: 500;
2236 color: #0099cc;
2237 background-color:#fff; }
2238 #packages-nav li.selected ul li a,
2239 #classes-nav li.selected ul li a {
2240 /* don't highlight child items */
2241 color: #555555; }
2242#nav-tree li div.selected a {
2243 font-weight: 500;
2244 color: #0099cc;
2245}
2246#nav-swap {
2247 height:30px;
2248 border-top:1px solid #ccc;
2249}
2250#nav-swap a {
2251 display:inline-block;
2252 height:100%;
2253 color: #222;
2254 font-size: 12px;
2255 padding: 5px 0 5px 5px;
2256}
2257
2258#nav-swap .fullscreen {
2259 float: right;
2260 width: 24px;
2261 height: 24px;
2262 text-indent: -1000em;
2263 padding:0;
2264 margin:3px 5px 0;
2265 background: url(../images/fullscreen.png) no-repeat -24px 0;
2266}
2267#nav-swap .fullscreen.disabled {
2268 background-position: 0 0;
2269}
2270#nav-swap .fullscreen:hover,
2271#nav-swap .fullscreen:focus {
2272 cursor:pointer;
2273}
2274
2275
2276/* nav tree */
2277#side-nav, #swapper,
2278#nav-tree, #tree-list {
2279 overflow:hidden;
2280 margin-left:0;
2281}
2282
2283#devdoc-nav {
2284 overflow:visible !important; /* To keep the "to top" button visible */
2285}
2286
2287#nav-tree ul {
2288 list-style:none;
2289 padding:0;
2290 margin:10px 0;
2291}
2292
2293#nav-tree ul li div {
2294 padding:0 0 0 4px;
2295}
2296
2297#side-nav #nav-tree ul li a,
2298#side-nav #nav-tree ul li span.no-children {
2299 padding: 0;
2300 margin: 0;
2301}
2302
2303#nav-tree .plus {
2304 margin: 0 3px 0 0;
2305}
2306
2307#nav-tree ul ul {
2308 list-style: none;
2309 margin: 0;
2310 padding: 0 0 0 0;
2311}
2312
2313#nav-tree ul li {
2314 margin: 0;
2315 padding: 0 0 0 0;
2316 white-space: nowrap;
2317}
2318
2319#nav-tree .children_ul {
2320 padding:0;
2321 margin:0;
2322}
2323#nav-tree .children_ul li div {
2324 padding:0 0 0 10px;
2325}
2326#nav-tree .children_ul .children_ul li div {
2327 padding:0 0 0 20px;
2328}
2329
2330#nav-tree a.nolink {
2331 color: #222;
2332 text-decoration: none;
2333}
2334
2335#nav-tree span.label {
2336 width: 100%;
2337}
2338
2339#nav-tree {
2340 overflow-x: auto;
2341 overflow-y: scroll;
2342 outline:0;
2343}
2344
2345
2346/* Content */
2347#doc-col {
2348 margin-right:0;
2349}
2350#doc-content-container {
2351 margin-left: 291px
2352}
2353#doc-header, #doc-content {
2354 padding: 1em 2em;
2355}
2356#doc-header {
2357 background: #f7f7f7;
2358}
2359#doc-header h1 {
2360 line-height: 0;
2361 margin-bottom: 15px;
2362}
2363#api-info-block {
2364 float: right;
2365 font-weight: bold;
2366}
2367#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
2368 color: #222;
2369}
2370#api-info-block a:hover, #api-info-block a:focus {
2371 color: #33B5E5;
2372}
2373#api-nav-header {
2374 height:19px; /* plus 16px padding = 35; same as #nav li */
2375 font-size:14px;
2376 padding: 8px 0;
2377 margin: 0;
2378 border-bottom: 1px solid #CCC;
2379 background:#e9e9e9;
2380 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2381
2382}
2383#api-nav-title {
2384 padding:0 5px;
2385 white-space:nowrap;
2386}
2387
2388#api-level-toggle {
2389 float:right;
2390 padding:0 5px;
2391}
2392
2393#api-level-toggle label {
2394 margin:0;
2395 vertical-align:top;
2396 line-height: 19px;
2397 font-size:13px;
2398 height: 19px;
2399}
2400
2401#api-level-toggle .select-wrapper {
2402 width: 35px;
2403 display: inline-block;
2404 overflow: hidden;
2405}
2406#api-level-toggle select {
2407 border: 0;
2408 appearance:none;
2409 -moz-appearance:none;
2410 -webkit-appearance: none;
2411 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
2412 color: #222;
2413 height: 19px;
2414 line-height: 19px;
2415 padding: 0;
2416 margin:1px 0 0 0;
2417 width:150%;
2418 font-size:13px;
2419 vertical-align:top;
2420 outline:0;
2421}
2422
2423
2424/* Toggle for revision notes and stuff */
2425div.toggle-content.closed .toggle-content-toggleme {
2426 display:none;
2427}
2428
2429#jd-content img.toggle-content-img {
2430 margin:0 5px 5px 0;
2431}
2432
2433div.toggle-content-toggleme {
2434 padding:0 0 0 15px;
2435}
2436
2437
2438/* API LEVEL FILTERED MEMBERS */
2439
2440.absent,
2441.absent a:link,
2442.absent a:visited,
2443.absent a:hover,
2444.absent * {
2445 color:#bbb !important;
2446 cursor:default !important;
2447 text-decoration:none !important;
2448}
2449#devdoc-nav li.absent.selected,
2450#devdoc-nav li.absent.selected *,
2451#devdoc-nav div.label.absent.selected,
2452#devdoc-nav div.label.absent.selected * {
2453 background-color:#eaeaea !important;
2454}
2455.absent h4.jd-details-title,
2456.absent h4.jd-details-title * {
2457 background-color:#f6f6f6 !important;
2458}
2459.absent img {
2460 opacity: .3;
2461 filter: alpha(opacity=30);
2462 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2463}
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473/* JQUERY RESIZABLE STYLES */
2474.ui-resizable { position: relative; }
2475.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2476.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2477/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2478body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2479.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2480border-bottom: solid 1px #ededed;
2481 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2482/*
2483.ui-resizable-e {
2484cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24851px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2486*/
2487
2488/* --------------------------------------------------------------------------
2489Lightbox
2490*/
2491.lightbox {
2492 width: 769px;
2493 padding: 1.5em;
2494 margin: 0 auto;
2495 border: solid 1px #dcdcdc;
2496 background: #fff;
2497 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2498 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2499 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
2500}
2501.lightbox .header {
2502 float: left;
2503 width: 720px;
2504 margin: -10px 20px 10px 0;
2505}
2506.lightbox .close {
2507 float: right;
2508 width: 10px;
2509 height: 10px;
2510 margin: -10px -10px 10px 0;
2511 text-indent: -1000em;
2512 background: url(../images/close.png) no-repeat 0 0;
2513}
2514.lightbox .close:hover, .lightbox .close:focus {
2515 background-position: -10px 0;
2516}
2517
2518/* --------------------------------------------------------------------------
2519Styles for samples browser
2520*/
2521
2522#codesample-wrapper {
2523 width:100000px; /* super wide to contain floats, but doesn't cause scroll */
2524 overflow:visible;
2525}
2526pre#codesample-block {
2527 float:left;
2528 overflow:visible;
2529 background:transparent;
2530 border:none;
2531}
2532pre#codesample-block a.number {
2533 display:none;
2534}
2535pre#codesample-block .code-line:hover {
2536 background:#e7e7e7;
2537}
2538pre#codesample-line-numbers {
2539 float:left;
2540 width:2em;
2541 background:transparent;
2542 border:none;
2543 border-right:1px solid #ccc;
2544 padding-left:0;
2545 font-family:monospace;
2546 text-align:right;
2547 -webkit-touch-callout: none;
2548 -webkit-user-select: none;
2549 -khtml-user-select: none;
2550 -moz-user-select: -moz-none;
2551 -ms-user-select: none;
2552 user-select: none;
2553}
2554pre#codesample-line-numbers a {
2555 color:#999;
2556}
2557pre#codesample-line-numbers.hidden {
2558 display:none;
2559}
2560pre#codesample-block span.code-line {
2561 width:100%;
2562 display:inline-block;
2563}
2564
2565/*
2566Styles for displaying image or video resources in samples browser.
2567Resources are marked as no-display if they exceed the size limit.
2568*/
2569div#codesample-resource img, div#codesample-resource video {
2570 border: 1px solid #ececec;
2571}
2572
2573div#codesample-resource.noDisplay div {
2574 border: 1px solid #ececec;
2575 width:120px;
2576 margin-bottom:4px;
2577 padding:20px;
2578}
2579
2580div#codesample-resource .noDisplay-message:after {
2581 font-style:italic;
2582 font-size:12px;
2583 content: 'This resource is not available for browsing. To view it, please download the project.';
2584}
2585
2586/*
2587Styles for project structure (treeview) page
2588*/
2589.structure-dir {
2590background-image:url(../../assets/images/folder.png);
2591background-repeat:no-repeat;
2592background-position:16px 2px;
2593 margin:.25em 0 0 0;
2594 padding:0 0 0 0;
2595}
2596
2597.structure-toggleme {
2598 margin:0 0 0 3em;
2599 padding:0 0 0 0;
2600 text-decoration:none;
2601}
2602
2603.structure-java{
2604background-image:url(../../assets/images/file-java.png);
2605background-repeat:no-repeat;
2606background-position:0px 2px;
2607 margin:.3em 0 0 0;
2608 padding:.3em 0 .3em 22px;
2609}
2610
2611.structure-file {
2612background-image:url(../../assets/images/file-generic.png);
2613background-repeat:no-repeat;
2614background-position:0px 2px;
2615 margin:.3em 0 0 0;
2616 padding:.3em 0 .3em 22px;
2617}
2618
2619.structure-xml {
2620background-image:url(../../assets/images/file-xml.png);
2621background-repeat:no-repeat;
2622background-position:0px 2px;
2623 margin:.3em 0 0 0;
2624 padding:.3em 0 .25em 22px;
2625}
2626
2627.structure-img {
2628background-image:url(../../assets/images/file-image.png);
2629background-repeat:no-repeat;
2630background-position:0px 2px;
2631 margin:.3em 0 0 0;
2632 padding:.3em 0 .25em 22px;
2633}
2634
2635.structure-manifest {
2636background-image:url(../../assets/images/file-manifest.png);
2637background-repeat:no-repeat;
2638 margin:.0 0 0 1.25em;
2639 padding:0 0 0 22px;
2640 text-decoration:none;
2641}
2642
2643#jd-content .structure-toggle-img {
2644 margin:.5em 0 0 0;
2645padding-right:2.1em;
2646}
2647
2648.dirInfo {
2649 margin-left:2em;
2650}
2651
2652.structure-dir a {
2653 text-decoration:none;
2654}
2655
2656.structure-manifest a {
2657 text-decoration: none;
2658}
2659.structure-file a {
2660 text-decoration: none;
2661}
2662
2663.sampleEmbed {
2664 background-color:rgb(249, 249, 249);
2665}
2666
2667.sampleEmbed ol.lineNumbers {
2668 list-style-type: decimal;
2669 padding-left:1em;
2670}
2671
2672.sampleEmbed ol.lineNumbers li {
2673border-left:1px solid #ddd;
2674border-right:1px solid #ddd;
2675color:gray;
2676background-color:#f7f7f7;
2677margin:0 0 0 24px;
2678padding: 2px 2px 2px 6px;
2679}
2680
2681.sampleEmbed ol.lineNumbers li:hover {
2682background: #efefef;
2683}
2684
2685.samples-nav li a {
2686 overflow: hidden;
2687 text-overflow: ellipsis;
2688 white-space: nowrap;
2689}
2690
2691/* --------------------------------------------------------------------------
2692Styles for raw formatted line numbers (not used with listformatted version)
2693div.sampleLine div.lineNumber {
2694 display: inline;
2695}
2696div.sampleLine div.lineCode {
2697 display: inline;
2698 padding-left:6px;
2699}
2700div.sampleLine {
2701 padding:0;
2702 margin:0;
2703}*/
2704
2705/* --------------------------------------------------------------------------
2706Butterbar
2707*/
2708#butterbar-wrapper {
2709 position:absolute;
2710 top:0;
2711 left:0;
2712 width:100%;
2713}
2714#butterbar {
2715 width:940px;
2716 margin:0 auto;
2717}
2718#butterbar-message {
2719 background-color:#f80;
2720 float:right;
2721 font-size:12px;
2722 font-weight:bold;
2723 padding:0 10px;
2724 border-radius: 0 0 5px 5px;
2725}
2726#butterbar-message a {color:#fff !important}
2727#butterbar-message a:hover {text-decoration:underline;}
2728
2729/* --------------------------------------------------------------------------
2730Misc
2731*/
2732
2733
2734.clearfix:before, .clearfix:after {
2735 content: "";
2736 display: table
2737}
2738.clearfix:after {
2739 clear: both
2740}
2741.clearfix {
2742 *zoom: 1
2743}
2744table.blank th, table.blank td {
2745 border: 0;
2746 background: none
2747}
2748.caption {
2749 margin: 0.5em 0 2em 0;
2750 color: #000;
2751 font-size: 11.5px;
2752}
2753
2754.nolist, .nolist ul, .nolist ol {
2755 list-style:none;
2756 margin-left:0;
2757}
2758#tb .nolist {
2759 margin-left:15px;
2760}
2761
2762dl.xml>dt {
2763 text-transform:uppercase;
2764}
2765dl.xml dl.attr {
2766 margin-top:0;
2767}
2768
2769pre.classic {
2770 background-color:transparent;
2771 border:none;
2772 padding:0;
2773}
2774
2775p.img-caption {
2776 margin: -10px 0 20px;
2777 font-size:13px;
2778 color:#666;
2779}
2780
2781div.figure,
2782div.figure-right {
2783 float:right;
2784 clear:right;
2785 margin:10px 0 0 0;
2786 padding:0 0 0 20px;
2787 /* width must be defined w/ an inline style matching the image width */
2788}
2789
2790div.figure-left {
2791 float:left;
2792 clear:left;
2793 margin:10px 0 0 0;
2794 padding:0 20px 0 0;
2795 /* width must be defined w/ an inline style matching the image width */
2796}
2797
2798img.frame {
2799 border:1px solid #DDD;
2800 padding:4px;
2801}
2802
2803p.table-caption {
2804 margin: 0 0 4px 0;
2805 font-size:13px;
2806 color:#666;
2807}
2808
2809p.code-caption {
2810 margin-bottom: 4px;
2811 font: 12px/1.5 monospace;
2812 color:#666;
2813}
2814
2815div.note,
2816div.caution,
2817div.warning {
2818 margin: 0 0 15px;
2819}
2820
2821p.note, div.note,
2822p.caution, div.caution,
2823p.warning, div.warning {
2824 padding: 0 0 0 10px;
2825 border-left: 4px solid;
2826}
2827
2828p.note, div.note {
2829 border-color: #258AAF;
2830}
2831
2832p.caution, div.caution {
2833 border-color: #FF8800;
2834}
2835
2836p.warning, div.warning {
2837 border-color: #ff4443;
2838}
2839
2840div.note.design {
2841 border-left: 4px solid #33B5E5;
2842}
2843
2844div.note.develop {
2845 border-left: 4px solid #F80;
2846}
2847
2848div.note.distribute {
2849 border-left: 4px solid #9C0;
2850}
2851
2852.note p, .caution p, .warning p {
2853 margin:0 0 5px;
2854}
2855
2856.note p:last-child, .caution p:last-child, .warning p:last-child {
2857 margin-bottom:0;
2858}
2859
2860body.about blockquote {
2861 display:block;
2862 float:right;
2863 width:280px;
2864 font-size:20px;
2865 font-style:italic;
2866 line-height:24px;
2867 color:#33B5E5;
2868 margin:0 0 20px 30px;
2869}
2870
2871div.design-announce p {
2872 margin:0 0 10px;
2873}
2874
Dirk Dougherty541b4942014-02-14 18:31:53 -08002875.expandable {
2876 height:34px;
2877 padding-left:20px;
2878 position:relative;
2879}
2880.expandable:before {
2881 content: '';
2882 background-image: url(../images/styles/disclosure_down.png);
2883 background-repeat:no-repeat;
2884 background-position: -12px -9px;
2885 width: 20px;
2886 height: 20px;
2887 display: inline-block;
2888 position: absolute;
2889 top: 0;
2890 left: 0; }
2891}
2892.expandable.expanded:before {
2893 background-image: url(../images/styles/disclosure_up.png);
2894}
2895
2896/* notice box for cross links between Design/Develop docs */
2897a.notice-developers-video,
2898a.notice-developers,
2899a.notice-designers-video,
2900a.notice-designers {
2901 float:right;
2902 clear:right;
2903 width:238px;
2904 min-height:50px;
2905 margin:0 0 20px 20px;
2906 border:1px solid #ddd;
2907}
2908a.notice-developers-video.wide,
2909a.notice-developers.wide,
2910a.notice-designers-video.wide,
2911a.notice-designers.wide {
2912 width:278px;
2913}
2914a.notice-developers-video div,
2915a.notice-developers div,
2916a.notice-designers-video div,
2917a.notice-designers div {
2918 min-height:40px;
2919 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2920 background-size:40px 40px;
2921 padding:10px 10px 10px 60px;
2922}
2923a.notice-designers div {
2924 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2925 background-size:40px 40px;
2926}
2927a.notice-designers-video div {
2928 background:url('../images/styles/notice-designers-video@2x.png') no-repeat 10px 10px;
2929 background-size:40px 40px;
2930}
2931a.notice-developers-video div {
2932 background:url('../images/styles/notice-developers-video@2x.png') no-repeat 10px 10px;
2933 background-size:40px 40px;
2934}
2935a.notice-developers-video:hover,
2936a.notice-developers:hover,
2937a.notice-designers-video:hover,
2938a.notice-designers:hover {
2939 background:#eee;
2940}
2941a.notice-developers-video h3,
2942a.notice-developers h3,
2943a.notice-designers-video h3,
2944a.notice-designers h3 {
2945 font-size:13px;
2946 line-height:18px;
2947 font-weight:bold;
2948 text-transform:uppercase;
2949 color:#000 !important;
2950 margin:0 0 1px;
2951}
2952a.notice-developers-video p,
2953a.notice-developers p,
2954a.notice-designers-video p,
2955a.notice-designers p {
2956 margin:0;
2957 line-height:14px;
2958}
2959a.notice-developers-video.left,
2960a.notice-developers.left,
2961a.notice-designers-video.left,
2962a.notice-designers.left {
2963 margin-left:0;
2964 float:left;
2965}
2966
2967
2968/* hide nested list items; companion to hideNestedLists() */
2969.hide-nested li ol,
2970.hide-nested li ul {
2971 display:none;
2972}
2973
2974a.header-toggle {
2975 display:block;
2976 float:right;
2977 text-transform:uppercase;
2978 font-size:.8em !important;
2979 font-weight:normal;
2980 margin-top:2px;
2981}
2982
2983
2984/* -----------------------------------------------
2985good/bad example containers
2986*/
2987
2988div.example-block {
2989 background-repeat: no-repeat;
2990 background-position:10px 8px;
2991 background-color:#ccc;
2992 padding:4px;
2993 margin:.8em auto 1.5em 2em;
2994 width:260px;
2995 float:right;
2996}
2997/* red container */
2998.example-block.bad {
2999 background-image: url(/images/example-bad.png);
3000 background-color:#f4cccc;
3001}
3002/* green container */
3003.example-block.good {
3004 background-image: url(/images/example-good.png);
3005 background-color:#d9ead3;
3006}
3007/* container heading div */
3008#jd-content .example-block .heading {
3009 font-weight:bold;
3010 margin:6px 0 9px 36px;
3011 padding:6px auto;
3012}
3013/* container image (if any) */
3014#jd-content .example-block img {
3015 margin:0;
3016 padding:0px;
3017}
3018
3019.example-block table {
3020 margin:0;
3021}
3022
3023/* -----------------------------------------------
3024Dialog box for popup messages
3025*/
3026
3027div.dialog {
3028 height:0;
3029 margin:0 auto;
3030}
3031
3032div.dialog>div {
3033 z-index:99;
3034 position:fixed;
3035 margin:70px 0;
3036 width: 391px;
3037 height: 200px;
3038 background: #F7F7F7;
3039-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3040-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3041box-shadow: 0 0 15px rgba(0,0,0,0.5);
3042}
3043/* IE6 can't position fixed */
3044* html div.dialog div { position:absolute; }
3045
3046
3047div#deprecatedSticker {
3048 display:none;
3049 z-index:99;
3050 position:fixed;
3051 right:15px;
3052 top:114px;
3053 margin:0;
3054 padding:1em;
3055 background:#FFF;
3056 border:1px solid #dddd00;
3057 box-shadow:-5px 5px 10px #ccc;
3058 -moz-box-shadow:-5px 5px 10px #ccc;
3059 -webkit-box-shadow:-5px 5px 10px #ccc;
3060}
3061
3062div#naMessage {
3063 display:none;
3064 width:555px;
3065 height:0;
3066 margin:0 auto;
3067}
3068
3069div#naMessage div {
3070 z-index:99;
3071 width:450px;
3072 position:fixed;
3073 margin:50px 0;
3074 padding:4em 4em 3em;
3075 background:#FFF;
3076 border:1px solid #999;
3077 box-shadow:-10px 10px 40px #888;
3078 -moz-box-shadow:-10px 10px 40px #888;
3079 -webkit-box-shadow:-10px 10px 40px #888;
3080}
3081/* IE6 can't position fixed */
3082* html div#naMessage div { position:absolute; }
3083
3084div#naMessage strong {
3085 font-size:1.1em;
3086}
3087
3088
3089/* --------------------------------------------------------------------------
3090Slideshow Controls & Next/Prev
3091*/
3092.slideshow-next, .slideshow-prev {
3093 width: 20px;
3094 height: 36px;
3095 text-indent: -1000em;
3096}
3097.slideshow-container {
3098 margin: 2em 0;
3099}
3100.slideshow-container:before, .slideshow-container:after {
3101 content: "";
3102 display: table;
3103 clear: both;
3104}
3105a.slideshow-next, a.slideshow-next:visited {
3106
3107 float: right;
3108
3109 background: url(../images/arrow-right.png) no-repeat 0 0
3110
3111}
3112
3113a.slideshow-prev, a.slideshow-prev:visited {
3114
3115 float: left;
3116
3117 background: url(../images/arrow-left.png) no-repeat 0 0
3118
3119}
3120
3121.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3122
3123 background-position: 0 -36px
3124
3125}
3126
3127.slideshow-next:active, .slideshow-prev:active {
3128
3129 background-position: 0 -72px
3130
3131}
3132.slideshow-nav {
3133 width: 74px;
3134 margin: 0 auto;
3135}
3136.slideshow-nav a, .slideshow-nav a:visited {
3137 display: inline-block;
3138 width: 12px;
3139 height: 12px;
3140 margin: 0 2px 20px 2px;
3141 background: #ccc;
3142 -webkit-border-radius: 50%;
3143 -moz-border-radius: 50%;
3144 border-radius: 50%;
3145}
3146.slideshow-nav a:hover, .slideshow-nav a:focus {
3147
3148 background: #33B5E5
3149}
3150
3151.slideshow-nav a:active {
3152
3153 background: #1e799a;
3154 background: #ebebeb;
3155 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3156 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3157 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3158}
3159.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
3160 background: #33B5E5
3161}
3162/* --------------------------------------------------------------------------
3163Tabs
3164*/
3165ul.tabs {
3166 padding: 0;
3167 margin: 2em 0 0 0;
3168}
3169ul.tabs:before, ul.tabs:after {
3170 content: "";
3171 display: table;
3172 clear: both;
3173}
3174ul.tabs li {
3175 list-style-type: none;
3176 float: left;
3177}
3178ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
3179 display: block;
3180 height: 36px;
3181 line-height: 36px;
3182 padding: 0 15px;
3183 margin-right: 2px;
3184 color: #222;
3185 -moz-border-radius-topleft: 2px;
3186 -moz-border-radius-topright: 2px;
3187 -moz-border-radius-bottomright: px;
3188 -moz-border-radius-bottomleft: px;
3189 -webkit-border-radius: 2px 2px px px;
3190 border-radius: 2px 2px px px;
3191 border-top: solid 1px #ebebeb;
3192 border-left: solid 1px #ebebeb;
3193 border-right: solid 1px #ebebeb;
3194 background-color: #fff;
3195 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3196 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3197 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3198 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3199 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3200 background-image: linear-gradient(top, #ffffff, #fafafa);
3201 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3202EndColorStr='#fafafa');
3203}
3204ul.tabs li a:hover {
3205 color: #33B5E5;
3206}
3207ul.tabs li a.selected {
3208 height: 37px;
3209 color: #33B5E5;
3210 background-color: #f7f7f7;
3211 background-image: none;
3212 border-color: #ddd;
3213}
3214.tab-content {
3215 padding: 1.2em;
3216 margin: -1px 0 2em 0;
3217 -webkit-border-radius: 2px;
3218 -moz-border-radius: 2px;
3219 border-radius: 2px;
3220 border: solid 1px #ddd;
3221 background: #f7f7f7;
3222}
3223/* --------------------------------------------------------------------------
3224Feature Boxes
3225*/
3226.feature-box {
3227 width: 291px;
3228 height: 200px;
3229 position: relative;
3230 background: #F7F7F7;
3231}
3232.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
3233 z-index: 100;
3234 position: absolute;
3235 background-color: #aaa;
3236}
3237.box-border .top, .box-border .bottom {
3238 width: 291px;
3239 height: 1px;
3240}
3241.dialog .box-border .top,
3242.dialog .box-border .bottom { width:391px; }
3243
3244.box-border .left, .box-border .right {
3245 width: 1px;
3246 height: 8px;
3247}
3248.box-border .top { top: 0; left: 0 }
3249.box-border .top .left { top: 1px; left: 0 }
3250.box-border .top .right { top: 1px; right: 0 }
3251.box-border .bottom .left { top: -8px; left: 0 }
3252.box-border .bottom { top: 200px; left: 0 }
3253.box-border .bottom .right { top: -8px; right: 0 }
3254
3255.feature-box h4,
3256.dialog h4 {
3257 margin: 15px 18px 10px;
3258 padding:0;
3259}
3260
3261.feature-box p,
3262.dialog p {
3263 margin: 10px 18px;
3264 padding:0;
3265}
3266.feature-box .link,
3267.dialog .link {
3268 border-top: 1px solid #dedede;
3269 bottom: 0;
3270 position: absolute;
3271 width: inherit;
3272}
3273.feature-box a, .feature-box h4,
3274.dialog a, .dialog h4 {
3275 -webkit-transition: color .4s ease;
3276 -moz-transition: color .4s ease;
3277 -o-transition: color .4s ease;
3278 transition: color .4s ease;
3279}
3280.feature-box:hover {
3281 cursor: pointer;
3282}
3283.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
3284.left, .feature-box:hover .right {
3285 background-color: #33B5E5;
3286}
3287.feature-box:hover h4, .feature-box:hover a {
3288 color: #33B5E5;
3289}
3290/* --------------------------------------------------------------------------
3291Page-Specific Styles
3292*/
3293.colors {
3294 position: relative;
3295 float: left;
3296 width: 92px;
3297 margin: 40px 0 20px;
3298}
3299.colors div {
3300 color: #fff;
3301 font-size: 11.5px;
3302 width: 82px;
3303 height: 82px;
3304 margin-top:-30px;
3305 line-height: 82px;
3306 text-align: center;
3307 border: solid 5px #fff;
3308 -webkit-border-radius: 50%;
3309 -moz-border-radius: 50%;
3310 border-radius: 50%;
3311}
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326/* ########### REFERENCE DOCS ################## */
3327
3328#packages-nav h2,
3329#classes-nav h2 {
3330 font-size:18px;
3331 margin:0;
3332 padding:0 0 0 4px;
3333}
3334
3335#jd-header {
3336 padding: 0 0 5px;
3337 margin: 20px 0 10px;
3338 font-size:13px;
3339 border-bottom:solid 1px #ccc;
3340}
3341
3342#jd-header h1 {
3343 margin:0;
3344 padding:0;
3345}
3346
3347/* page-top-right container for reference pages (holds
3348links to summary tables) */
3349#api-info-block {
3350 font-size:13px;
3351 margin:20px 0 0;
3352 padding:0 10px 6px;
3353 font-weight:normal;
3354 float:right;
3355 text-align:right;
3356 color:#999;
3357 max-width:70%;
3358}
3359
3360#api-info-block div.api-level {
3361 font-weight:bold;
3362 font-size:inherit;
3363 float:none;
3364 color:#222;
3365 padding:0;
3366 margin:0;
3367}
3368
3369/* inheritance table */
3370.jd-inheritance-table {
3371 border-spacing:0;
3372 margin:0;
3373 padding:0;
3374 font-size:13px;
3375 background-color:transparent;
3376}
3377.jd-inheritance-table tr td {
3378 border: none;
3379 margin: 0;
3380 padding: 0;
3381 background-color:transparent;
3382}
3383.jd-inheritance-table .jd-inheritance-space {
3384 font-weight:bold;
3385 width:1em;
3386}
3387.jd-inheritance-table .jd-inheritance-interface-cell {
3388 padding-left: 17px;
3389}
3390
3391
3392
3393.jd-sumtable a {
3394 text-decoration:none;
3395}
3396
3397.jd-sumtable a:hover {
3398 text-decoration:underline;
3399}
3400
3401/* the link inside a sumtable for "Show All/Hide All" */
3402.toggle-all {
3403 display:block;
3404 float:right;
3405 font-weight:normal;
3406 font-size:0.9em;
3407}
3408
3409/* adjustments for in/direct subclasses tables */
3410.jd-sumtable.jd-sumtable-subclasses {
3411 margin: 1em 0 0 0;
3412 max-width:968px;
3413 background-color:transparent;
3414 font-size:13px;
3415}
3416
3417/* extra space between end of method name and open-paren */
3418.sympad {
3419 margin-right: 2px;
3420}
3421
3422/* right alignment for the return type in sumtable */
3423.jd-sumtable .jd-typecol {
3424 text-align:right;
3425}
3426
3427/* adjustments for the expando table-in-table */
3428.jd-sumtable-expando {
3429 margin:.5em 0;
3430 padding:0;
3431}
3432
3433/* a div that holds a short description */
3434.jd-descrdiv {
3435 padding:3px 1em 0 1em;
3436 margin:0;
3437 border:0;
3438}
3439
3440#jd-content img.jd-expando-trigger-img {
3441 padding:0 4px 4px 0;
3442 margin:0;
3443}
3444
3445.jd-sumtable-subclasses div#subclasses-direct,
3446.jd-sumtable-subclasses div#subclasses-indirect {
3447 margin:0 0 0 13px;
3448}
3449
3450
3451
3452/********* MEMBER REF *************/
3453
3454
3455.jd-details {
3456/* border:1px solid #669999;
3457 padding:4px; */
3458 margin:0 0 1em;
3459}
3460
3461/* API reference: a container for the
3462.tagdata blocks that make up the detailed
3463description */
3464.jd-details-descr {
3465 padding:0;
3466 margin:.5em .25em;
3467}
3468
3469/* API reference: a block containing
3470a detailed description, a params table,
3471seealso list, etc */
3472.jd-tagdata {
3473 margin:.5em 1em;
3474}
3475
3476.jd-tagdata p {
3477 margin:0 0 1em 1em;
3478}
3479
3480/* API reference: adjustments to
3481the detailed description block */
3482.jd-tagdescr {
3483 margin:.25em 0 .75em 0;
3484}
3485
3486.jd-tagdescr ol,
3487.jd-tagdescr ul {
3488 margin:0 2.5em;
3489 padding:0;
3490}
3491
3492.jd-tagdescr table,
3493.jd-tagdescr img {
3494 margin:.25em 1em;
3495}
3496
3497.jd-tagdescr li {
3498margin:0 0 .25em 0;
3499padding:0;
3500}
3501
3502/* API reference: heading marking
3503the details section for constants,
3504attrs, methods, etc. */
3505h4.jd-details-title {
3506 font-size:1.15em;
3507 background-color: #E2E2E2;
3508 margin:1.5em 0 .6em;
3509 padding:3px 95px 3px 3px; /* room for api-level */
3510}
3511body.google h4.jd-details-title {
3512 background-color: #FFF;
3513 padding-top:5px;
3514 border-top: 1px solid #ccc;
3515}
3516body.google table.jd-sumtable th {
3517 background-color: #FFF;
3518 color:#000;
3519}
3520
3521h4.jd-tagtitle {
3522 margin:0;
3523}
3524
3525h4 .normal {
3526 font-weight:normal;
3527}
3528
3529/* API reference: heading for "Parameters", "See Also", etc.,
3530in details sections */
3531h5.jd-tagtitle {
3532 margin:0 0 .25em 0;
3533 font-size:1em;
3534}
3535
3536.jd-tagtable {
3537 margin:0;
3538 background-color:transparent;
3539 width:auto;
3540}
3541
3542.jd-tagtable td,
3543.jd-tagtable th {
3544 border:none;
3545 background-color:#fff;
3546 vertical-align:top;
3547 font-weight:normal;
3548 padding:2px 10px;
3549}
3550
3551.jd-tagtable th {
3552 font-style:italic;
3553}
3554
3555/* Inline api level indicator for methods */
3556div.api-level {
3557 font-size:.8em;
3558 font-weight:normal;
3559 color:#999;
3560 float:right;
3561 padding:0 8px 0;
3562 margin-top:-30px;
3563}
3564
3565table.jd-tagtable td,
3566table.jd-tagtable th {
3567 background-color:transparent;
3568}
3569
3570table.jd-tagtable th {
3571 color:inherit;
3572}
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596/* SEARCH FILTER */
3597
3598.menu-container {
3599 position:relative;
3600}
3601#search_autocomplete {
3602 font-weight:normal;
3603}
3604
3605.search_filtered_wrapper.reference {
3606 width: 193px;
3607 float: right;
3608}
3609.search_filtered_wrapper.docs {
3610 width:875px;
3611 float: left;
3612 position:absolute;
3613 top:26px;
3614 right:66px;
3615}
3616.suggest-card {
3617 position:relative;
3618 width:170px;
3619 min-height:90px;
3620 padding:5px;
3621 border: solid 1px #C5C5C5;
3622 background: white;
3623 top: 15px;
3624 margin-right:-5px;
3625 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3626 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3627 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3628}
3629.suggest-card.reference {
3630 position:absolute;
3631 z-index:999;
3632 min-width:171px; /* +padding and border makes this match input width */
3633 min-height:93px; /* add 3px because this has 1 not 4px top border */
3634 width:auto;
3635 top:41px;
3636 margin:0;
3637}
3638.suggest-card.develop {
3639 z-index:997;
3640 border-top: solid 4px #F80;
3641 float:right;
3642}
3643.suggest-card.design {
3644 z-index:996;
3645 border-top: solid 4px #33b5e5;
3646 float:right;
3647}
3648.suggest-card.distribute {
3649 z-index:995;
3650 border-top: solid 4px #9C0;
3651 float:right;
3652}
3653.child-card {
3654 width:100%;
3655}
3656.suggest-card.dummy {
3657 width:172px;
3658 float:right;
3659 border:0;
3660 background:transparent;
3661 -moz-box-shadow: none;
3662 -webkit-box-shadow: none;
3663 box-shadow: none;
3664}
3665
3666ul.search_filtered {
3667 min-width:100%;
3668 list-style: none;
3669 margin: 0 0 5px;
3670 padding: 0;
3671}
3672.search_filtered .jd-selected {
3673 background:#efefef;
3674 cursor:pointer;
3675}
3676.search_filtered .jd-selected,
3677.search_filtered .jd-selected a {
3678 color:#09C !important;
3679}
3680
3681.no-display {
3682 display: none;
3683}
3684
3685.search_filtered li.jd-autocomplete {
3686 font-size: 0.81em;
3687 border: none;
3688 margin: 0 0 2px;
3689 padding: 0;
3690 line-height:1.5em;
3691}
3692
3693.search_filtered li a {
3694 padding:0 5px;
3695 color:#222 !important;
3696 display:inline-block;
3697 line-height:12px;
3698}
3699
3700.search_filtered li.header {
3701 font-weight:bold;
3702 color:#444;
3703 border: none;
3704 margin: 8px 0 2px;
3705 padding:1px 5px;
3706 line-height:1.5em;
3707}
3708.search_filtered li.header.small {
3709 font-size:0.85em;
3710}
3711
3712.suggest-card.reference
3713.search_filtered li.header {
3714 color:#aaa;
3715 font-size: 0.81em;
3716}
3717
3718.search_filtered li.header:first-child {
3719 margin: 0 0 2px;
3720}
3721
3722.show-item {
3723 display: table-row;
3724}
3725.hide-item {
3726 display: hidden;
3727}
3728
3729
3730
3731
3732
3733/* SEARCH RESULTS */
3734
3735
3736#leftSearchControl .gsc-twiddle {
3737 background-image : none;
3738}
3739
3740#leftSearchControl td, #searchForm td {
3741 border: 0px solid #000;
3742 padding:0;
3743}
3744
3745#leftSearchControl .gsc-resultsHeader .gsc-title {
3746 padding-left : 0px;
3747 font-weight : bold;
3748 font-size : 13px;
3749 color:#006699;
3750 display : none;
3751}
3752
3753#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3754 display : none;
3755}
3756
3757#leftSearchControl .gsc-resultsRoot {
3758 padding-top : 6px;
3759}
3760
3761#leftSearchControl div.gs-visibleUrl-long {
3762 display : block;
3763 color:#006699;
3764}
3765
3766#leftSearchControl .gsc-webResult {
3767 padding:0 0 20px 0;
3768}
3769
3770.gsc-webResult div.gs-visibleUrl-short,
3771table.gsc-branding,
3772.gsc-clear-button {
3773 display : none;
3774}
3775
3776.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3777.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3778#leftSearchControl a,
3779#leftSearchControl a b {
3780 color:#006699;
3781}
3782
3783.gsc-resultsHeader {
3784 display: none;
3785}
3786
3787/* Disable built in search forms */
3788.gsc-control form.gsc-search-box {
3789 display : none;
3790}
3791table.gsc-search-box {
3792 margin:6px 0 0 0;
3793 border-collapse:collapse;
3794}
3795
3796td.gsc-input {
3797 padding:0 2px;
3798 width:100%;
3799 vertical-align:middle;
3800}
3801
3802input.gsc-input {
3803 border:1px solid #BCCDF0;
3804 width:99%;
3805 padding-left:2px;
3806 font-size:.95em;
3807}
3808
3809td.gsc-search-button {
3810 text-align: right;
3811 padding:0;
3812 vertical-align:top;
3813}
3814
3815
3816#searchResults {
3817 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3818(it doesn't) */
3819 height:auto;
3820}
3821
3822#searchResults .gsc-control {
3823 position:relative;
3824 width:auto;
3825 padding:0 0 10px;
3826}
3827
3828#searchResults .gsc-tabsArea {
3829 position:relative;
3830 white-space:nowrap;
3831 float:left;
3832 width:200px;
3833}
3834
3835#searchResults .gsc-above-wrapper-area {
3836 display:none;
3837}
3838
3839#searchResults .gsc-resultsbox-visible {
3840 float:left;
3841 width:720px;
3842 margin-left:20px;
3843}
3844
3845#searchResults .gsc-tabHeader {
3846 padding: 3px 6px;
3847 position:relative;
3848 width:auto;
3849 display:block;
3850}
3851
3852#searchResults h2#searchTitle {
3853 padding:0;
3854 margin:5px 0;
3855 border:none;
3856}
3857
3858#searchResults h2#searchTitle em {
3859 font-style:normal;
3860 color:#33B5E5;
3861}
3862
3863#searchResults .gsc-table-result {
3864 margin:5px 0 10px 0;
3865 background-color:transparent;
3866}
3867#searchResults .gs-web-image-box, .gs-promotion-image-box {
3868 width:120px;
3869}
3870#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3871 max-width:120px;
3872}
3873
3874#searchResults .gsc-table-result .gsc-thumbnail {
3875 padding:0 20px 0 0;
3876}
3877
3878#searchResults td {
3879 background-color:transparent;
3880}
3881
3882#searchResults .gsc-expansionArea {
3883 position:relative;
3884}
3885#searchResults .gsc-tabsArea .gsc-cursor-box {
3886 width:200px;
3887 padding:20px 0 0 1px;
3888}
3889#searchResults .gsc-cursor-page {
3890 display:inline-block;
3891 float:left;
3892 margin:-1px 0 0 -1px;
3893 padding:0;
3894 height:27px;
3895 width:27px;
3896 text-align:center;
3897 line-height:2;
3898}
3899
3900#searchResults .gsc-tabHeader.gsc-tabhInactive,
3901#searchResults .gsc-cursor-page {
3902 text-decoration:none;
3903 color:#258AAF;
3904 border: solid 1px #DADADA;
3905}
3906
3907#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3908#searchResults .gsc-cursor-page:hover {
3909 border-color: #DBDBDB;
3910 background-color: #F3F3F3;
3911 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3912 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3913 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3914 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3915 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3916 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3917 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3918EndColorStr='#ececec');
3919 color: #33B5E5;
3920}
3921
3922#searchResults .gsc-tabHeader.gsc-tabhActive,
3923#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3924#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3925#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3926 color:#fff;
3927 background-color: #09C;
3928 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3929 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3930 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3931 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3932 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3933 background-image: linear-gradient(top, #2FADDB, #09C);
3934 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3935 border: 1px solid #3990AB;
3936 z-index:100;
3937}
3938
Scott Main20cf2a92014-04-02 21:57:20 -07003939
3940
3941
3942
3943/************ STICKY NAV BAR ******************/
3944
3945#header-wrapper {
3946 background: #f9f9f9;
3947 margin: 0 -10px 0 -10px;
3948 padding: 31px 10px 0px 10px;
3949 position: relative;
3950}
3951#header-wrapper #nav-x div.wrap {
3952 max-width: 940px;
3953 height: 38px;
3954}
3955#header-wrapper #nav-x ul.nav-x li {
3956 margin-right: 36px !important;
3957 margin-top: 5px;
3958 margin-bottom: 0px;
3959 height: 30px;
3960}
3961#header-wrapper #nav-x > div.wrap ul.nav-x li.active {
3962 color: #669900;
3963 border-bottom: 3px solid #669900;
3964}
3965#header-wrapper #nav-x > div.wrap ul.nav-x li.active a {
3966 color: #669900;
3967}
3968#header-wrapper #nav-x > div.wrap ul.nav-x a {
3969 font-size: 14.5px;
3970}
3971#header-wrapper .developer-console-btn {
3972 float: right;
3973 background: #fefefe;
3974 border-radius: 4px;
3975 padding: 8px 14px;
3976 box-shadow: 1px 1px 0px #7a7a7a;
3977 font-size: 14px;
3978 margin-top: -6px;
3979 cursor: pointer;
3980 color: #464646;
3981 margin-right: 20px;
3982}
3983/* not currently used */
3984#header-wrapper .shadow {
3985 width: 1034px;
3986 height: 4px;
3987 position: absolute;
3988 left: 50%;
3989 margin-left: -517px;
3990 bottom: -4px;
3991 background-image: url(../images/header-shadow.png);
3992}
3993
3994#context {
3995 clear: both;
3996 padding-top: 14px;
3997}
3998#context .breadcrumb {
3999 float: left;
4000 margin-bottom: 10px;
4001}
4002#context .util {
4003 float: right;
4004 margin-right: 20px;
4005}
4006
4007.breadcrumb {
4008 list-style: none;
4009 margin: 0;
4010 padding: 0;
4011 position: relative;
4012}
4013.breadcrumb li {
4014 float: left;
4015 padding: 0 20px 0 0;
4016 color: #000;
4017 white-space: nowrap;
4018}
4019.breadcrumb li a {
4020 color: #000;
4021}
4022.breadcrumb li:after {
4023 content: url(../images/breadcrumb.png);
4024 position: relative;
4025 top: 1px;
4026 left: 10px;
4027 width: 5px;
4028 height: 10px;
4029}
4030.breadcrumb li.current {
4031 font-weight: 700;
4032}
4033.breadcrumb li.current:after {
4034 display: none;
4035}
4036
4037/* Sticky Nav overrides */
4038.sticky-menu {
4039 position: fixed;
4040 width: 940px;
4041 height: 0px;
4042 z-index: 51;
4043 top: 12px;
4044}
4045#sticky-header {
4046 display: none;
4047 padding: 0 10px;
4048 position: fixed;
4049 background: #f9f9f9;
4050 top: 0px;
4051 left: 0px;
4052 right: 0px;
4053 height: 45px;
4054 box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
4055 border-bottom: 1px solid #a5c43a;
4056 z-index: 50;
4057}
4058#sticky-header.design {
4059 border-bottom: 1px solid #33b5e5;
4060}
4061#sticky-header.develop {
4062 border-bottom: 1px solid #F80;
4063}
4064#sticky-header.distribute {
4065 border-bottom: 1px solid #9C0;
4066}
Dirk Dougherty318fb972014-04-08 18:46:53 -07004067#sticky-header.about {
4068 border-bottom: 1px solid #9933CC;
4069}
Scott Main20cf2a92014-04-02 21:57:20 -07004070#sticky-header > div {
4071 overflow: hidden;
4072 *zoom: 1;
4073 width: 940px;
4074 margin: 0 auto;
4075 clear: both;
4076 padding-top: 9px;
4077}
4078#sticky-header > div .logo {
4079 float: left;
4080 width: 26px;
4081 height: 25px;
4082 background: url(../images/dac_logo.png);
4083 z-index: 52;
4084 position: relative;
4085}
4086#sticky-header > div .top {
4087 float: left;
4088 width: 38px;
4089 height: 38px;
4090 position: relative;
4091 background: url(../images/styles/gototop.png);
4092 z-index: 52;
4093}
4094#sticky-header > div .breadcrumb {
4095 float: left;
4096 padding: 0 0 0 10px;
4097 border-left: 1px solid #d2d2d2;
4098 line-height: 24px;
4099 font-size: 14px;
4100 position: relative;
4101 top: 0px;
4102 z-index: 52;
Dirk Dougherty541b4942014-02-14 18:31:53 -08004103}
4104
4105
Scott Main20cf2a92014-04-02 21:57:20 -07004106}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004107
4108
4109
4110
4111
4112
4113
4114/*********** PREVIOUSLY dac-styles.css ***************/
4115
4116
4117#header {
4118 border-bottom:0;
4119}
4120
4121#header .wrap {
4122 max-width:940px;
4123 height:41px;
4124 border-bottom:1px solid;
4125 border-color: #ccc;
4126 position:relative;
4127}
4128
4129.about #header .wrap {
4130 border-color: #9933CC;
4131}
4132
4133.design #header .wrap {
4134 border-color: #33b5e5;
4135}
4136
4137.develop #header .wrap {
4138 border-color: #F80;
4139}
4140
4141.distribute #header .wrap {
4142 border-color: #9C0;
4143}
4144
4145.logo a {
4146 width:123px;
4147 float:left;
4148}
4149
4150#header .logo {
4151 margin-top: -6px;
4152 margin-left: 0px;
4153 margin-bottom:0px;
4154 width: 160px;
4155 padding-right:10px;
4156}
4157
4158.search {
4159 height:25px;
4160 margin-top: -3px;
4161 margin-bottom: 0px;
4162}
4163
4164
4165
4166/* Quicknav */
4167.btn-quicknav {
4168 width:20px;
4169 height:28px;
4170 float:left;
4171 margin-left:6px;
4172 padding-right:10px;
4173 position:relative;
4174 cursor:pointer;
4175 border-right:1px solid #CCC;
4176}
4177
4178.btn-quicknav a {
4179 zoom:1;
4180 position:absolute;
4181 top:13px;
4182 left:5px;
4183 display:block;
4184 text-indent:-9999em;
4185 width:10px;
4186 height:5px;
4187 background:url(../images/quicknav_arrow.png) no-repeat;
4188}
4189
4190.btn-quicknav a.arrow-active {
4191 background-position: 0 -5px;
4192 display:none;
4193}
4194
4195#header-wrap.quicknav a.arrow-inactive {
4196 display:none;
4197}
4198
4199.btn-quicknav.active a.arrow-active {
4200 display:block;
4201}
4202
4203.nav-x li {
4204 display:block;
4205 float:left;
4206 margin-right:45px;
4207 -webkit-transition: all 0.25s linear;
4208 -moz-transition: all 0.25s linear;
4209 -ms-transition: all 0.25s linear;
4210 -o-transition: all 0.25s linear;
4211 transition: all 0.25s linear;
4212}
4213
4214#header-wrap.quicknav .nav-x li {
4215 min-width:160px;
4216 margin-right:20px;
4217}
4218
4219#header-wrap.quicknav li.last {
4220 margin-right:0px;
4221}
4222
4223#quicknav {
4224 float:none;
4225 clear:both;
4226 margin-left:180px;
4227 margin-top:-30px;
4228 display:none;
4229 overflow:hidden;
4230}
4231
4232#header-wrap.quicknav #quicknav {
4233
4234}
4235
4236#quicknav ul {
4237 margin:10px 0;
4238 padding:0;
4239}
4240
4241#quicknav ul li.design {
4242 border-top:1px solid #33b5e5;
4243}
4244
4245#quicknav ul li.develop {
4246 border-top:1px solid #FF8800;
4247}
4248
4249#quicknav ul li.distribute {
4250 border-top:1px solid #99cc00;
4251}
4252
4253#quicknav ul li {
4254 display:block;
4255 float:left;
4256 margin:0 20px 0 0;
4257 min-width:140px;
4258}
4259
4260#quicknav ul li.last {
4261 margin-right:0px;
4262}
4263
4264#quicknav ul li ul li {
4265 float:none;
4266}
4267
4268#quicknav ul li ul li a {
4269 color:#222;
4270}
4271
4272#quicknav ul li li ul,
4273#quicknav ul li li ul li {
4274 margin:0;
4275}
4276
4277#quicknav ul li li ul li:before {
4278 content:"\21B3";
4279}
4280
4281#header-wrap {
4282 -webkit-transition: all 0.25s ease-out;
4283 -moz-transition: all 0.25s ease-out;
4284 -ms-transition: all 0.25s ease-out;
4285 -o-transition: all 0.25s ease-out;
4286 transition: all 0.25s ease-out;
4287
4288}
4289
4290#header-wrap.quicknav {
4291 height:196px;
4292
4293}
4294
4295/* SEARCH AND MORE */
4296.search {
4297 position: absolute;
4298 width: 50px;
4299 height:28px;
4300 display: block;
4301 margin-top:-3px;
4302 margin-bottom:7px;
4303 overflow:hidden;
4304 z-index:100;
4305 right:54px;
4306 -webkit-transition: width 0.4s ease;
4307 -moz-transition: width 0.4s ease;
4308 -o-transition: width 0.4s ease;
4309 transition: width 0.4s ease;
4310}
4311
4312.search #search-btn {
4313 width:50px;
4314 height:28px;
4315 background:url(../images/icon_search.png) no-repeat;
4316 float:left;
4317}
4318
4319.search-inner {
4320 width:245px;
4321}
4322
4323.search:hover, .search.active {
4324 width:245px;
4325}
4326
4327.search .bottom, .search .left, .search .right {
4328 position: absolute;
4329 background-color: #a2a2a2
4330}
4331
4332.search .bottom {
4333 width: 214px;
4334 height: 1px;
4335 top: 24px;
4336 left: 0
4337}
4338
4339.search .left, .search .right {
4340 height: 5px;
4341 width: 1px
4342}
4343
4344.search .left {
4345 top: 22px;
4346 left: 56px;
4347 background-color:#CCC;
4348}
4349
4350.search .right {
4351 top: 22px;
4352 left: 238px;
4353 background-color:#CCC;
4354}
4355
4356.search form {
4357 margin-top: 2px;
4358 width: 162px;
4359 float:left;
4360}
4361
4362.search form input {
4363 color: #2f2f2f;
4364 font-size: 0.95em;
4365 width: 178px;
4366 border: none;
4367 margin-left: 6px;
4368 z-index: 1500;
4369 position: relative;
4370 background-color: transparent;
4371 border-bottom:1px solid #CCC;
4372 padding:0 0 0 4px;
4373 outline:none;
4374 height:24px;
4375}
4376
4377.search:hover form input {
4378 border-bottom:1px solid #33B5E5;
4379}
4380
4381.search:hover .bottom, .search:hover .left, .search:hover .right {
4382 background-color: #33b5e5;
4383}
4384
4385.search:hover #search-btn {
4386 background-position: 0 -28px
4387}
4388
4389.search form input:focus {
4390 color: #222;
4391 font-weight: bold
4392}
4393
4394.moremenu {
4395 float: right;
4396 position: relative;
4397 width: 50px;
4398 height:28px;
4399 display: block;
4400 margin-top:-3px;
4401 margin-bottom:7px;
4402 overflow:hidden;
4403 -webkit-transition: width 0.25s ease;
4404 -moz-transition: width 0.25s ease;
4405 -o-transition: width 0.25s ease;
4406 transition: width 0.25s ease;
4407}
4408
4409.moremenu #more-btn {
4410 width:40px;
4411 height:28px;
4412 background:url(../images/icon_more.png) no-repeat;
4413 border-left:1px solid #CCC;
4414 float:left;
4415 cursor:pointer;
4416}
4417
4418.moremenu:hover #more-btn {
4419 background-position:0 -28px;
4420}
4421
4422.morehover {
4423 position:absolute;
4424 right:6px;
4425 top:-9px;
4426 width:40px;
4427 height:35px;
4428 z-index:99;
4429 overflow:hidden;
4430
4431 -webkit-opacity:0;
4432 -moz-opacity:0;
4433 -o-opacity:0;
4434 opacity:0;
4435
4436 -webkit-transform-origin:100% 0%;
4437 -moz-transform-origin:100% 0%;
4438 -o-transform-origin:100% 0%;
4439 transform-origin:100% 0%;
4440
4441 -webkit-transition-property: -webkit-opacity;
4442 -webkit-transition-duration: .25s;
4443 -webkit-transition-timing-function:ease;
4444
4445 -moz-transition-property: -moz-opacity;
4446 -moz-transition-duration: .25s;
4447 -moz-transition-timing-function:ease;
4448
4449 -o-transition-property: -o-opacity;
4450 -o-transition-duration: .25s;
4451 -o-transition-timing-function:ease;
4452
4453 transition-property: opacity;
4454 transition-duration: .25s;
4455 transition-timing-function:ease;
4456}
4457
4458.morehover:hover,
4459.morehover.hover {
4460 opacity:1;
4461 height:385px;
4462 width:268px;
4463 -webkit-transition-property:height, -webkit-opacity;
4464}
4465
4466.morehover .top {
4467 width:268px;
4468 height:39px;
4469 background:url(../images/more_top.png) no-repeat;
4470}
4471
4472.morehover .mid {
4473 width:228px;
4474 background:url(../images/more_mid.png) repeat-y;
4475 padding:10px 20px 0 20px;
4476}
4477
4478.morehover .mid .header {
4479 border-bottom:1px solid #ccc;
4480 font-weight:bold;
4481}
4482
4483.morehover .bottom {
4484 width:268px;
4485 height:6px;
4486 background:url(../images/more_bottom.png) no-repeat;
4487}
4488
4489.morehover ul {
4490 margin:10px 10px 20px 0;
4491}
4492
4493.morehover ul li {
4494 list-style:none;
4495}
4496
4497.morehover ul li.active a,
4498.morehover ul li.active a:hover {
4499 color:#222 !important;
4500}
4501
4502.morehover ul li.active img {
4503 margin-right:4px;
4504}
4505
4506
4507
4508
4509/* MARQUEE */
4510.slideshow-container {
4511 width:100%;
4512 overflow:hidden;
4513 position:relative;
4514}
4515.slideshow-container .slideshow-prev {
4516 position:absolute;
4517 top:50%;
4518 left:0px;
4519 margin-top:-36px;
4520 z-index:99;
4521}
4522.slideshow-container .slideshow-next {
4523 position:absolute;
4524 top:50%;
4525 margin-top:-36px;
4526 z-index:99;
4527 right:0px;
4528}
4529
4530.slideshow-container .pagination {
4531 position:absolute;
4532 bottom:20px;
4533 width:100%;
4534 text-align:center;
4535 z-index:99;
4536}
4537.slideshow-container .pagination ul {
4538 margin:0;
4539}
4540.slideshow-container .pagination ul li{
4541 display: inline-block;
4542 width:12px;
4543 height:12px;
4544 text-indent:-8000px;
4545 list-style:none;
4546 margin: 0 2px;
4547 border-radius:6px;
4548 background-color:#ccc;
4549 cursor:pointer;
4550 -webkit-transition:color .5s ease-in;
4551 -moz-transition:color .5s ease-in;
4552 -o-transition:color .5s ease-in;
4553 transition:color .5s ease-in;
4554}
4555.slideshow-container .pagination ul li:hover {
4556 background-color:#999;
4557}
4558.slideshow-container .pagination ul li.active {
4559 background-color:#33b5e5;
4560}
4561.slideshow-container .pagination ul li.active:hover {
4562 background-color:#33b5e5;
4563}
4564.slideshow-container ul li {
4565 display:inline;
4566 list-style:none;
4567}
4568
4569
4570
4571
4572a.download-sdk {
4573 float:right;
4574 margin:-10px 0;
4575 height:30px;
4576 padding-top:4px;
4577 padding-bottom:0px;
4578}
4579
4580#nav-x {
Dirk Dougherty318fb972014-04-08 18:46:53 -07004581 padding-top: 13px;
Dirk Dougherty541b4942014-02-14 18:31:53 -08004582}
4583
4584#nav-x .wrap {
Dirk Dougherty318fb972014-04-08 18:46:53 -07004585 min-height:32px;
Dirk Dougherty541b4942014-02-14 18:31:53 -08004586}
4587
4588#nav-x .wrap,
4589#searchResults.wrap {
4590 max-width:940px;
4591 border-bottom:1px solid #CCC;
4592}
4593
4594#searchResults.wrap #leftSearchControl {
4595 min-height:700px
4596}
4597.nav-x {
4598 margin-left:0;
4599 margin-bottom:0;
4600}
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611/*
4612 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4613 */
4614
4615.jspContainer {
4616 overflow: hidden;
4617 position: relative;
4618}
4619
4620.jspPane {
4621 position: absolute;
4622 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
4623}
4624
4625.jspVerticalBar {
4626 position: absolute;
4627 top: 0;
4628 right: 0;
4629 width: 4px;
4630 height: 100%;
4631 background: #f5f5f5;
4632}
4633
4634.jspHorizontalBar {
4635 position: absolute;
4636 bottom: 0;
4637 left: 0;
4638 width: 100%;
4639 height: 4px;
4640 background: #f5f5f5;
4641}
4642
4643.jspVerticalBar *,
4644.jspHorizontalBar * {
4645 margin: 0;
4646 padding: 0;
4647}
4648.jspCap {
4649 display: block;
4650}
4651
4652.jspVerticalBar .jspCap {
4653 height: 4px;
4654}
4655
4656.jspHorizontalBar .jspCap {
4657 width: 0;
4658 height: 100%;
4659}
4660
4661.jspHorizontalBar .jspCap {
4662 float: left;
4663}
4664
4665.jspTrack {
4666 position: relative;
4667}
4668
4669.jspDrag {
4670 background: #bbb;
4671 position: relative;
4672 top: 0;
4673 left: 0;
4674 cursor: pointer;
4675}
4676
4677.jspDrag:hover,
4678.jspDrag:active {
4679 border-color: #09c;
4680 background-color: #4cadcb;
4681 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4682 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4683 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4684 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4685 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4686 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
4687 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
4688}
4689
4690.jspHorizontalBar .jspTrack,
4691.jspHorizontalBar .jspDrag {
4692 float: left;
4693 height: 100%;
4694}
4695
4696.jspArrow {
4697 background: #999;
4698 text-indent: -20000px;
4699 display: block;
4700 cursor: pointer;
4701}
4702
4703.jspArrow.jspDisabled {
4704 cursor: default;
4705 background: #ccc;
4706}
4707
4708.jspVerticalBar .jspArrow {
4709 height: 16px;
4710}
4711
4712.jspHorizontalBar .jspArrow {
4713 width: 16px;
4714 float: left;
4715 height: 100%;
4716}
4717
4718.jspVerticalBar .jspArrow:focus {
4719 outline: none;
4720}
4721
4722.jspCorner {
4723 float: left;
4724 height: 100%;
4725}
4726
4727/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4728* html .jspCorner {
4729 margin: 0 -3px 0 0;
4730}
4731/******* end of jscrollpane *********/
4732
4733
4734
4735
4736
4737/************ DEVELOP HOMEPAGE ******************/
4738
4739/* Slideshow */
4740.slideshow-develop {
4741 height: 300px;
4742 width: 940px;
4743 position: relative;
4744 overflow:hidden;
4745}
4746.slideshow-develop .frame {
4747 width: 940px;
4748 height: 300px;
4749}
4750.slideshow-develop img.play {
4751 max-width:350px;
4752 max-height:240px;
4753 margin:20px 0 0 90px;
4754 -webkit-transform: perspective(800px ) rotateY( 35deg );
4755 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4756 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4757 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4758}
4759.slideshow-develop img.play.no-shadow {
4760 box-shadow: none;
4761 -moz-box-shadow: none;
4762 -webkit-box-shadow: none;
4763}
4764.slideshow-develop img.play.no-transform {
4765 -webkit-transform: none;
4766}
4767.slideshow-develop a.slideshow-next {
4768 background: url(../images/arrow-right-develop.png);
4769}
4770.slideshow-develop a.slideshow-prev {
4771 background: url(../images/arrow-left-develop.png);
4772}
4773.slideshow-develop .content-right {
4774 float: left;
4775}
4776.slideshow-develop .content-right h2 {
4777 padding:0;
4778 margin-bottom:10px;
4779 border:none;
4780}
4781.slideshow-develop .item {
4782 height: 300px;
4783 width: 940px;
4784}
4785.slideshow-develop .pagination ul li.active {
4786 background-color: #F80;
4787}
4788.slideshow-develop .pagination ul li.active:hover {
4789 background-color: #F80;
4790}
4791.slideshow-develop .item hr {
4792 margin:5px 0 10px;
4793}
4794.slideshow-develop .item p {
4795 margin:10px 0;
4796}
4797.slideshow-develop .item p.title-intro {
4798 position:absolute;
4799 margin:0;
4800}
4801
4802/* Feeds */
4803.feed ul {
4804 margin: 0;
4805}
4806.feed .feed-nav {
4807 height: 25px;
4808 border-bottom: 1px solid #CCC;
4809}
4810.feed .feed-nav li {
4811 list-style: none;
4812 float: left;
4813 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
4814 margin-right: 25px;
4815 cursor: pointer;
4816}
4817.feed .feed-nav li.active {
4818 color: #000;
4819 border-bottom: 4px solid #F80;
4820}
4821.feed .feed-container {
4822 overflow: hidden;
4823 width: 460px;
4824}
4825.feed .feed-container .feed-frame {
4826 width: 1000px;
4827}
4828.feed .feed-container .feed-frame ul {
4829 float: left;
4830 width:460px;
4831}
4832.feed .feed-container .feed-frame ul ul {
4833 float: none;
4834 margin:10px 0 0 30px;
4835}
4836.feed .feed-container .feed-frame li {
4837 list-style: none;
4838 margin: 20px 0 20px 0;
4839 width: 460px;
4840 height:93px;
4841}
4842.feed .feed-container .feed-frame li.playlist {
4843 height:auto;
4844}
4845.feed .feed-container .feed-frame li.playlist a {
4846 height:93px;
4847 display:block;
4848}
4849.feed .feed-container .feed-frame li.more {
4850 height:20px;
4851 margin:10px 0 5px 5px;
4852}
4853.feed .feed-container .feed-frame li.more a {
4854 height:inherit;
4855}
4856.feed .feed-container .feed-frame li.playlist-video {
4857 list-style: none;
4858 margin: 0;
4859 width: 460px;
4860 height:55px;
4861 font-size:12px;
4862}
4863.feed .feed-container .feed-frame li.playlist-video a {
4864 height:45px;
4865 padding:5px;
4866}
4867.feed .feed-container .feed-frame li.playlist-video h5 {
4868 font-size:12px;
4869 line-height:13px;
4870 margin:0;
4871}
4872.feed .feed-container .feed-frame li.playlist-video p {
4873 margin:5px 0 0;
4874 line-height:15px;
4875}
4876.feed-container .feed-frame div.feed-image {
4877 float: left;
4878 border: 1px solid #999;
4879 margin:0 20px 0 0;
4880 width:122px;
4881 height:92px;
4882 background:url('../images/blog-default.png') no-repeat 0 0;
4883 background-size:180px;
4884}
4885#jd-content .feed .feed-container .feed-frame li img {
4886 float: left;
4887 border: 1px solid #999;
4888 margin:0 20px 0 0;
4889 width:122px;
4890 height:92px;
4891}
4892#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4893 width:inherit;
4894 height:inherit;
4895}
4896
4897.feed .feed-container .feed-frame li a,
4898.feed .feed-container .feed-frame li a:active {
4899 color:#555 !important;
4900}
4901
4902.feed .feed-container .feed-frame li a:hover,
4903.feed .feed-container .feed-frame li a:hover * {
4904 color:#7AA1B0 !important;
4905}
4906
4907/* Video player */
4908#player-wrapper {
4909 display:none;
4910 margin: -1px auto 0;
4911 position: relative;
4912 width: 940px;
4913 height: 0px;
4914}
4915#player-frame {
4916 background: #EFEFEF;
4917 border: 1px solid #CCC;
4918 padding: 0px 207px;
4919 z-index: 10; /* stay above marque, but below search suggestions */
4920 width: 525px;
4921 height: 330px;
4922 position: relative;
4923}
4924
4925
4926
Dirk Dougherty541b4942014-02-14 18:31:53 -08004927/************ DEVELOP TOPIC CONTAINERS ************/
4928
4929.landing-banner,
4930.landing-docs {
4931 margin:20px 0;
4932}
4933.landing-banner > div:first-child,
4934.landing-docs > div:first-child,
4935.landing-docs > .col-12 {
4936 margin-left:0;
4937 min-height:280px;
4938}
4939.landing-banner.short > div {
4940 min-height:50px;
4941}
4942.landing-banner > div:last-child,
4943.landing-docs > div:last-child,
4944.landing-docs > .col-12 {
4945 margin-right:0;
4946}
4947
4948.landing-banner > div > *:last-child {
4949 margin-bottom:0;
4950}
4951.landing-banner h1 {
4952 margin-top:0;
4953}
4954.landing-docs,
4955.landing-banner {
4956 clear:both;
4957 overflow:hidden;
4958}
4959.landing-docs h3 {
4960 font-size:14px;
4961 line-height:21px;
4962 color:#555;
4963 text-transform:uppercase;
4964 border-bottom:1px solid #CCC;
4965 margin:0 0 20px;
4966}
4967.landing-docs a {
4968 color:#333 !important;
4969}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004970.landing-docs a:hover,
4971.landing-docs a:hover * {
4972 color:#7AA1B0 !important
4973}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004974.landing-docs .normal-links a {
4975 color:#258aaf !important;
4976}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004977.plusone {
4978 float:right;
4979}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004980.next-docs {
4981 border-top:1px solid #ccc;
4982 margin:40px 0 0;
4983 padding:5px 0 0;
4984 clear:left;
4985 overflow:hidden;
4986}
4987.next-docs div:first-child {
4988 margin-left:0;
4989}
4990.next-docs div:last-child {
4991 margin-right:0;
4992}
Dirk Dougherty541b4942014-02-14 18:31:53 -08004993.next-docs h2 {
4994 font-size:14px;
4995 line-height:21px;
4996 color:#555;
4997 text-transform:uppercase;
4998 border-bottom:none;
Dirk Dougherty08032402014-02-15 10:14:35 -08004999 margin:0;
Dirk Dougherty541b4942014-02-14 18:31:53 -08005000 padding:5px 0 0;
5001}
5002
5003
5004
5005/************* HOME/LANDING PAGE *****************/
5006
5007.slideshow-home {
5008 height: 500px;
5009 width: 940px;
5010 border-bottom: 1px solid #CCC;
5011 position: relative;
5012 margin: 0;
5013}
5014.slideshow-home .frame {
5015 width: 940px;
5016 height: 500px;
5017}
5018.slideshow-home .content-left {
5019 float: left;
5020 text-align: center;
5021 vertical-align: center;
5022 margin: 0 0 0 35px;
5023}
5024.slideshow-home .content-right {
5025 margin: 80px 0 0 0;
5026}
5027.slideshow-home .content-right p {
5028 margin-bottom: 10px;
5029}
5030.slideshow-home .content-right p:last-child {
5031 margin-top: 15px;
5032}
5033.slideshow-home .content-right h1 {
5034 padding:0;
5035}
5036.slideshow-home .item {
5037 height: 500px;
5038 width: 940px;
5039}
5040.home-sections {
5041 padding: 30px 20px 20px;
5042 margin: 20px 0;
5043 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
5044}
5045.home-sections ul {
5046 margin: 0;
5047}
5048.home-sections ul li {
5049 float: left;
5050 display: block;
5051 list-style: none;
5052 width: 170px;
5053 height: 35px;
5054 border: 1px solid #ccc;
5055 background: white;
5056 margin-right: 10px;
5057 border-radius: 1px;
5058 -webkit-border-radius: 1px;
5059 -moz-border-radius: 1px;
5060 box-shadow: 1px 1px 5px #EEE;
5061 -webkit-box-shadow: 1px 1px 5px #EEE;
5062 -moz-box-shadow: 1px 1px 5px #EEE;
5063 background: white;
5064}
5065.home-sections ul li:hover {
5066 background: #F9F9F9;
5067 border: 1px solid #CCC;
5068}
5069.home-sections ul li a,
5070.home-sections ul li a:hover {
5071 font-weight: bold;
5072 margin-top: 8px;
5073 line-height: 18px;
5074 float: left;
5075 width: 100%;
5076 text-align: center;
5077 color: #09c !important;
5078}
5079.home-sections ul li a {
5080 font-weight: bold;
5081 margin-top: 8px;
5082 line-height: 18px;
5083 float: left;
5084 width:100%;
5085 text-align:center;
5086}
5087.home-sections ul li img {
5088 float: left;
5089 margin: -8px 0 0 10px;
5090}
5091.home-sections ul li.last {
5092 margin-right: 0px;
5093}
5094.fullpage #footer {
5095 margin-top: -40px;
5096}
Dirk Dougherty08032402014-02-15 10:14:35 -08005097
5098/************ DISTRIBUTE PAGES ******************/
5099
5100/* Article page header line fix */
5101.headerLine {
5102 overflow: hidden;
5103}
5104.headerLine h1 {
5105 float: left;
5106 padding-right: 20px;
5107 margin-bottom: 0px;
5108 font-size: 20px;
5109 color: #363636;
5110}
5111.headerLine hr {
5112 overflow: hidden;
5113 margin: 42px 0 0 0;
5114}
5115
5116.article-detail #body-content {
5117 padding-top: 10px;
5118}
5119
5120/* A container for grid sets with uppercase h3 and rule */
5121.dynamic-grid h3 {
5122 font-size:14px;
5123 line-height:21px;
5124 color:#555;
5125 text-transform:uppercase;
5126 border-bottom:1px solid #CCC;
5127 padding:8px 0 0 1px;
5128 margin-bottom:10px;
5129 clear:both;
5130}
5131
5132.top-right-float {
5133 float: right;
5134}
5135
5136.clearfloat {
5137 float: none;
5138 clear: both;
5139}
5140
5141.border-img {
5142 border: 1px solid #CCC;
5143}
5144
5145.center-img {
5146 margin: auto;
5147 text-align: center;
5148}
5149.center-img img {
5150 margin-bottom: 15px;
5151}
5152
5153.figure img, .border-img {
5154 margin-bottom: 15px;
5155}
5156
5157/************ RESOURCE CARDS ******************/
5158
5159/* Resource cards, 12, 13, 16-col */
5160
5161/* Basic card-styling with shadow */
5162.resource-card {
5163 border-radius: 1px;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005164 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14);
Dirk Dougherty08032402014-02-15 10:14:35 -08005165 background: #fefefe;
5166}
5167
5168/* Styling for background image including tinting and section icons in stacks */
5169.card-bg {
5170 display: block;
5171 position: absolute;
5172 vertical-align: top;
5173 width: 100%;
5174 left: 0;
5175 top: 0;
5176 background-size: cover;
5177 background-repeat: no-repeat;
5178 background-position: center;
5179 background-image: url(../images/resource-card-default-android.jpg);
5180}
5181.card-bg:after {
5182 content: "";
5183 display: block;
5184 height: 100%;
5185 width: 100%;
5186 opacity: 1;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005187 background: rgba(0, 0, 0, 0.2);
Dirk Dougherty08032402014-02-15 10:14:35 -08005188 -webkit-transition: opacity 0.5s;
5189 -moz-transition: opacity 0.5s;
5190 -o-transition: opacity 0.5s;
5191 transition: opacity 0.5s;
5192}
5193.card-bg .card-section-icon {
5194 position: absolute;
5195 top: 50%;
5196 width: 100%;
5197 margin-top: -35px;
5198 text-align: center;
5199 padding-top: 65px;
5200 z-index: 100;
5201}
5202.card-bg .card-section-icon .icon {
5203 position: absolute;
5204 left: 50%;
5205 margin-left: -28px;
5206 top: 0px;
5207 width: 56px;
5208 height: 56px;
5209 background-repeat: no-repeat;
5210 background-position: 50% 50%;
5211 background-image: url(../images/stack-icon.png);
5212}
5213.card-bg .card-section-icon .section {
5214 text-transform: uppercase;
5215 color: white;
5216 font-size: 14px;
5217}
5218
5219.card-info {
5220 position: absolute;
5221 -webkit-box-sizing: border-box;
5222 -moz-box-sizing: border-box;
5223 box-sizing: border-box;
5224 top: 0;
5225 right: 0;
5226 bottom: 0;
5227 left: 0;
5228 overflow: hidden;
5229 background: #fefefe;
5230 padding: 4px 12px 6px 12px;
5231}
5232.card-info .section {
5233 text-transform: uppercase;
5234 color: #898989;
5235 font-size: 12px;
5236 margin-bottom: 1px;
5237}
5238.card-info .title {
5239 color: #363636;
5240 white-space: nowrap;
5241 overflow: hidden;
5242 text-overflow: ellipsis;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005243 padding-bottom: 5px;
Dirk Dougherty08032402014-02-15 10:14:35 -08005244 margin-bottom: -2px;
5245 font-size: 16px;
5246}
5247.card-info .description {
Dirk Dougherty08032402014-02-15 10:14:35 -08005248 overflow: hidden;
5249}
5250.card-info .description .text {
5251 color: #464646;
5252 font: 13px/15px Roboto Condensed;
5253 overflow: hidden;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005254 width:100%;
Dirk Dougherty08032402014-02-15 10:14:35 -08005255}
5256.card-info .description .util {
5257 position: absolute;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005258 right: 5px;
5259 bottom: 70px; /*-2px;*/
Dirk Dougherty08032402014-02-15 10:14:35 -08005260 opacity: 0;
5261 -webkit-transition: opacity 0.5s;
5262 -moz-transition: opacity 0.5s;
5263 -o-transition: opacity 0.5s;
5264 transition: opacity 0.5s;
5265}
5266.card-info.empty-desc .title {
5267 white-space: normal;
5268 overflow: visible;
5269}
5270.card-info.empty-desc .description {
5271 display: none;
5272}
Dirk Dougherty318fb972014-04-08 18:46:53 -07005273/* Truncate card summaries at bounding box and
5274 * and apply ellipsis at lower right */
5275.ellipsis {
5276 overflow: hidden;
5277 float:right;
5278 line-height: 15px;
5279 width:100%;
5280}
5281.resource-card-6x6 .card-info .description .teddddddxt {
5282 float:left;
5283 position:relative;
5284 margin-left:0;
5285}
5286.ellipsis:before {
5287 content:"";
5288 float: left;
5289 width: 5px;
5290 height:100%;
5291}
5292.ellipsis > *:first-child.text {
5293 float: right;
5294 width: 100% !important;
5295 margin-left: -5px;
5296}
5297.ellipsis:after {
5298 content: "\02026";
5299 height:17px;
5300 padding-bottom:4px;
5301
5302 box-sizing: content-box;
5303 -webkit-box-sizing: content-box;
5304 -moz-box-sizing: content-box;
5305
5306 float: right; position: relative;
5307 top: -16px; left: 100%;
5308 width: 4em; margin-left: -4em;
5309 padding-right: 5px;
5310
5311 background: -webkit-gradient(linear, left top, right top,
5312 from(rgba(255, 255, 255, 0)), to(white), color-stop(65%, white));
5313 background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5314 background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5315 background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5316 background: linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5317}
5318.ellipsis:after {
5319 font-style: normal; color: #aaa;
5320 font-size:13px;
5321 text-align: right;
5322}
Dirk Dougherty08032402014-02-15 10:14:35 -08005323
5324/* Flow Layout */
5325.resource-flow-layout {
5326 display: inline-block;
5327}
5328.resource-flow-layout .resource-card, .resource-flow-layout .resource-card-stack {
5329 float: left;
5330 position: relative;
5331}
5332.resource-flow-layout .resource-card-stack > .resource-card {
5333 margin-right: 0px !important;
5334}
5335.resource-flow-layout:after {
5336 content: ".";
5337 display: block;
5338 height: 0;
5339 clear: both;
5340 visibility: hidden;
5341}
5342
5343.resource-card:hover {
5344 cursor: pointer;
5345}
5346.resource-card:hover .card-bg:after {
5347 opacity: 0;
5348}
Dirk Dougherty318fb972014-04-08 18:46:53 -07005349/* disabled to make way for fade/ellipsis truncation,
5350 and the plusone moves up.
Dirk Dougherty08032402014-02-15 10:14:35 -08005351.resource-card:hover .card-info .description .text {
5352 padding-right: 70px;
Dirk Dougherty318fb972014-04-08 18:46:53 -07005353} */
Dirk Dougherty08032402014-02-15 10:14:35 -08005354.resource-card:hover .card-info .description .util {
5355 opacity: 1;
5356}
5357
5358/* Carousel Layout */
5359/* Carousel styles for landing page */
5360.resource-carousel-layout {
5361 margin: 20px 0 20px 0;
5362 position: relative;
5363 overflow: hidden;
5364}
5365.resource-carousel-layout .slideshow-prev, .resource-carousel-layout .slideshow-next {
5366 display: none;
5367}
5368.resource-carousel-layout .pagination {
5369 bottom: 0px;
5370}
5371.resource-carousel-layout .frame li {
5372 position: relative;
5373}
5374.resource-carousel-layout .frame li .card-bg {
5375 height: 300px;
5376}
5377.resource-carousel-layout .frame li .card-info {
5378 padding: 7px 15px 0px 15px;
5379 top: 300px;
5380}
5381.resource-carousel-layout .frame li .card-info .section {
5382 font-size: 13px;
5383 margin-bottom: 7px;
5384}
5385.resource-carousel-layout .frame li .card-info .title {
5386 font-size: 25px;
5387 margin-bottom: 2px;
5388}
5389.resource-carousel-layout .frame li .card-info .description {
5390 font-family: 15px/16px Roboto Condensed, sans-serif;
5391}
5392.resource-carousel-layout .frame li .card-info .description .text {
5393 height: 40px;
5394}
Dirk Dougherty318fb972014-04-08 18:46:53 -07005395.resource-carousel-layout .frame li .card-info .description .util {
5396 bottom:97px;
5397 right:4px;
5398}
Dirk Dougherty08032402014-02-15 10:14:35 -08005399
5400/* Stack Layout */
5401.resource-stack-layout {
5402 display: inline-block;
5403}
5404.resource-stack-layout .resource-card-stack {
5405 float: left;
5406 position: relative;
5407}
5408.resource-stack-layout .resource-card {
5409 margin-bottom: 20px;
5410 display: block;
5411 position: relative;
5412}
5413.resource-stack-layout .section-card-menu > .card-info .section, .resource-stack-layout .section-card > .card-info .title {
5414 /*text-transform: uppercase;*/
5415 color: #898989;
5416 font-size: 17px;
5417 line-height: 24px;
5418 margin-bottom: 6px;
5419}
5420.resource-stack-layout .section-card {
5421 height: 284px;
5422}
5423.resource-stack-layout .section-card > .card-bg {
5424 height: 192px;
5425}
5426.resource-stack-layout .section-card > .card-info {
5427 padding: 4px 12px 6px 12px;
5428 top: 192px;
5429}
5430.resource-stack-layout .section-card > .card-info .section {
5431 display: none;
5432}
5433.resource-stack-layout .section-card > .card-info .title {
5434 font-size: 17px;
5435 border-bottom: 1px solid #959595;
5436 padding-bottom: 0px;
5437}
5438.resource-stack-layout .section-card > .card-info .description {
5439 font-size: 13px;
5440 line-height: 15px;
5441}
5442.resource-stack-layout .section-card > .card-info .description .text {
5443 height: 30px;
5444}
5445.resource-stack-layout .related-card {
5446 height: 90px;
5447}
5448.resource-stack-layout .related-card > .card-bg {
5449 left: 0;
5450 top: 0;
5451 width: 90px;
5452 height: 100%;
5453 position: absolute;
5454 display: block;
5455}
5456.resource-stack-layout .related-card > .card-info {
5457 left: 90px;
5458 padding: 4px 12px 4px 12px;
5459}
5460.resource-stack-layout .related-card > .card-info .section {
5461 font-size: 12px;
5462 margin-bottom: 1px;
5463 display: none;
5464}
5465.resource-stack-layout .related-card > .card-info .title {
5466 font-size: 16px;
5467 margin-bottom: -2px;
5468 white-space: normal;
5469 overflow: visible;
5470 text-overflow: ellipsis;
5471}
5472.resource-stack-layout .related-card > .card-info .title:after {
5473 content: url(../images/link-out.png);
5474 display: block;
5475}
5476.resource-stack-layout .related-card > .card-info .description {
5477 display: none;
5478}
5479.resource-stack-layout .section-card-menu {
5480 /* Flexible height */
5481 display: block;
5482 height: auto;
5483 width: auto;
5484}
5485.resource-stack-layout .section-card-menu .card-bg {
5486 height: 155px;
5487 /* Flexible height */
5488 position: relative;
5489 display: inline-block;
5490 vertical-align: top;
5491}
5492.resource-stack-layout .section-card-menu .card-info {
5493 padding: 4px 12px 0px 12px;
5494 /* Flexible height */
5495 position: relative;
5496 left: auto;
5497 top: auto;
5498 right: auto;
5499 bottom: auto;
5500}
5501.resource-stack-layout .section-card-menu .card-info ul {
5502 list-style: none;
5503 margin: 0;
5504}
5505.resource-stack-layout .section-card-menu .card-info ul li {
5506 list-style: none;
5507 margin: 0;
5508 padding: 15px 0;
5509 border-top-width: 1px;
5510 border-top-style: solid;
5511 border-top-color: #959595;
5512}
5513.resource-stack-layout .section-card-menu .card-info ul li a, .resource-stack-layout .section-card-menu .card-info ul li a:focus, .resource-stack-layout .section-card-menu .card-info ul li a:link, .resource-stack-layout .section-card-menu .card-info ul li a:visited, .resource-stack-layout .section-card-menu .card-info ul li a:active, .resource-stack-layout .section-card-menu .card-info ul li a:hover {
5514 color: #363636 !important;
5515}
5516.resource-stack-layout .section-card-menu .card-info ul li:first-child {
5517 border-top: none;
5518}
5519.resource-stack-layout .section-card-menu .card-info ul li:hover .title:after {
5520 opacity: 1;
5521 -webkit-transition: opacity 0.5s;
5522 -moz-transition: opacity 0.5s;
5523 -o-transition: opacity 0.5s;
5524 transition: opacity 0.5s;
5525}
5526.resource-stack-layout .section-card-menu .card-info ul li:hover .description {
5527 max-height: 30px;
5528 opacity: 1;
5529 -webkit-transition: max-height 0.5s, opacity 1s;
5530 -moz-transition: max-height 0.5s, opacity 1s;
5531 -o-transition: max-height 0.5s, opacity 1s;
5532 transition: max-height 0.5s, opacity 1s;
5533}
5534.resource-stack-layout .section-card-menu .card-info .title {
5535 font-size: 16px;
5536 margin-bottom: -2px;
5537 position: relative;
5538}
5539.resource-stack-layout .section-card-menu .card-info .title:after {
5540 background: url(../images/stack-arrow-right.png);
5541 content: '';
5542 opacity: 0;
5543 -webkit-transition: opacity 0.25s;
5544 -moz-transition: opacity 0.25s;
5545 -o-transition: opacity 0.25s;
5546 transition: opacity 0.25s;
5547 position: absolute;
5548 right: 0px;
5549 top: 3px;
5550 width: 10px;
5551 height: 15px;
5552}
5553.resource-stack-layout .section-card-menu .card-info .title.more {
5554 text-transform: uppercase;
5555 color: #898989;
5556 display: inline-block;
5557}
5558.resource-stack-layout .section-card-menu .card-info .title.more:after {
5559 background: url(../images/stack-arrow-right.png);
5560 content: '';
5561 display: block;
5562 position: absolute;
5563 right: -20px;
5564 top: 3px;
5565 width: 10px;
5566 height: 15px;
5567}
5568.resource-stack-layout .section-card-menu .card-info .description {
5569 max-height: 0px;
5570 opacity: 0;
5571 overflow: hidden;
5572 font-size: 13px;
5573 line-height: 15px;
5574 /* Hover off */
5575 -webkit-transition: max-height 0.5s, opacity 0.5s;
5576 -moz-transition: max-height 0.5s, opacity 0.5s;
5577 -o-transition: max-height 0.5s, opacity 0.5s;
5578 transition: max-height 0.5s, opacity 0.5s;
5579}
5580.resource-stack-layout .section-card-menu .card-info .description .text {
5581 height: 30px;
5582}
5583.resource-stack-layout:after {
5584 content: ".";
5585 display: block;
5586 height: 0;
5587 clear: both;
5588 visibility: hidden;
5589}
5590
5591/* Generate the flow layout styles for a 3-column 16-col span */
5592.resource-flow-layout.col-16 {
5593 margin: 0 -14px 0 0;
5594 width: 954px;
5595}
5596.resource-flow-layout.col-16 .resource-card, .resource-flow-layout.col-16 .resource-card-stack {
5597 margin: 0 14px 20px 0;
5598}
5599.resource-flow-layout.col-16 .resource-card-row-stack-last {
5600 margin-bottom: 0px !important;
5601}
5602.resource-flow-layout.col-16 .resource-card-col-stack-last {
5603 margin-bottom: 0px !important;
5604}
5605.resource-flow-layout.col-16 .resource-card-3x6 {
5606 width: 145px;
5607 height: 284px;
5608}
5609.resource-flow-layout.col-16 .resource-card-3x12 {
5610 width: 145px;
5611 height: 588px;
5612}
5613.resource-flow-layout.col-16 .resource-card-3x18 {
5614 width: 145px;
5615 height: 892px;
5616}
5617.resource-flow-layout.col-16 .resource-card-6x6 {
5618 width: 304px;
5619 height: 284px;
5620}
5621.resource-flow-layout.col-16 .resource-card-6x12 {
5622 width: 304px;
5623 height: 588px;
5624}
5625.resource-flow-layout.col-16 .resource-card-6x18 {
5626 width: 304px;
5627 height: 892px;
5628}
5629.resource-flow-layout.col-16 .resource-card-9x6 {
5630 width: 463px;
5631 height: 284px;
5632}
5633.resource-flow-layout.col-16 .resource-card-9x12 {
5634 width: 463px;
5635 height: 588px;
5636}
5637.resource-flow-layout.col-16 .resource-card-9x18 {
5638 width: 463px;
5639 height: 892px;
5640}
5641.resource-flow-layout.col-16 .resource-card-12x6 {
5642 width: 622px;
5643 height: 284px;
5644}
5645.resource-flow-layout.col-16 .resource-card-12x12 {
5646 width: 622px;
5647 height: 588px;
5648}
5649.resource-flow-layout.col-16 .resource-card-12x18 {
5650 width: 622px;
5651 height: 892px;
5652}
5653.resource-flow-layout.col-16 .resource-card-15x6 {
5654 width: 781px;
5655 height: 284px;
5656}
5657.resource-flow-layout.col-16 .resource-card-15x12 {
5658 width: 781px;
5659 height: 588px;
5660}
5661.resource-flow-layout.col-16 .resource-card-15x18 {
5662 width: 781px;
5663 height: 892px;
5664}
5665.resource-flow-layout.col-16 .resource-card-18x6 {
5666 width: 940px;
5667 height: 284px;
5668}
5669.resource-flow-layout.col-16 .resource-card-18x12 {
5670 width: 940px;
5671 height: 420px;
5672}
5673.resource-flow-layout.col-16 .resource-card-18x18 {
5674 width: 940px;
5675 height: 892px;
5676}
5677.resource-flow-layout.col-16 .resource-card-3x2 {
5678 width: 145px;
5679 height: 95px;
5680}
5681.resource-flow-layout.col-16 .resource-card-3x2x3 {
5682 width: 145px;
5683 height: 90px;
5684 margin-bottom: 7px;
5685}
5686.resource-flow-layout.col-16 .resource-card-3x3 {
5687 width: 145px;
5688 height: 142px;
5689}
5690.resource-flow-layout.col-16 .resource-card-3x3x2 {
5691 width: 145px;
5692 height: 138px;
5693 margin-bottom: 8px;
5694}
5695.resource-flow-layout.col-16 .resource-card-6x2 {
5696 width: 304px;
5697 height: 95px;
5698}
5699.resource-flow-layout.col-16 .resource-card-6x2x3 {
5700 width: 304px;
5701 height: 90px;
5702 margin-bottom: 7px;
5703}
5704.resource-flow-layout.col-16 .resource-card-6x3 {
5705 width: 304px;
5706 height: 142px;
5707}
5708.resource-flow-layout.col-16 .resource-card-6x3x2 {
5709 width: 304px;
5710 height: 138px;
5711 margin-bottom: 8px;
5712}
5713.resource-flow-layout.col-16 .resource-card-9x2 {
5714 width: 463px;
5715 height: 95px;
5716}
5717.resource-flow-layout.col-16 .resource-card-9x2x3 {
5718 width: 463px;
5719 height: 90px;
5720 margin-bottom: 7px;
5721}
5722.resource-flow-layout.col-16 .resource-card-9x3 {
5723 width: 463px;
5724 height: 142px;
5725}
5726.resource-flow-layout.col-16 .resource-card-9x3x2 {
5727 width: 463px;
5728 height: 138px;
5729 margin-bottom: 8px;
5730}
5731.resource-flow-layout.col-16 .resource-card-12x2 {
5732 width: 622px;
5733 height: 95px;
5734}
5735.resource-flow-layout.col-16 .resource-card-12x2x3 {
5736 width: 622px;
5737 height: 90px;
5738 margin-bottom: 7px;
5739}
5740.resource-flow-layout.col-16 .resource-card-12x3 {
5741 width: 622px;
5742 height: 142px;
5743}
5744.resource-flow-layout.col-16 .resource-card-12x3x2 {
5745 width: 622px;
5746 height: 138px;
5747 margin-bottom: 8px;
5748}
5749.resource-flow-layout.col-16 .resource-card-15x2 {
5750 width: 781px;
5751 height: 95px;
5752}
5753.resource-flow-layout.col-16 .resource-card-15x2x3 {
5754 width: 781px;
5755 height: 90px;
5756 margin-bottom: 7px;
5757}
5758.resource-flow-layout.col-16 .resource-card-15x3 {
5759 width: 781px;
5760 height: 142px;
5761}
5762.resource-flow-layout.col-16 .resource-card-15x3x2 {
5763 width: 781px;
5764 height: 138px;
5765 margin-bottom: 8px;
5766}
5767.resource-flow-layout.col-16 .resource-card-18x2 {
5768 width: 940px;
5769 height: 95px;
5770}
5771.resource-flow-layout.col-16 .resource-card-18x2x3 {
5772 width: 940px;
5773 height: 90px;
5774 margin-bottom: 7px;
5775}
5776.resource-flow-layout.col-16 .resource-card-18x3 {
5777 width: 940px;
5778 height: 142px;
5779}
5780.resource-flow-layout.col-16 .resource-card-18x3x2 {
5781 width: 940px;
5782 height: 138px;
5783 margin-bottom: 8px;
5784}
5785
5786/* Generate the flow layout styles for a 3-column 16-col span */
5787.resource-flow-layout.col-12 {
5788 margin: 0 -14px 0 0;
5789 width: 714px;
5790}
5791
5792.resource-flow-layout.col-12 .resource-card, .resource-flow-layout.col-12 .resource-card-stack {
5793 margin: 0 14px 20px 0;
5794}
5795.resource-flow-layout.col-12 .resource-card-row-stack-last {
5796 margin-bottom: 0px !important;
5797}
5798.resource-flow-layout.col-12 .resource-card-col-stack-last {
5799 margin-bottom: 0px !important;
5800}
5801.resource-flow-layout.col-12 .resource-card-3x6 {
5802 width: 105px;
5803 height: 284px;
5804}
5805.resource-flow-layout.col-12 .resource-card-3x12 {
5806 width: 105px;
5807 height: 588px;
5808}
5809.resource-flow-layout.col-12 .resource-card-3x18 {
5810 width: 105px;
5811 height: 892px;
5812}
5813.resource-flow-layout.col-12 .resource-card-6x6 {
5814 width: 224px;
5815 height: 284px;
5816}
5817.resource-flow-layout.col-12 .resource-card-6x12 {
5818 width: 224px;
5819 height: 588px;
5820}
5821.resource-flow-layout.col-12 .resource-card-6x18 {
5822 width: 224px;
5823 height: 892px;
5824}
5825.resource-flow-layout.col-12 .resource-card-9x6 {
5826 width: 343px;
5827 height: 284px;
5828}
5829.resource-flow-layout.col-12 .resource-card-9x12 {
5830 width: 343px;
5831 height: 588px;
5832}
5833.resource-flow-layout.col-12 .resource-card-9x18 {
5834 width: 343px;
5835 height: 892px;
5836}
5837.resource-flow-layout.col-12 .resource-card-12x6 {
5838 width: 462px;
5839 height: 284px;
5840}
5841.resource-flow-layout.col-12 .resource-card-12x12 {
5842 width: 462px;
5843 height: 588px;
5844}
5845.resource-flow-layout.col-12 .resource-card-12x18 {
5846 width: 462px;
5847 height: 892px;
5848}
5849.resource-flow-layout.col-12 .resource-card-15x6 {
5850 width: 581px;
5851 height: 284px;
5852}
5853.resource-flow-layout.col-12 .resource-card-15x12 {
5854 width: 581px;
5855 height: 588px;
5856}
5857.resource-flow-layout.col-12 .resource-card-15x18 {
5858 width: 581px;
5859 height: 892px;
5860}
5861.resource-flow-layout.col-12 .resource-card-18x6 {
5862 width: 700px;
5863 height: 284px;
5864}
5865.resource-flow-layout.col-12 .resource-card-18x12 {
5866 width: 700px;
5867 height: 420px;
5868}
5869.resource-flow-layout.col-12 .resource-card-18x18 {
5870 width: 700px;
5871 height: 892px;
5872}
5873.resource-flow-layout.col-12 .resource-card-3x2 {
5874 width: 105px;
5875 height: 95px;
5876}
5877.resource-flow-layout.col-12 .resource-card-3x2x3 {
5878 width: 105px;
5879 height: 90px;
5880 margin-bottom: 7px;
5881}
5882.resource-flow-layout.col-12 .resource-card-3x3 {
5883 width: 105px;
5884 height: 142px;
5885}
5886.resource-flow-layout.col-12 .resource-card-3x3x2 {
5887 width: 105px;
5888 height: 138px;
5889 margin-bottom: 8px;
5890}
5891.resource-flow-layout.col-12 .resource-card-6x2 {
5892 width: 224px;
5893 height: 95px;
5894}
5895.resource-flow-layout.col-12 .resource-card-6x2x3 {
5896 width: 224px;
5897 height: 90px;
5898 margin-bottom: 7px;
5899}
5900.resource-flow-layout.col-12 .resource-card-6x3 {
5901 width: 224px;
5902 height: 142px;
5903}
5904.resource-flow-layout.col-12 .resource-card-6x3x2 {
5905 width: 224px;
5906 height: 138px;
5907 margin-bottom: 8px;
5908}
5909.resource-flow-layout.col-12 .resource-card-9x2 {
5910 width: 343px;
5911 height: 95px;
5912}
5913.resource-flow-layout.col-12 .resource-card-9x2x3 {
5914 width: 343px;
5915 height: 90px;
5916 margin-bottom: 7px;
5917}
5918.resource-flow-layout.col-12 .resource-card-9x3 {
5919 width: 343px;
5920 height: 142px;
5921}
5922.resource-flow-layout.col-12 .resource-card-9x3x2 {
5923 width: 343px;
5924 height: 138px;
5925 margin-bottom: 8px;
5926}
5927.resource-flow-layout.col-12 .resource-card-12x2 {
5928 width: 462px;
5929 height: 95px;
5930}
5931.resource-flow-layout.col-12 .resource-card-12x2x3 {
5932 width: 462px;
5933 height: 90px;
5934 margin-bottom: 7px;
5935}
5936.resource-flow-layout.col-12 .resource-card-12x3 {
5937 width: 462px;
5938 height: 142px;
5939}
5940.resource-flow-layout.col-12 .resource-card-12x3x2 {
5941 width: 462px;
5942 height: 138px;
5943 margin-bottom: 8px;
5944}
5945.resource-flow-layout.col-12 .resource-card-15x2 {
5946 width: 581px;
5947 height: 95px;
5948}
5949.resource-flow-layout.col-12 .resource-card-15x2x3 {
5950 width: 581px;
5951 height: 90px;
5952 margin-bottom: 7px;
5953}
5954.resource-flow-layout.col-12 .resource-card-15x3 {
5955 width: 581px;
5956 height: 142px;
5957}
5958.resource-flow-layout.col-12 .resource-card-15x3x2 {
5959 width: 581px;
5960 height: 138px;
5961 margin-bottom: 8px;
5962}
5963.resource-flow-layout.col-12 .resource-card-18x2 {
5964 width: 700px;
5965 height: 95px;
5966}
5967.resource-flow-layout.col-12 .resource-card-18x2x3 {
5968 width: 700px;
5969 height: 90px;
5970 margin-bottom: 7px;
5971}
5972.resource-flow-layout.col-12 .resource-card-18x3 {
5973 width: 700px;
5974 height: 142px;
5975}
5976.resource-flow-layout.col-12 .resource-card-18x3x2 {
5977 width: 700px;
5978 height: 138px;
5979 margin-bottom: 8px;
5980}
5981
5982/* Generate the flow layout styles for a 3-column 13-col span */
5983
5984.resource-flow-layout.col-13 {
5985 margin: 0 -14px 0 0;
5986 width: 774px;
5987}
5988.resource-flow-layout.col-13 .resource-card, .resource-flow-layout.col-13 .resource-card-stack {
5989 margin: 0 14px 20px 0;
5990}
5991.resource-flow-layout.col-13 .resource-card-row-stack-last {
5992 margin-bottom: 0px !important;
5993}
5994.resource-flow-layout.col-13 .resource-card-col-stack-last {
5995 margin-bottom: 0px !important;
5996}
5997.resource-flow-layout.col-13 .resource-card-3x6 {
5998 width: 115px;
5999 height: 284px;
6000}
6001.resource-flow-layout.col-13 .resource-card-3x12 {
6002 width: 115px;
6003 height: 588px;
6004}
6005.resource-flow-layout.col-13 .resource-card-3x18 {
6006 width: 115px;
6007 height: 892px;
6008}
6009.resource-flow-layout.col-13 .resource-card-6x6 {
6010 width: 244px;
6011 height: 284px;
6012}
6013.resource-flow-layout.col-13 .resource-card-6x12 {
6014 width: 244px;
6015 height: 588px;
6016}
6017.resource-flow-layout.col-13 .resource-card-6x18 {
6018 width: 244px;
6019 height: 892px;
6020}
6021.resource-flow-layout.col-13 .resource-card-9x6 {
6022 width: 373px;
6023 height: 284px;
6024}
6025.resource-flow-layout.col-13 .resource-card-9x12 {
6026 width: 373px;
6027 height: 588px;
6028}
6029.resource-flow-layout.col-13 .resource-card-9x18 {
6030 width: 373px;
6031 height: 892px;
6032}
6033.resource-flow-layout.col-13 .resource-card-12x6 {
6034 width: 502px;
6035 height: 284px;
6036}
6037.resource-flow-layout.col-13 .resource-card-12x12 {
6038 width: 502px;
6039 height: 588px;
6040}
6041.resource-flow-layout.col-13 .resource-card-12x18 {
6042 width: 502px;
6043 height: 892px;
6044}
6045.resource-flow-layout.col-13 .resource-card-15x6 {
6046 width: 631px;
6047 height: 284px;
6048}
6049.resource-flow-layout.col-13 .resource-card-15x12 {
6050 width: 631px;
6051 height: 588px;
6052}
6053.resource-flow-layout.col-13 .resource-card-15x18 {
6054 width: 631px;
6055 height: 892px;
6056}
6057.resource-flow-layout.col-13 .resource-card-18x6 {
6058 width: 760px;
6059 height: 284px;
6060}
6061.resource-flow-layout.col-13 .resource-card-18x12 {
6062 width: 760px;
6063 height: 420px;
6064}
6065.resource-flow-layout.col-13 .resource-card-18x18 {
6066 width: 760px;
6067 height: 892px;
6068}
6069.resource-flow-layout.col-13 .resource-card-3x2 {
6070 width: 115px;
6071 height: 95px;
6072}
6073.resource-flow-layout.col-13 .resource-card-3x2x3 {
6074 width: 115px;
6075 height: 90px;
6076 margin-bottom: 7px;
6077}
6078.resource-flow-layout.col-13 .resource-card-3x3 {
6079 width: 115px;
6080 height: 142px;
6081}
6082.resource-flow-layout.col-13 .resource-card-3x3x2 {
6083 width: 115px;
6084 height: 138px;
6085 margin-bottom: 8px;
6086}
6087.resource-flow-layout.col-13 .resource-card-6x2 {
6088 width: 244px;
6089 height: 95px;
6090}
6091.resource-flow-layout.col-13 .resource-card-6x2x3 {
6092 width: 244px;
6093 height: 90px;
6094 margin-bottom: 7px;
6095}
6096.resource-flow-layout.col-13 .resource-card-6x3 {
6097 width: 244px;
6098 height: 142px;
6099}
6100.resource-flow-layout.col-13 .resource-card-6x3x2 {
6101 width: 244px;
6102 height: 138px;
6103 margin-bottom: 8px;
6104}
6105.resource-flow-layout.col-13 .resource-card-9x2 {
6106 width: 373px;
6107 height: 95px;
6108}
6109.resource-flow-layout.col-13 .resource-card-9x2x3 {
6110 width: 373px;
6111 height: 90px;
6112 margin-bottom: 7px;
6113}
6114.resource-flow-layout.col-13 .resource-card-9x3 {
6115 width: 373px;
6116 height: 142px;
6117}
6118.resource-flow-layout.col-13 .resource-card-9x3x2 {
6119 width: 373px;
6120 height: 138px;
6121 margin-bottom: 8px;
6122}
6123.resource-flow-layout.col-13 .resource-card-12x2 {
6124 width: 502px;
6125 height: 95px;
6126}
6127.resource-flow-layout.col-13 .resource-card-12x2x3 {
6128 width: 502px;
6129 height: 90px;
6130 margin-bottom: 7px;
6131}
6132.resource-flow-layout.col-13 .resource-card-12x3 {
6133 width: 502px;
6134 height: 142px;
6135}
6136.resource-flow-layout.col-13 .resource-card-12x3x2 {
6137 width: 502px;
6138 height: 138px;
6139 margin-bottom: 8px;
6140}
6141.resource-flow-layout.col-13 .resource-card-15x2 {
6142 width: 631px;
6143 height: 95px;
6144}
6145.resource-flow-layout.col-13 .resource-card-15x2x3 {
6146 width: 631px;
6147 height: 90px;
6148 margin-bottom: 7px;
6149}
6150.resource-flow-layout.col-13 .resource-card-15x3 {
6151 width: 631px;
6152 height: 142px;
6153}
6154.resource-flow-layout.col-13 .resource-card-15x3x2 {
6155 width: 631px;
6156 height: 138px;
6157 margin-bottom: 8px;
6158}
6159.resource-flow-layout.col-13 .resource-card-18x2 {
6160 width: 760px;
6161 height: 95px;
6162}
6163.resource-flow-layout.col-13 .resource-card-18x2x3 {
6164 width: 760px;
6165 height: 90px;
6166 margin-bottom: 7px;
6167}
6168.resource-flow-layout.col-13 .resource-card-18x3 {
6169 width: 760px;
6170 height: 142px;
6171}
6172.resource-flow-layout.col-13 .resource-card-18x3x2 {
6173 width: 760px;
6174 height: 138px;
6175 margin-bottom: 8px;
6176}
6177
6178/*
6179 The following are styles for cards in the flowlayout above, styled by the number of rows they span
6180*/
6181/* Single row items, might be simpler to just apply a class */
6182.resource-card-3x6 > .card-bg, .resource-card-6x6 > .card-bg, .resource-card-9x6 > .card-bg, .resource-card-12x6 > .card-bg, .resource-card-15x6 > .card-bg, .resource-card-18x6 > .card-bg {
6183 height: 192px;
6184}
6185.resource-card-3x6 > .card-info, .resource-card-6x6 > .card-info, .resource-card-9x6 > .card-info, .resource-card-12x6 > .card-info, .resource-card-15x6 > .card-info, .resource-card-18x6 > .card-info {
6186 padding: 4px 12px 6px 12px;
6187 top: 192px;
6188}
6189.resource-card-3x6 > .card-info .section, .resource-card-6x6 > .card-info .section, .resource-card-9x6 > .card-info .section, .resource-card-12x6 > .card-info .section, .resource-card-15x6 > .card-info .section, .resource-card-18x6 > .card-info .section {
6190 font-size: 12px;
6191 margin-bottom: 1px;
6192}
6193.resource-card-3x6 > .card-info .title, .resource-card-6x6 > .card-info .title, .resource-card-9x6 > .card-info .title, .resource-card-12x6 > .card-info .title, .resource-card-15x6 > .card-info .title, .resource-card-18x6 > .card-info .title {
6194 font-size: 16px;
6195 margin-bottom: -2px;
6196}
6197.resource-card-3x6 > .card-info .description, .resource-card-6x6 > .card-info .description, .resource-card-9x6 > .card-info .description, .resource-card-12x6 > .card-info .description, .resource-card-15x6 > .card-info .description, .resource-card-18x6 > .card-info .description {
6198 font-size: 13px;
6199 line-height: 15px;
6200}
6201.resource-card-3x6 > .card-info .description .text, .resource-card-6x6 > .card-info .description .text, .resource-card-9x6 > .card-info .description .text, .resource-card-12x6 > .card-info .description .text, .resource-card-15x6 > .card-info .description .text, .resource-card-18x6 > .card-info .description .text {
6202 height: 30px;
6203}
6204
6205/* Double row items */
6206.resource-card-3x12 > .card-bg, .resource-card-6x12 > .card-bg, .resource-card-9x12 > .card-bg, .resource-card-12x12 > .card-bg, .resource-card-15x12 > .card-bg, .resource-card-18x12 > .card-bg {
6207 height: 320px;
6208}
6209.resource-card-3x12 > .card-info, .resource-card-6x12 > .card-info, .resource-card-9x12 > .card-info, .resource-card-12x12 > .card-info, .resource-card-15x12 > .card-info, .resource-card-18x12 > .card-info {
6210 padding: 4px 12px 6px 12px;
6211 top: 320px;
6212}
6213.resource-card-3x12 > .card-info .section, .resource-card-6x12 > .card-info .section, .resource-card-9x12 > .card-info .section, .resource-card-12x12 > .card-info .section, .resource-card-15x12 > .card-info .section, .resource-card-18x12 > .card-info .section {
6214 font-size: 12px;
6215 margin-bottom: 1px;
6216}
6217.resource-card-3x12 > .card-info .title, .resource-card-6x12 > .card-info .title, .resource-card-9x12 > .card-info .title, .resource-card-12x12 > .card-info .title, .resource-card-15x12 > .card-info .title, .resource-card-18x12 > .card-info .title {
6218 font-size: 16px;
6219 margin-bottom: -2px;
6220 white-space: normal;
6221}
6222.resource-card-3x12 > .card-info .description, .resource-card-6x12 > .card-info .description, .resource-card-9x12 > .card-info .description, .resource-card-12x12 > .card-info .description, .resource-card-15x12 > .card-info .description, .resource-card-18x12 > .card-info .description {
6223 font-size: 13px;
6224 line-height: 15px;
6225}
6226
6227/* 1/3 row items */
6228.resource-card-3x2 > .card-bg, .resource-card-6x2 > .card-bg, .resource-card-9x2 > .card-bg, .resource-card-12x2 > .card-bg, .resource-card-15x2 > .card-bg, .resource-card-18x2 > .card-bg {
6229 left: 0;
6230 top: 0;
6231 width: 90px;
6232 height: 100%;
6233 position: absolute;
6234 display: block;
6235}
6236.resource-card-3x2 > .card-info, .resource-card-6x2 > .card-info, .resource-card-9x2 > .card-info, .resource-card-12x2 > .card-info, .resource-card-15x2 > .card-info, .resource-card-18x2 > .card-info {
6237 left: 90px;
6238 padding: 4px 12px 4px 12px;
6239 height: 80px;
6240 overflow: hidden;
6241}
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006242.resource-card-3x2 > .card-info .section, .resource-card-6x2 > .card-info .section, .resource-card-6x3 > .card-info .section, .resource-card-9x2 > .card-info .section, .resource-card-12x2 > .card-info .section, .resource-card-15x2 > .card-info .section, .resource-card-18x2 > .card-info .section {
Dirk Dougherty08032402014-02-15 10:14:35 -08006243 font-size: 12px;
6244 margin-bottom: 1px;
6245 /* display: none; */
6246}
6247.resource-card-3x2 > .card-info .title, .resource-card-6x2 > .card-info .title, .resource-card-9x2 > .card-info .title, .resource-card-12x2 > .card-info .title, .resource-card-15x2 > .card-info .title, .resource-card-18x2 > .card-info .title {
6248 font-size: 16px;
6249 margin-bottom: -2px;
6250 white-space: normal;
6251 overflow: visible;
6252 text-overflow: ellipsis;
6253}
6254.resource-card-3x2 > .card-info .title:after, .resource-card-6x2 > .card-info .title:after, .resource-card-9x2 > .card-info .title:after, .resource-card-12x2 > .card-info .title:after, .resource-card-15x2 > .card-info .title:after, .resource-card-18x2 > .card-info .title:after {
6255 /* content: url(../images/link-out.png); */
6256 display: block;
6257}
6258.resource-card-3x2 > .card-info .description, .resource-card-6x2 > .card-info .description, .resource-card-9x2 > .card-info .description, .resource-card-12x2 > .card-info .description, .resource-card-15x2 > .card-info .description, .resource-card-18x2 > .card-info .description {
6259 display: none;
6260}
6261
6262/* 1/2 row items */
6263.resource-card-3x3 > .card-bg, .resource-card-6x3 > .card-bg, .resource-card-9x3 > .card-bg, .resource-card-12x3 > .card-bg, .resource-card-15x3 > .card-bg, .resource-card-18x3 > .card-bg {
6264 left: 0;
6265 top: 0;
6266 width: 90px;
6267 height: 100%;
6268 position: absolute;
6269 display: block;
6270}
6271.resource-card-3x3 > .card-info, .resource-card-6x3 > .card-info, .resource-card-9x3 > .card-info, .resource-card-12x3 > .card-info, .resource-card-15x3 > .card-info, .resource-card-18x3 > .card-info {
6272 left: 90px;
6273 padding: 4px 12px 0px 12px;
6274}
6275.resource-card-3x3 > .card-info .section, .resource-card-6x3 > .card-info .section, .resource-card-9x3 > .card-info .section, .resource-card-12x3 > .card-info .section, .resource-card-15x3 > .card-info .section, .resource-card-18x3 > .card-info .section {
6276 font-size: 12px;
6277 margin-bottom: 1px;
6278 display: none;
6279}
6280.resource-card-3x3 > .card-info .title, .resource-card-6x3 > .card-info .title, .resource-card-9x3 > .card-info .title, .resource-card-12x3 > .card-info .title, .resource-card-15x3 > .card-info .title, .resource-card-18x3 > .card-info .title {
6281 font-size: 16px;
6282 margin-bottom: -2px;
6283 white-space: normal;
6284 overflow: visible;
6285}
6286.resource-card-3x3 > .card-info .description .text, .resource-card-6x3 > .card-info .description .text, .resource-card-9x3 > .card-info .description .text, .resource-card-12x3 > .card-info .description .text, .resource-card-15x3 > .card-info .description .text, .resource-card-18x3 > .card-info .description .text {
6287 font-size: 12px;
6288 line-height: 15px;
6289 padding-right: 0px !important;
6290 height: 80px;
6291}
6292.resource-card-3x3 > .card-info .description .util, .resource-card-6x3 > .card-info .description .util, .resource-card-9x3 > .card-info .description .util, .resource-card-12x3 > .card-info .description .util, .resource-card-15x3 > .card-info .description .util, .resource-card-18x3 > .card-info .description .util {
6293 display: none;
6294}
Dirk Dougherty318fb972014-04-08 18:46:53 -07006295/* placement of plusone */
6296.resource-card-6x12 > .card-info .description .util, .resource-card-9x12 > .card-info .description .util, .resource-card-12x12 > .card-info .description .util, .resource-card-15x12 > .card-info .description .util {
6297 bottom:2px;
6298}
6299.resource-card-18x12 > .card-info .description .util {
6300 bottom:2px;
6301}
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006302/* Overrides for col-16 6x6 cards linking to local content on landing pages.
6303 Suppresses "section" and puts the title above a hairline rule. */
6304.landing .card-info .section, .resource-flow-layout.col-16.landing .resource-card-9x6 .card-info .section {
6305 display:none;
6306}
6307.landing .card-info .title {
6308 color: #898989;
6309 font-size: 17px;
6310 line-height: 24px;
6311 margin-bottom: 6px;
6312 border-bottom: 1px solid #959595;
6313 padding-bottom: 0px;
6314}
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006315.landing .card-info .description {
6316 font-size: 13px;
6317 line-height: 15px;
6318}
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006319.landing .card-info .description .text {
6320height:30px;
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006321}
Dirk Dougherty318fb972014-04-08 18:46:53 -07006322.landing .resource-card-6x6 > .card-info .description .util, .landing .resource-card-9x6 > .card-info .description .util {
6323 bottom:2px;
6324}
Dirk Dougherty08032402014-02-15 10:14:35 -08006325/*
6326 Generate a resource stack layout for a 3 column widget spanning 16 grid cols
6327*/
6328.resource-stack-layout.col-16 {
6329 margin: 0 -14px 0 0;
6330 width: 954px;
6331}
6332.resource-stack-layout.col-16 .resource-card-stack {
6333 margin: 0 14px 0 0;
6334 width: 304px;
6335}
6336
6337/* Example of card menu tinting */
6338.resource-widget[data-section=distribute\/tools] .section-card-menu
6339.card-bg:after {
6340 background: rgba(126, 55, 148, 0.4) !important;
6341}
6342.resource-widget[data-section=distribute\/tools] .section-card-menu
6343.card-section-icon .icon {
6344 background-color: #7e3794 !important;
6345}
6346.resource-widget[data-section=distribute\/tools] .section-card-menu
6347.card-info ul li {
6348 border-top-color: #7e3794 !important;
6349}
6350
6351/* tinting for stacks */
6352
6353div.jd-descr > .resource-widget[data-section=distribute\/tools]
6354.section-card-menu .card-info ul li {
6355 border-top-color: #7e3794 !important;
Dirk Dougherty46b443a2014-04-06 15:27:33 -07006356}