blob: 79a6c494bad46929e521bc7be6dd841b0fd7cdeb [file] [log] [blame]
Scott Maine4d8f1b2012-06-21 18:03:05 -07001/* color definitions */
2/* 16 column layout */
3/* clearfix idiom */
4/* common mixins */
5/* page layout + top-level styles */
Scott Maine4d8f1b2012-06-21 18:03:05 -07006::selection {
7 background-color: #0099cc;
8 color: #fff; }
Scott Mainb7f96372013-02-07 16:56:43 -08009::-webkit-selection {
10 background-color: #0099cc;
11 color: #fff; }
12::-moz-selection {
13 background-color: #0099cc;
14 color: #fff; }
Scott Maine4d8f1b2012-06-21 18:03:05 -070015
16html, body {
17 height: 100%;
18 margin: 0;
19 padding: 0;
20 background-color:#F9F9F9;
21 -webkit-font-smoothing: antialiased;
22 /* prevent subpixel antialiasing, which thickens the text */
23 /* text-rendering: optimizeLegibility; */
24 /* turned off ligatures due to bug 5945455 */ }
25
26body {
Scott Main9ada2262012-06-23 14:59:36 -070027 color: #222;
Scott Main6a7a66b2012-06-23 11:20:48 -070028 font: 14px/19px Roboto, sans-serif;
Scott Maine4d8f1b2012-06-21 18:03:05 -070029 font-weight: 400;
30 letter-spacing:.1;
31 padding:0 10px; }
32
33#page-container {
34 width: 940px;
35 margin: 0 40px; }
36
37#page-header {
38 height: 80px;
39 margin-bottom: 20px;
40 font-size: 48px;
41 line-height: 48px;
42 font-weight: 100;
43 padding-left: 10px; }
44 #page-header a {
45 display: block;
46 position: relative;
47 top: 20px;
48 text-decoration: none;
49 color: #555555 !important; }
50
51#main-row {
52 display: inline-block; }
53 #main-row:after {
54 content: ".";
55 display: block;
56 height: 0;
57 clear: both;
58 visibility: hidden; }
59 * html #main-row {
60 height: 1px; }
61
62#page-footer {
63 margin-left: 190px;
64 margin-top: 80px;
65 color: #999999;
66 padding-bottom: 40px;
67 font-size: 12px;
68 line-height: 15px; }
69 #page-footer a {
70 color: #777777; }
71 #page-footer #copyright {
72 margin-bottom: 10px; }
73
74#nav-container {
75 width: 160px;
76 min-height: 10px;
77 margin-right: 20px;
78 float: left; }
79
80#nav {
81 margin:0;
82 padding:0 0 30px;
83}
84
85#side-nav {
86 min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
87 margin-bottom:1px;
88}
89#devdoc-nav {
90 outline:none;
91 width:auto;
92 margin: 20px 0 0; }
Scott Main98a2a712013-07-17 13:15:04 -070093
Scott Maine4d8f1b2012-06-21 18:03:05 -070094#devdoc-nav h2 {
95 border:0;
96}
97
98#devdoc-nav.fixed {
99 position: fixed;
100 margin:0;
101 top: 20px; }
Scott Main98a2a712013-07-17 13:15:04 -0700102
Scott Main6b2dc272012-09-11 14:27:34 -0700103#devdoc-nav span.small {
104 font-size:12px;
105 font-weight:normal;
106}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700107
108#content {
109 width: 760px;
110 float: left; }
111
112a:hover,
113acronym:hover {
114 color: #7aa1b0 !important; }
115
116a:focus,
117a:active {
118 color: #33b5e5 !important; }
Scott Main98a2a712013-07-17 13:15:04 -0700119
Scott Maind4cb7832012-11-28 11:10:09 -0800120a.external-link {
121 background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
122 padding-right:16px;
123}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700124
125img {
126 border: none; }
127#jd-content img {
128 margin-bottom:15px;
129}
130
131ul {
132 margin: 0;
133 padding: 0; }
134
135strong {
136 font-weight: 500; }
137
138em {
139 font-style: italic; }
140
Scott Maindb3678b2012-10-23 14:13:41 -0700141acronym,
142.tooltip-link {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700143 border-bottom: 1px dotted #555555;
144 cursor: help; }
145
Scott Maindb3678b2012-10-23 14:13:41 -0700146acronym:hover,
147.tooltip-link:hover {
148 color: #7aa1b0;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700149 border-bottom-color: #7aa1b0; }
150
151img.with-shadow,
152video.with-shadow {
153 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
154
155/* disclosures mixin */
156/* content layout */
157.layout-content-row {
158 display: inline-block;
159 margin-bottom: 10px; }
160 .layout-content-row:after {
161 content: ".";
162 display: block;
163 height: 0;
164 clear: both;
165 visibility: hidden; }
166 * html .layout-content-row {
167 height: 1px; }
168
169.layout-content-col {
170 float: left;
171 margin-left: 20px; }
172 .layout-content-col:first-child {
173 margin-left: 0; }
174 .layout-content-col h3,
175 .layout-content-col h4 {
176 margin-top:0; }
177
178.layout-content-col.span-1 {
179 width: 40px; }
180
181.layout-content-col.span-2 {
182 width: 100px; }
183
184.layout-content-col.span-3 {
185 width: 160px; }
186
187.layout-content-col.span-4 {
188 width: 220px; }
189
190.layout-content-col.span-5 {
191 width: 280px; }
192
193.layout-content-col.span-6 {
194 width: 340px; }
195
196.layout-content-col.span-7 {
197 width: 400px; }
198
199.layout-content-col.span-8 {
200 width: 460px; }
201
202.layout-content-col.span-9 {
203 width: 520px; }
204
205.layout-content-col.span-10 {
206 width: 580px; }
207
208.layout-content-col.span-11 {
209 width: 640px; }
210
211.layout-content-col.span-12 {
212 width: 700px; }
213
214.layout-content-col.span-13 {
215 width: 760px; }
216
217.vspace.size-1 {
218 height: 10px; }
219
220.vspace.size-2 {
221 height: 20px; }
222
223.vspace.size-3 {
224 height: 30px; }
225
226.vspace.size-4 {
227 height: 40px; }
228
229.vspace.size-5 {
230 height: 50px; }
231
232.vspace.size-6 {
233 height: 60px; }
234
235.vspace.size-7 {
236 height: 70px; }
237
238.vspace.size-8 {
239 height: 80px; }
240
241.vspace.size-9 {
242 height: 90px; }
243
244.vspace.size-10 {
245 height: 100px; }
246
247.vspace.size-11 {
248 height: 110px; }
249
250.vspace.size-12 {
251 height: 120px; }
252
253.vspace.size-13 {
254 height: 130px; }
255
256.vspace.size-14 {
257 height: 140px; }
258
259.vspace.size-15 {
260 height: 150px; }
261
262.vspace.size-16 {
263 height: 160px; }
264
265/* nav */
266#nav {
267 /* section header divs */
268 /* expanded section header divs */
269 /* sublinks */ }
270 #nav li {
271 list-style-type: none;
272 font-size: 14px;
273 margin:0;
274 padding:0;
275 line-height: 15px; }
276 #nav a {
277 color: #555555;
Scott Mainab4daf42012-11-30 11:27:17 -0800278 text-decoration: none;
279 word-wrap:break-word; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700280 #nav .nav-section-header {
281 position: relative;
282 margin-bottom: 1px;
283 padding: 0 30px 0 0; }
284 #nav li.selected a, #nav li.selected > .nav-section-header > a {
285 color: #09C;
286 }
287 #nav li.selected ul li a {
288 /* don't highlight child items */
289 color: #555555; }
290 #nav .nav-section .nav-section .nav-section-header {
291 /* no white line between second level sections */
292 margin-bottom: 0; }
293 /* section header links */
294 #nav > li > div > a {
295 display: block;
296 color: #333333;
297 font-weight: 500;
298 padding: 10px 0 10px 10px; }
299 #nav .nav-section-header:after {
300 content: '';
301 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
302 width: 34px;
303 height: 34px;
304 display: block;
305 position: absolute;
306 top: 0;
307 right: 0; }
Scott Mainad08f072013-08-20 16:49:57 -0700308 #nav .nav-section-header.empty {
309 padding:0; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700310 #nav .nav-section-header.empty:after {
311 display: none; }
312 /* nested nav headers */
313 #nav .nav-section .nav-section {
314 position: relative;
315 padding: 0;
316 margin: 0; }
317 #nav .nav-section li a {
318 /* first gen child (2nd level li) */
319 display:block;
320 font-weight: normal;
321 text-transform: none;
322 padding: 7px 5px 7px 10px;
323 }
324 #nav .nav-section li li a {
325 /* second gen child (3rd level li) */
326 padding: 5px 5px 5px 10px;
327 }
328 #nav li.expanded .nav-section-header {
329 background:#e9e9e9;
330 background: rgba(0, 0, 0, 0.05); }
331 #nav li.expanded li .nav-section-header {
332 background: transparent; }
333 #nav li.expanded li ul {
334 /* 3rd level ul */
Scott Main502c9392012-11-27 15:00:40 -0800335 padding:0 0 0 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700336 }
337 #nav li.expanded > .nav-section-header:after {
338 content: '';
339 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
340 width: 34px;
341 height: 34px; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800342 #nav li.expanded li ul.tree-list-children {
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -0700343 padding: 0;
Scott Mainac71b2b2012-11-30 14:40:58 -0800344 }
345 #nav li.expanded li ul.tree-list-children .tree-list-children {
Scott Main98a2a712013-07-17 13:15:04 -0700346 padding:0 0 0 10px;
Scott Mainac71b2b2012-11-30 14:40:58 -0800347 }
348 #nav li span.tree-list-subtitle {
349 display:inline-block;
350 padding:5px 0 0 10px;
351 color:#555;
352 text-transform:uppercase;
353 font-size:12px;
354 }
355 #nav li span.tree-list-subtitle:before {
356 content: '—';
357 }
358 #nav li span.tree-list-subtitle:after {
359 content: '—';
360 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700361 #nav li ul {
362 display:none;
363 overflow: hidden;
364 margin: 0; }
365 #nav li ul.animate-height-in {
366 -webkit-transition: height 0.25s ease-in;
367 -moz-transition: height 0.25s ease-in;
368 transition: height 0.25s ease-in; }
369 #nav li ul.animate-height-out {
370 -webkit-transition: height 0.25s ease-out;
371 -moz-transition: height 0.25s ease-out;
372 transition: height 0.25s ease-out; }
373 #nav li ul li {
374 padding: 0; }
375 #nav li li li {
376 padding: 0; }
377 #nav li.expanded ul {
378 }
379 #nav li ul > li {
380 padding:0;
381 }
382 #nav li ul > li:last-child {
383 padding-bottom:5px;
384 }
Scott Mainac71b2b2012-11-30 14:40:58 -0800385 #nav li ul.tree-list-children > li:last-child {
386 padding-bottom:0;
387 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700388 #nav li.expanded ul > li {
389 background:#efefef;
390 background: rgba(0, 0, 0, 0.03); }
391 #nav li.expanded ul > li li {
392 background:inherit; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800393 #nav li ul.tree-list-children ul {
394 display:block; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700395
396.new,
397.new-child {
398 font-size: .78em;
399 font-weight: bold;
400 color: #ff3d3d;
401 vertical-align:top;
402 white-space:nowrap;
403}
404
405/* content header */
406.content-header {
407 height: 30px;
408 margin:20px 0 25px;
409 padding:0 0 10px;}
410.content-header.just-links {
411 margin-bottom:0;
412 padding-bottom:0;}
Scott Main98a2a712013-07-17 13:15:04 -0700413
Scott Maine4d8f1b2012-06-21 18:03:05 -0700414.content-header h1 {
415 color:#000;
416 margin:0;
417 border-bottom:0;
418 padding:0;
419}
420
421.content-footer {
422 border-top: 1px solid #ccc;
423 margin-top: 10px;
424 padding-top:10px;
425 height: 30px; }
426
427.content-footer .col-9 {
428 margin-left:0;
429}
430.content-footer .col-4 {
431 margin-right:0;
432}
433.content-footer.wrap {
434 width:940px;
435}
436
437.paging-links {
438 position: relative; }
439 .paging-links a {
440 position: absolute; }
441 .paging-links a,
442 .training-nav-top a {
443 font-size: 14px;
444 line-height: 30px;
445 color: #555555;
446 text-decoration: none;
447 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700448 .paging-links .prev-page-link:before,
449 .training-nav-top .prev-page-link:before {
450 content: '';
451 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
452 width: 10px;
453 height: 10px;
454 display: inline-block;
455 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700456 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700457 .training-nav-top .start-class-link,
458 .training-nav-top .start-course-link {
459 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700460 .paging-links .prev-page-link {
461 left: -15px; }
462 .paging-links .next-page-link {
463 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700464 .next-page-link:after,
465 .start-class-link:after,
466 .start-course-link:after,
Scott Main0b2db162013-05-15 01:15:50 -0700467 .next-class-link:after,
468 .go-link:after {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700469 content: '';
470 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
471 width: 10px;
472 height: 10px;
473 display: inline-block;
474 margin-left: 5px; }
Scott Main25c89dd2013-10-07 14:17:55 -0700475 .prev-page-link.inline:before {
476 content: none; }
477 .next-page-link.inline:after {
478 content: none; }
Scott Main98a2a712013-07-17 13:15:04 -0700479
480
Scott Maine4d8f1b2012-06-21 18:03:05 -0700481 .training-nav-top a {
482 display:block;
483 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700484 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700485 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700486 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700487 line-height:28px;
488 text-align:center;
489 border:1px solid #DADADA;
490 border-bottom:0;
491 }
Scott Main5a1123e2012-09-26 12:51:28 -0700492
Scott Maine4d8f1b2012-06-21 18:03:05 -0700493 .training-nav-top a.next-page-link {
494 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700495 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700496 }
Scott Main98a2a712013-07-17 13:15:04 -0700497
Scott Main5a1123e2012-09-26 12:51:28 -0700498 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700499 .training-nav-top a.disabled,
500 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700501 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700502 }
Scott Main98a2a712013-07-17 13:15:04 -0700503
Scott Main5a1123e2012-09-26 12:51:28 -0700504 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700505 .training-nav-top a.disabled:hover,
506 .content-footer a.disabled:hover {
507 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700508 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700509 }
Scott Main98a2a712013-07-17 13:15:04 -0700510
Scott Maine4d8f1b2012-06-21 18:03:05 -0700511 .training-nav-top a.start-class-link,
512 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700513 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700514 }
Scott Main98a2a712013-07-17 13:15:04 -0700515
Scott Main5a1123e2012-09-26 12:51:28 -0700516 /* list of classes on course landing page */
517 ol.class-list {
518 list-style:none;
519 margin-left:0;
520 }
521 ol.class-list>li {
522 margin:0 0 15px;
523 padding:5px 0 0;
524 overflow:hidden;
525 border-top:1px solid #ccc;
526 }
527 ol.class-list li a.title {
528 font-size:16px;
529 margin:0;
530 clear:left;
531 display:block;
532 height:32px;
533 padding:0 4px;
534 }
535 ol.class-list li a.title h2 {
536 color:inherit;
537 margin:0 0 10px;
538 display:block;
539 float:left;
540 width:675px;
541 }
542 ol.class-list li a.title span {
543 display:none;
544 float:left;
545 font-size:18px;
546 font-weight:bold;
547 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
548 width: 10px;
549 height: 32px;
550 }
551 ol.class-list li a.title:hover {
552 background:#ddd;
553 color:#258AAF !important;
554 }
555 ol.class-list li a.title:hover span {
556 display:block;
557 }
Scott Main98a2a712013-07-17 13:15:04 -0700558
Scott Main5a1123e2012-09-26 12:51:28 -0700559 #jd-content
560 ol.class-list li img {
561 float:left;
562 clear:left;
563 width:64px;
564 margin:0 20px 0 0;
565 }
566 ol.class-list li p.description {
567 float:left;
568 display:block;
569 width:250px;
570 margin:0;
571 }
572 ol.class-list li p.description.article {
573 width: 550px;
574 }
575 ol.class-list ol {
576 float:left;
577 width:320px;
578 margin:0 0 0 30px;
579 list-style:none;
580 margin:0 0 0 20px;
581 }
582 ol.class-list div.lessons li {
583 margin:0 0 6px;
584 line-height:16px;
585 }
Scott Main98a2a712013-07-17 13:15:04 -0700586
587
Scott Maine4d8f1b2012-06-21 18:03:05 -0700588 .hide {
589 display:none !important;
590 }
Scott Main98a2a712013-07-17 13:15:04 -0700591
Scott Maine4d8f1b2012-06-21 18:03:05 -0700592 .content-footer.next-class {
593 display:block;
594 border:0;
595 margin-top:0;
596 padding-top:0;
597 }
Scott Main98a2a712013-07-17 13:15:04 -0700598
Scott Maine4d8f1b2012-06-21 18:03:05 -0700599 .content-footer.next-class a.next-class-link {
600 display:block;
601 float:right;
602 text-transform:uppercase;
603 }
Scott Main98a2a712013-07-17 13:15:04 -0700604
605
606
Scott Mainbbffb4b2012-11-13 07:40:16 -0800607 /* inner-doc tabs w/ title */
Scott Main98a2a712013-07-17 13:15:04 -0700608
Scott Mainbbffb4b2012-11-13 07:40:16 -0800609div#title-tabs-wrapper {
610 border-bottom:1px solid #ccc;
611 margin:20px 0 30px;
612}
613h1.with-title-tabs {
614 display:inline-block;
615 margin:0 0 -1px 0;
616 padding:0 60px 0 0;
617 border-bottom:1px solid #F9F9F9;
618}
619ul#title-tabs {
620 list-style:none;
621 padding:0;
622 height:29px;
623 margin:0;
624 font-size:16px;
625 line-height:26px;
626 display:inline-block;
627 vertical-align:bottom;
628}
629ul#title-tabs li {
630 display:block;
631 float:left;
632 margin-right:40px;
633 border-bottom: 3px solid transparent;
634}
635ul#title-tabs li.selected {
636 border-bottom: 3px solid #93C;
637}
638ul#title-tabs li a {
639 color:#333;
640}
641ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800642ul#title-tabs li a:active {
643 color:#93C !important;
644}
645
646
Scott Maine4d8f1b2012-06-21 18:03:05 -0700647
648/* content body */
649@-webkit-keyframes glowheader {
650 from {
651 background-color: #33b5e5;
652 color: #000;
653 border-bottom-color: #000; }
654
655 to {
656 background-color: transparent;
657 color: #33b5e5;
658 border-bottom-color: #33b5e5; } }
659
660@-moz-keyframes glowheader {
661 from {
662 background-color: #33b5e5;
663 color: #000;
664 border-bottom-color: #000; }
665
666 to {
667 background-color: transparent;
668 color: #33b5e5;
669 border-bottom-color: #33b5e5; } }
670
671@keyframes glowheader {
672 from {
673 background-color: #33b5e5;
674 color: #000;
675 border-bottom-color: #000; }
676
677 to {
678 background-color: transparent;
679 color: #33b5e5;
680 border-bottom-color: #33b5e5; } }
681
682h2:target,
683h3:target {
684 -webkit-animation-name: glowheader;
685 -moz-animation-name: glowheader;
686 animation-name: glowheader;
687 -webkit-animation-duration: 0.7s;
688 -moz-animation-duration: 0.7s;
689 animation-duration: 0.7s;
690 -webkit-animation-timing-function: ease-out;
691 -moz-animation-timing-function: ease-out;
692 animation-timing-function: ease-out; }
693
694.design ol h4 {
695 margin-bottom:0;
696}
697.design ol {
698 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700699 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700700 font-size: 14px;
701 line-height: 20px;
702 list-style-type: none;
703 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700704 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700705 content: counter(item) ". ";
706 counter-increment: item;
707 position: absolute;
708 left: -20px;
709 top: 0; }
710 .design ol li.value-1:before {
711 content: "1. "; }
712 .design ol li.value-2:before {
713 content: "2. "; }
714 .design ol li.value-3:before {
715 content: "3. "; }
716 .design ol li.value-4:before {
717 content: "4. "; }
718 .design ol li.value-5:before {
719 content: "5. "; }
720 .design ol li.value-6:before {
721 content: "6. "; }
722 .design ol li.value-7:before {
723 content: "7. "; }
724 .design ol li.value-8:before {
725 content: "8. "; }
726 .design ol li.value-9:before {
727 content: "9. "; }
728 .design ol li.value-10:before {
729 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700730.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700731 list-style-position: inside;
732 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700733 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700734 display: inline;
735 left: -20px;
736 float: left;
737 width: 17px;
738 color: #33b5e5;
739 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700740.design .with-callouts ul>li {
741 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700742
743/* special list items */
744li.no-bullet {
745 list-style-type: none !important; }
746li.no-bullet *{
747 margin:0; }
748
749.design li.with-icon {
750 position: relative;
751 margin-left: 20px;
752 min-height: 30px; }
753 .design li.with-icon p {
754 margin-left: 0 !important; }
755 .design li.with-icon:before {
756 position: absolute;
757 left: -40px;
758 top: 0;
759 content: '';
760 width: 30px;
761 height: 30px; }
762 .design li.with-icon.tablet:before {
763 background-image: url(../images/styles/ico_phone_tablet.png); }
764 .design li.with-icon.web:before {
765 background-image: url(../images/styles/ico_web.png); }
766 .design li.with-icon.action:before {
767 background-image: url(../images/styles/ico_action.png); }
768 .design li.with-icon.use:before {
769 background-image: url(../images/styles/ico_use.png); }
770
771/* figures and callouts */
772.figure {
773 position: relative; }
774 .figure.pad-below {
775 margin-bottom: 20px; }
776 .figure .figure-callout {
777 position: absolute;
778 color: #fff;
779 font-weight: 500;
780 font-size: 16px;
781 line-height: 23px;
782 text-align: center;
783 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
784 padding-right: 2px;
785 width: 30px;
786 height: 29px;
787 z-index: 1000; }
788 .figure .figure-callout.top {
789 top: -9px; }
790 .figure .figure-callout.right {
791 right: -5px; }
792
793.figure-caption {
794 margin: 0 10px 20px 0;
795 font-size: 14px;
796 line-height: 20px;
797 font-style: italic; }
798
799/* rows of figures */
800.figure-row {
801 font-size: 0;
802 line-height: 0;
803 /* to prevent space between figures */ }
804 .figure-row .figure {
805 display: inline-block;
806 vertical-align: top; }
807 .figure-row .figure + .figure {
808 margin-left: 10px;
809 /* reintroduce space between figures */ }
810
811/* video containers */
812.framed-galaxynexus-land-span-13 {
813 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
814scroll top left;
815 padding: 42px 122px 62px 126px;
816 overflow: hidden; }
817 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
818.framed-galaxynexus-land-span-13 img {
819 width: 512px;
820 height: 286px; }
821
Robert Lyd78354d2012-11-01 17:09:52 -0700822
823.framed-galaxynexus-land-span-8{
824 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
825scroll top left;
826 padding: 26px 68px 38px 72px;
827 overflow: hidden; }
828 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
829.framed-galaxynexus-land-span-8 img {
830 width: 320px;
831 height: 180px; }
832
Scott Maine4d8f1b2012-06-21 18:03:05 -0700833.framed-galaxynexus-port-span-9 {
834 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
835scroll top left;
836 padding: 95px 122px 107px 124px;
837 overflow: hidden; }
838 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
839.framed-galaxynexus-port-span-9 img {
840 width: 274px;
841 height: 488px; }
842
843.framed-galaxynexus-port-span-5 {
844 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
845scroll top left;
846 padding: 75px 31px 76px 33px;
847 overflow: hidden; }
848 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
849.framed-galaxynexus-port-span-5 img {
850 width: 216px;
851 height: 384px; }
852
Scott Main27403b82013-07-10 16:36:05 -0700853.framed-nexus4-port-216 {
854 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
855scroll top left;
856 background-size:240px 465px;
857 padding: 52px 12px 52px 12px;
858 overflow: hidden; }
859 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
860 .framed-nexus4-port-216 img {
861 width: 216px;
862 height: 360px; }
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700863
864.framed-nexus5-port-span-5 {
865 background: transparent url(../images/styles/device_nexus5_blank_port_span5.png) no-repeat
866 scroll top left;
867 padding: 52px 33px 69px 31px;
868 overflow: hidden;
869}
Scott Main27403b82013-07-10 16:36:05 -0700870
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700871.framed-nexus5-port-span-5,
872.framed-nexus5-port-span-5 video,
873.framed-nexus5-port-span-5 img {
874 width: 216px;
875 height: 384px;
876}
Scott Main27403b82013-07-10 16:36:05 -0700877
Dirk Doughertyca1858a2013-10-29 16:25:00 -0700878.framed-nexus5-land-span-13 {
879 background: transparent url(../images/styles/device_nexus5_blank_land_span13.png) no-repeat scroll top left;
880 padding: 36px 119px 54px 108px;
881 overflow: hidden;
882}
883
884.framed-nexus5-land-span-13,
885.framed-nexus5-land-span-13 video,
886.framed-nexus5-land-span-13 img {
887 width: 533px;
888 height: 300px;
889}
890
891.framed-nexus5-port-span-5,
892.framed-nexus5-port-span-5 video,
893.framed-nexus5-port-span-5 img {
894 width: 216px;
895 height: 384px;
896}
897
Scott Maine4d8f1b2012-06-21 18:03:05 -0700898/* landing page disclosures */
899.landing-page-link {
900 text-decoration: none;
901 font-weight: 500;
902 color: #333333; }
903 .landing-page-link:after {
904 content: '';
905 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
906 width: 10px;
907 height: 10px;
908 display: inline-block;
909 margin-left: 5px; }
910
911/* tooltips */
912.tooltip-box {
913 position: absolute;
914 background-color: rgba(0, 0, 0, 0.9);
915 border-radius: 2px;
916 font-size: 14px;
917 line-height: 20px;
918 color: #fff;
919 padding: 6px 10px;
920 max-width: 250px;
921 z-index: 10000; }
922 .tooltip-box.below:after {
923 position: absolute;
924 content: '';
925 line-height: 0;
926 display: block;
927 top: -10px;
928 left: 5px;
929 border: 5px solid transparent;
930 border-bottom-color: rgba(0, 0, 0, 0.9); }
931
932/* video note */
933.video-instructions {
934 margin-top: 10px;
935 margin-bottom: 10px; }
936 .video-instructions:before {
937 content: '';
938 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
939 display: inline-block;
940 width: 12px;
941 height: 12px;
942 margin-right: 8px; }
943 .video-instructions:after {
944 content: 'Click device screen to replay movie.'; }
945
946/* download buttons */
947.download-button {
948 display: block;
949 margin-bottom: 5px;
950 text-decoration: none;
951 background-color: #33b5e5;
952 color: #fff !important;
953 font-weight: 500;
954 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
955 padding: 6px 12px;
956 border-radius: 2px; }
957 .download-button:hover, .download-button:focus {
958 background-color: #0099cc;
959 color: #fff !important; }
960 .download-button:active {
961 background-color: #006699; }
962
963/* UI tables and other things found in Writing style and Settings pattern */
964.ui-table {
965 width: 100%;
966 background-color: #282828;
967 color: #fff;
968 border-radius: 2px;
969 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
970 border-collapse: separate; }
971 .ui-table th,
972 .ui-table td {
973 padding: 5px 10px;
Scott Main98a2a712013-07-17 13:15:04 -0700974 background-color: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700975 border:0;}
976 .ui-table thead th {
977 font-weight: bold; }
978 .ui-table tfoot td {
979 border-top: 1px solid #494949;
980 border-right: 1px solid #494949;
981 text-align: center; }
982 .ui-table tfoot td:last-child {
983 border-right: 0; }
984
985.layout-with-list-item-margins {
986 margin-left: 30px !important; }
987
988.emulate-content-left-padding {
989 margin-left: 10px; }
990
991.do-dont-label {
992 margin-bottom: 10px;
993 padding-left: 20px;
994 background: transparent none no-repeat scroll 0px 3px; }
995 .do-dont-label.bad {
996 background-image: url(../images/styles/ico_wrong.png); }
997 .do-dont-label.good {
998 background-image: url(../images/styles/ico_good.png); }
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -0700999
Scott Maine4d8f1b2012-06-21 18:03:05 -07001000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018/***** PREVIOUSLY style.css ******************/
1019
1020
1021
1022
1023
1024@media screen, projection, print {
1025[dir='rtl'] {
1026 direction: rtl;
1027}
1028html {
1029 line-height: 20px;
1030}
1031pre, table, input, textarea, code {
1032 font-size: 1em;
1033}
1034address, abbr, cite {
1035 font-style: normal;
1036}
1037[dir='rtl'] th {
1038 text-align: right;
1039}
1040html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1041html[lang^=zh] blockquote, html[lang^=zh] q {
1042 font-style: normal;
1043}
1044q {
1045 font-style: italic;
1046}
1047fieldset, iframe, img {
1048 border: 0;
1049}
Scott Main98a2a712013-07-17 13:15:04 -07001050img {
Scott Mainb7f96372013-02-07 16:56:43 -08001051 -ms-interpolation-mode: bicubic;
1052 vertical-align: middle;
1053 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001054}
1055q {
1056 quotes: none;
1057}
1058sup, sub {
1059 font-size: 11px;
1060 line-height: 0;
1061}
1062}
1063
1064@media screen, projection {
1065
1066table, fieldset {
1067 margin: 0;
1068}
1069h1 {
1070 color:#333;
1071 font-size: 22px;
1072 margin: 20px 0 20px;
1073 padding:0 0 10px;
1074}
1075h1, h2 {
1076 line-height: 32px;
1077}
1078h1.short {
1079 margin-right:320px;
1080}
1081h1.short {
1082 margin-right:320px;
1083}
1084h1.super {
Scott Main98a2a712013-07-17 13:15:04 -07001085 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001086}
1087h2 {
1088 color:#333;
1089 font-size: 20px;
1090 margin: 20px 0 20px;
1091 padding:0;
1092}
1093h3 {
1094 color:#333;
1095 font-size: 18px;
1096}
1097h3, h4 {
1098 color:#333;
1099 line-height: 20px;
1100 margin: 10px 0;
1101}
1102h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001103 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001104}
1105h5 {
Scott Main98a2a712013-07-17 13:15:04 -07001106 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001107}
1108h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001109 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001110}
1111h6 {
Scott Main98a2a712013-07-17 13:15:04 -07001112 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001113}
1114hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001115 height: 1px;
1116 margin: 5px 0 20px;
1117 border: 0;
1118 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001119}
1120p, pre, table, form {
1121 margin: 0 0 15px;
1122}
1123small {
Scott Mainb7f96372013-02-07 16:56:43 -08001124 font-size: 11.5px;
1125 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001126}
1127ul, ol {
1128 margin: 0 0 15px 18px;
1129 padding: 0;
1130}
1131[dir='rtl'] ul, [dir='rtl'] ol {
1132 margin: 10px 30px 10px 10px;
1133}
1134ul ul, ul ol, ol ul, ol ol {
1135 margin-bottom: 0;
1136 margin-top: 0;
1137}
1138li {
Scott Main52948fc2012-09-18 11:27:59 -07001139 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001140}
1141dd {
1142 margin:0 0 10px 30px;
1143}
Scott Maina07be8e2013-03-06 12:12:21 -08001144dd p,
1145dd pre,
1146dd ul,
1147dd ol,
1148dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001149 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001150}
Scott Maindb3678b2012-10-23 14:13:41 -07001151li p,
1152li pre,
1153li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001154li ol,
1155li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001156 margin-top:5px;
1157 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001158}
1159pre strong, pre b, a strong, a b, a code {
1160 color: inherit;
1161}
1162pre, code {
1163 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001164 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001165}
1166code {
1167 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001168 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001169}
1170
1171legend {
1172 display: none;
1173}
1174a:link, a:visited {
1175 color: #258aaf;
1176 text-decoration: none;
1177}
1178a:focus, a:hover, a:active {
1179 color: #33B5E5;
1180 text-decoration: none;
1181}
1182strong, b {
1183 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001184 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001185}
1186table {
1187 border-collapse: collapse;
1188 border-spacing: 0;
1189 border:0;
1190 margin: .5em 1em 1em 0;
1191 width:100%; /* consistent table widths; within IE's quirks */
1192 background-color:#f7f7f7;
1193}
1194th, td {
1195 padding: 4px 12px;
1196 vertical-align: top;
1197 text-align: left;
1198}
1199td {
1200 background-color:inherit;
1201 border:solid 1px #DDD;
1202}
Scott Maineb410352013-01-14 19:03:40 -08001203td *:last-child {
1204 margin-bottom:0;
1205}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001206th {
1207 background-color: #999;
1208 color: #fff;
1209 border:solid 1px #DDD;
1210 font-weight: normal;
1211}
1212tr:first-of-type th:first-of-type:empty {
1213 visibility: hidden;
1214}
1215/* --------------------------------------------------------------------------
1216Footer
1217*/
1218.line {
1219 clear: both;
1220 background: #acbc00;
1221 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1222 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1223color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1224 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1225 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1226 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1227 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1228 height: 2px;
1229 margin-top: 150px;
1230 position: relative;
1231 z-index: 11;
1232}
1233#footer {
1234 font-size:11px;
1235 clear: both;
1236 color: #999;
1237 padding: 15px 0;
1238 margin-top:10px;
1239 width:auto;
1240}
1241#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001242 list-style: none;
1243 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001244}
1245#footer-local li {
1246 display: inline;
1247}
1248#footer-local li+li:before {
1249 content: '|';
1250 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001251 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001252}
1253#footer-global {
1254 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001255 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001256}
1257#footer-global {
1258 border-top: 1px solid #ebebeb;
1259 font-size: 11.5px;
1260 line-height: 1.8;
1261 list-style: none;
1262}
1263#footer-global ul {
1264 margin: 0;
1265}
1266#footer-global li {
1267 display: inline;
1268 font-weight: bold;
1269}
1270#footer-global li+li:before {
1271 content: '¬?';
1272 padding: 0 3px;
1273}
1274* html #footer-global li {
1275 margin: 0 13px 0 0;
1276}
1277* [dir='rtl'] #footer-global li {
1278 margin: 0 0 0 13px;
1279}
1280*+html #footer-global li {
1281 margin: 0 13px 0 0;
1282}
1283*+[dir='rtl'] #footer-global li {
1284 margin: 0 0 0 13px;
1285}
1286#footer-global li a {
1287 font-weight: normal;
1288}
1289.locales {
1290 margin: 10px 0 0 0px;
1291}
1292[dir='rtl'] .locales {
1293 background-position: right center;
1294 float: left;
1295 padding: 0 24px 0 0;
1296}
1297.locales form {
Scott Main98a2a712013-07-17 13:15:04 -07001298 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001299}
1300.locales select, .sites select {
1301 line-height: 3.08;
1302 margin: 0px 0;
1303 border: solid 1px #EBEBEB;
1304 -webkit-appearance: none;
1305 background: white url('../images/arrows-up-down.png') right center no-repeat;
1306 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001307 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001308 line-height: normal;
1309 padding: 5px;
1310 width: 230px;
1311}
1312}
1313
1314/* =============================================================================
1315 Print Only
1316 ========================================================================== */
1317@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001318 /* configure printed page */
1319 @page {
1320 margin: 0.75in 1in;
1321 widows: 4;
1322 orphans: 4;
1323 }
1324
1325 /* reset spacing metrics */
1326 html, body, .wrap {
1327 margin: 0 !important;
1328 padding: 0 !important;
1329 width: auto !important;
1330 }
1331
1332 /* leave enough space on the left for bullets */
1333 body {
1334 padding-left: 20px !important;
1335 }
1336 #doc-col {
1337 margin-left: 0;
1338 }
1339
1340 /* hide a bunch of non-content elements */
1341 #header, #footer, #nav-x, #side-nav,
1342 .training-nav-top, .training-nav-bottom,
1343 #doc-col .content-footer,
1344 .nav-x, .nav-y,
1345 .paging-links,
1346 a.totop {
1347 display: none !important;
1348 }
1349
1350 /* remove extra space above page titles */
1351 #doc-col .content-header {
1352 margin-top: 0;
1353 }
1354
1355 /* bump up spacing above subheadings */
1356 h2 {
1357 margin-top: 40px !important;
1358 }
1359
1360 /* print link URLs where possible and give links default text color */
1361 p a:after {
1362 content: " (" attr(href) ")";
1363 font-size: 80%;
1364 }
1365 p a {
1366 word-wrap: break-word;
1367 }
1368 a {
1369 color: inherit;
1370 }
1371
1372 /* syntax highlighting rules */
1373 .str { color: #060; }
1374 .kwd { color: #006; font-weight: bold; }
1375 .com { color: #600; font-style: italic; }
1376 .typ { color: #404; font-weight: bold; }
1377 .lit { color: #044; }
1378 .pun { color: #440; }
1379 .pln { color: #000; }
1380 .tag { color: #006; font-weight: bold; }
1381 .atn { color: #404; }
1382 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001383}
1384
1385/* =============================================================================
1386 Columns
1387 ========================================================================== */
1388
1389@media screen, projection, print {
1390.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001391 padding: 2.5em 0;
1392 border-top: solid 1px #ddd;
1393 border-bottom: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07001394 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001395}
1396.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001397 margin: 0 auto;
1398 width: 940px;
1399 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001400}
1401.cols {
1402 height: 1%;
1403 margin: 0 -1.533742331288343558282%;
1404 width: 103.06748466257669%}
1405*+html .cols {
1406 margin-bottom: 20px;
1407}
1408.cols:after {
1409 clear: both;
1410 content: ' ';
1411 display: block;
1412 height: 0;
1413 visibility: hidden;
1414}
1415.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1416.col-13, .col-14, .col-15, .col-16 {
1417 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001418 float: left;
1419 margin-left: 10px;
1420 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001421}
1422/*
1423* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1424.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1425 margin: 0;
1426 padding: 0 1.4% 20px;
1427}
1428[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1429[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1430[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1431 float: right;
1432}
1433*/
1434.col-1 { width: 40px }
1435.col-2 { width: 100px }
1436.col-3 { width: 160px }
1437.col-4 { width: 220px }
1438.col-5 { width: 280px }
1439.col-6 { width: 340px }
1440.col-7 { width: 400px }
1441.col-8 { width: 460px }
1442.col-9 { width: 520px }
1443.col-10 { width: 580px }
1444.col-11 { width: 640px }
1445.col-12 { width: 700px }
1446.col-13 { width: 760px }
1447.col-14 { width: 820px }
1448.col-15 { width: 880px }
1449.col-16 { width: 940px }
1450}
1451
1452.col-right {
1453 margin-right:0px;
1454}
1455
1456@media screen and (max-width:772px) {
1457.col-5, .col-6, .col-7 {
1458 clear: both;
1459 width: 97.0238096%}
1460}
1461
1462/* =============================================================================
1463 Layout
1464 ========================================================================== */
1465@media screen, projection, print {
1466
1467/* --------------------------------------------------------------------------
1468Header, Login, Nav-X, Search
1469*/
1470#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001471 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001472}
1473#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001474 content: "";
1475 display: table;
1476 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001477}
1478.logo, .nav-x {
1479 float: left;
1480}
1481.nav-x {
1482 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001483 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001484}
1485.nav-x a {
1486 color: #333;
1487 font-size: 16px;
1488}
1489.design a.selected {
1490 color: #33b5e5;
1491}
1492.develop a.selected {
1493 color: #F80;
1494}
1495.distribute a.selected {
1496 color: #9C0;
1497}
1498
1499
1500
1501.nav-x li {
1502 display: inline;
1503 margin-right: 45px;
1504}
1505.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001506 float: right;
1507 position: relative;
1508 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001509}
1510.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001511 position: absolute;
1512 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001513}
1514.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001515 width: 220px;
1516 height: 1px;
1517 top: 24px;
1518 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001519}
Scott Main98a2a712013-07-17 13:15:04 -07001520.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001521 height: 5px;
1522 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001523}
Scott Mainb7f96372013-02-07 16:56:43 -08001524.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001525.search .right { top: 19px; right: 0 }
1526.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001527 float: left;
1528 margin-top: 2px;
1529 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001530}
1531.search .close,
1532#player-frame .close {
1533 position: absolute;
1534 right: 8px;
1535 bottom: 4px;
1536 width: 16px;
1537 height: 16px;
1538 margin: 0;
1539 text-indent: -1000em;
1540 background: url(../images/close.png) no-repeat 0 0;
1541 z-index:9999;
1542}
1543.search .close:hover, .search .close:focus,
1544#player-frame .close:hover, #player-frame .close:focus {
1545 background-position: -16px 0;
1546 cursor:pointer;
1547}
1548#player-frame .close {
1549 top: 6px;
1550}
1551.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001552 color: #999;
1553 font-size: 1em;
1554 width: inherit;
1555 border: none;
1556 margin: 0;
1557 padding:0 0 0 6px;
1558 z-index: 1500;
1559 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001560}
1561.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001562 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001563}
1564.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001565 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001566}
1567.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001568 color: #222;
1569 font-weight: bold;
1570 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001571}
1572/* Search Dropdown */
1573.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001574 padding: 15px;
1575 width: 192px;
1576 border: solid 1px #c5c5c5;
1577 background: #fff;
1578 position: absolute;
1579 top: 35px;
1580 left: 0;
1581 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1582 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1583 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001584}
1585.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001586 list-style-type: none;
1587 margin: 0;
1588 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001589}
1590.search-dropdown ul li {
Scott Main98a2a712013-07-17 13:15:04 -07001591 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001592}
1593.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001594 float: left;
1595 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001596}
1597.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001598 color: #222;
1599 margin: 0;
1600 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001601}
1602.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001603 color: #999;
1604 font-size: 11.5px;
1605 line-height: normal;
1606 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001607}
1608.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001609 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001610}
1611/* --------------------------------------------------------------------------
1612Buttons
1613*/
1614.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001615 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001616 -webkit-border-radius: 2px;
1617 -moz-border-radius: 2px;
1618 border-radius: 2px;
1619 cursor: pointer;
1620}
1621.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001622 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001623 background-color: #09c;
1624 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1625 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1626 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1627 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1628 background-image: -o-linear-gradient(top, #2faddb, #09c);
1629 background-image: linear-gradient(top, #2faddb, #09c);
1630 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1631 border: 1px solid #3990ab;
1632 color: #fff;
1633}
1634.button-secondary, a.button-secondary {
1635 background-color: #f3f3f3;
1636 border: 1px solid #dcdcdc;
1637 color: #444;
1638}
1639a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001640 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001641 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001642 min-width: 54px;
1643 outline: 0;
1644 padding: 8px 15px;
1645 text-align: center;
1646}
1647.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001648 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001649 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001650 min-width: 54px;
1651 outline: 0;
1652 padding: 0 15px;
1653 text-align: center;
1654}
1655.button:hover, a.button:hover {
1656 border-color: #09c;
1657 background-color: #4cadcb;
1658 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1659 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1660 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1661 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1662 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1663 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1664 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1665EndColorStr='#4cadcb',GradientType=0);
1666 color: #fff !important;
1667}
1668.button:active, a.button:active {
1669 background-color: #1e799a;
1670 background-image: none;
1671 border-color: #30b7e6;
1672}
Scott Maindb3678b2012-10-23 14:13:41 -07001673a.button.big.subtitle {
1674 line-height:18px;
1675}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001676.button-secondary:hover, a.button-secondary:hover {
1677 border-color: #dbdbdb;
1678 background-color: #f3f3f3;
1679 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1680 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1681 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1682 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1683 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1684 background-image: linear-gradient(top, #f9f9f9, #ececec);
1685 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1686EndColorStr='#ececec');
1687 color: #33B5E5 !important;
1688}
1689.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001690 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001691 background: #ebebeb; /* Old browsers */
1692 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1693 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001694url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1695Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1696eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1697CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1698eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1699YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1700CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1701CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1702CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1703CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1704R3JhZGllbnQ+
1705CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1706Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001707 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001708#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001709 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001710color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1711/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001712 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700171390%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001714 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001715100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001716 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001717100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001718 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001719100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001720 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001721endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001722 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1723 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Main98a2a712013-07-17 13:15:04 -07001724 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Mainb7f96372013-02-07 16:56:43 -08001725 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001726}
1727.button.big {
1728 font-size:20px;
1729 display:inline-block;
1730}
Scott Maindb3678b2012-10-23 14:13:41 -07001731.button.big span.small {
1732 font-size:14px;
1733}
1734.button-caption {
1735 margin-top:10px;
1736 font-size:12px;
1737 font-style:italic;
1738}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001739
1740.button.disabled,
1741.button.disabled:hover,
1742.button.disabled:active {
1743 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001744 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001745 border-color:#999;
1746 cursor:default;
1747}
1748
1749.training-nav-top a.button-secondary,
1750.training-nav-bottom a.button-secondary {
1751 display:block;
1752 float:left;
1753 margin:0;
1754 width:130px;
1755 text-transform:uppercase;
1756 font-weight:bold;
Scott Main98a2a712013-07-17 13:15:04 -07001757
Scott Maine4d8f1b2012-06-21 18:03:05 -07001758 background-color: #f3f3f3;
1759 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1760 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1761 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1762 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1763 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1764 background-image: linear-gradient(top, #f9f9f9, #ececec);
1765 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1766EndColorStr='#ececec');
1767 color: #33B5E5;
1768}
1769
1770.training-nav-top a.button-secondary:hover,
1771.training-nav-bottom a.button-secondary:hover {
1772 background-color: #09c;
1773 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1774 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1775 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1776 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1777 background-image: -o-linear-gradient(top, #2faddb, #09c);
1778 background-image: linear-gradient(top, #2faddb, #09c);
1779 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1780 border: 1px solid #3990ab;
1781 color: #fff !important;
1782}
1783
1784.training-nav-top a.button-secondary.last,
1785.training-nav-bottom a.button-secondary.last {
1786 border-left:0;
1787}
1788
1789.training-nav-top a.button-secondary.double-size,
1790.training-nav-bottom a.button-secondary.double-size {
1791 width:291px;
1792}
1793
1794.training-nav-top,
1795.training-nav-bottom {
1796 float:right;
1797 margin:0 0 0 20px;
1798}
1799
1800.training-nav-bottom {
1801 padding:0 0 20px;
1802}
1803
1804#tb-wrapper,
1805#qv-wrapper {
1806 float:right;
1807 clear:right;
Scott Maincef39242013-06-19 20:25:34 -07001808 margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maine4d8f1b2012-06-21 18:03:05 -07001809 padding:0 0 20px;
1810}
1811
Scott Maincef39242013-06-19 20:25:34 -07001812#tb-wrapper {
1813 margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
1814}
1815
Scott Maine4d8f1b2012-06-21 18:03:05 -07001816#tb,
1817#qv {
1818 font-size:13px;
1819 line-height:18px;
1820 width:238px;
1821 border:1px solid #ccc;
1822 float:right;
1823}
1824
1825#tb {
1826 width:278px;
1827}
1828
1829#tb h2,
1830#qv h2 {
1831 margin:10px 15px;
1832 padding:0;
1833 text-transform:uppercase;
1834 border-bottom:1px solid gainsboro;
1835}
1836
1837#tb *,
1838#qv * {
1839 font-size:inherit;
1840}
1841
Scott Main8c0f5b32013-07-08 15:12:02 -07001842#tb .download-box,
1843#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001844 padding:0 0 0 15px;
1845}
1846
Scott Main8c0f5b32013-07-08 15:12:02 -07001847#tb .download-box .filename,
1848#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001849 font-size:11px;
1850 margin:4px 4px 10px;
1851 color:#666;
1852}
1853
1854
1855/* Dev guide quicknav */
1856
1857.sidebox-wrapper {
1858 float:right;
1859 clear:right;
1860 margin:0 0 0 20px;
1861 padding:0 0 20px;
1862}
1863
1864.sidebox {
1865 width:226px;
1866 font-size:13px;
1867 line-height:18px;
1868 border-left:4px solid #99CC00;
1869 float:right;
1870 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001871 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001872}
1873
1874.sidebox h2,
1875.sidebox h3,
1876.sidebox h4,
1877.sidebox h5 {
1878 font-weight:bold;
1879 margin:0 0 10px;
1880}
1881
1882.sidebox * {
1883 font-size:inherit;
1884}
1885
1886#tb ol,
1887#tb ul,
1888#qv ul {
1889 margin:0 15px 10px 35px;
1890}
1891
1892#qv ol {
1893 list-style:none;
1894 margin:0 15px 15px;
1895 font-size:inherit;
1896 line-height:inherit;
1897}
1898
1899#tb ol ol,
1900#tb ul ul,
1901#qv ol ol,
1902#qv ul ul,
1903.sidebox ol ol,
1904.sidebox ul ul {
1905 margin-bottom:0;
1906}
1907
1908#qv ol ol {
1909 margin:3px 0 3px 15px;
1910}
1911
1912.sidebox p,
1913#qv p,
1914#tb p {
1915 margin: 0 0 10px;
1916}
1917
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001918/* related resources blocks in checklists */
1919
1920.rel-resources {
1921 margin:10px 0px;
1922 border:1px solid #ccc;
1923 background-color:rgba(0, 0, 0, 0.027451);
1924 border:1px solid #ccc;
1925 font-size:13px;
1926 color:#6f6f6f;
1927}
1928
1929.rel-resources ul {
1930padding: .5em 1em 0 1em;
1931}
1932
1933.rel-resources a {
1934font-weight:500;
1935}
1936
1937.rel-resources h3 {
1938 margin:4px 15px 0px 15px;
1939 font-size:13px;
1940 font-weight:600;
1941 text-transform:uppercase;
1942}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001943
1944/* --------------------------------------------------------------------------
1945Form
1946*/
1947.article form {
1948 margin: 0 0 20px;
1949}
1950.article form .form-required {
1951 color: #dd4b39;
1952}
1953.article form fieldset {
1954 margin: 0 0 20px;
1955 padding: 0;
1956}
1957.article form legend {
1958 display: block;
1959 line-height: 1.5;
1960 margin: 0;
1961 padding: 0;
1962}
1963/*
1964.article form ol, .article form ul {
1965 margin: 0 0 0 1em;
1966 padding: 0 0 0 1em;
1967}
1968[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1969 margin: 0 1em 0 0;
1970 padding: 0 1em 0 0;
1971}
1972.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1973ul ul {
1974 list-style: none;
1975 margin: 0;
1976 padding: 0;
1977}
1978.article form li {
1979 margin: 0 0 20px;
1980}
1981.article form li li {
1982 margin: 0 0 5px;
1983}
1984*/
1985.article form label {
1986 display: block;
1987 margin: 0 0 5px;
1988 padding: 0;
1989}
1990.article form input[type='text'], .article form select, .article form textarea, .article form
1991.checkbox-group, .article form .radio-group {
1992 margin-bottom: 15px;
1993}
1994.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08001995 width: 13px;
1996 height: 13px;
1997 background: #fff;
1998 border: solid 1px #c6c6c6;
1999 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002000}
2001.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08002002 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07002003}
2004.article form select {
2005 border: solid 1px #ebebeb;
2006 border-top-color: #ddd;
2007 -webkit-appearance: none;
2008 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2009 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07002010 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002011 line-height: normal;
2012 padding: 5px;
2013 width: 130px;
2014}
Scott Main98a2a712013-07-17 13:15:04 -07002015
Scott Maine4d8f1b2012-06-21 18:03:05 -07002016.article form .browse .browse-msg {
Scott Main98a2a712013-07-17 13:15:04 -07002017 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002018}
2019.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08002020 height: auto;
2021 line-height: 25px;
2022 font-size: 11px;
2023 padding: 0 8px;
2024 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002025}
2026.article form input[type='text'], .article form textarea {
2027 border: 1px solid #ebebeb;
2028 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07002029 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002030 line-height: normal;
2031 padding: 6px 10px;
Scott Main98a2a712013-07-17 13:15:04 -07002032 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002033}
2034.article form textarea {
2035 height: 150px;
2036}
2037.article form input[type='text']:focus, .article form textarea:focus {
2038 border-color: #33B5E5;
2039 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2040 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2041 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2042 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2043 outline: 0;
2044}
2045.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2046 color: #999;
2047}
2048.article form input[type='text'][disabled], .article form textarea[disabled] {
2049 background-color: #ebebeb;
2050}
2051form .form-error input[type='text'], form .form-error textarea {
2052 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002053 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002054}
2055.aside {
2056 -moz-border-radius: 2px;
2057 -webkit-border-radius: 2px;
2058 border-radius: 2px;
2059 margin: 10px 0;
2060 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002061 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002062 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002063 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002064}
2065/*
2066.aside, .notification, .promo {
2067 -moz-border-radius: 2px;
2068 -webkit-border-radius: 2px;
2069 border-radius: 2px;
2070 margin: 10px 0;
2071 padding: 10px;
2072 position: relative;
2073}
2074.aside>:first-child, .notification>:first-child, .promo>:first-child {
2075 margin-top: 0;
2076}
2077.aside>:last-child, .notification>:last-child, .promo>:last-child {
2078 margin-bottom: 0;
2079}
2080.aside {
2081 background: #f9f9f9;
2082}
2083.notification {
2084 background: #fffbe4;
2085 border-color: #f8f6e6;
2086}
2087.promo {
2088 background: #f6f9ff;
2089 border-color: #eff2f9;
2090}
2091*/
Scott Maindb3678b2012-10-23 14:13:41 -07002092
2093/* SDK TOS styles */
2094
2095div.sdk-terms {
2096 white-space: pre-wrap;
2097 word-wrap: break-word;
2098 font-family: inherit;
2099 font-size: inherit;
2100 padding: 10px;
2101 height: 370px;
2102 width: 738px;
2103 border: 1px solid #444;
2104 background: transparent;
2105 overflow:auto;
2106 margin:0 0 10px;
2107}
2108
2109div.sdk-terms.fullsize {
2110 padding: 0;
2111 height: auto;
2112 width: auto;
2113 border:none;
2114}
2115
2116div.sdk-terms h3,
2117div.sdk-terms h2 {
2118 margin:0;
2119}
2120
2121div#sdk-terms-form {
2122 padding:0 0 0 10px;
2123}
2124
Scott Main11ac05b2012-11-15 14:57:44 -08002125div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002126 display:inline;
2127 margin:4px 4px 4px 0;
2128}
2129
2130
Scott Maine4d8f1b2012-06-21 18:03:05 -07002131/* --------------------------------------------------------------------------
2132Code Style
2133*/
2134pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002135 margin:0 0 1em 0;
2136 padding: 1em;
2137 overflow: auto;
2138 border: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07002139 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002140}
2141.str { color: #080; }
2142.kwd { color: #008; }
2143.com { color: #800; }
2144.typ { color: #606; }
2145.lit { color: #066; }
2146.pun { color: #660; }
2147.pln { color: #000; }
2148.tag { color: #008; }
2149.atn { color: #828; }
2150.atv { color: #080; }
2151.dec { color: #606; }
2152
2153/* --------------------------------------------------------------------------
2154Three-Pane
2155*/
2156/* Package Nav & Classes Nav */
2157.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002158 position: relative;
2159 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002160}
2161#packages-nav .js-pane,
2162#classes-nav .js-pane {
2163 overflow:visible;
2164}
2165#packages-nav {
2166 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002167 max-height: inherit;
2168 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002169 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002170}
2171#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002172 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002173 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002174}
2175#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002176 list-style-type: none;
2177 margin: 10px 0 20px 0;
Scott Main98a2a712013-07-17 13:15:04 -07002178 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002179}
2180#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002181 font-weight: bold;
2182 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002183}
2184#packages-nav li,
2185#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002186 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002187}
2188#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2189#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002190 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002191}
2192#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2193#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2194#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002195 color: #222;
Scott Main98a2a712013-07-17 13:15:04 -07002196 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002197}
2198#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2199#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002200 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002201}
2202#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2203a:visited,
2204#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2205a:visited,
2206#nav-tree li div.selected {
2207 font-weight: 500;
2208 color: #0099cc;
2209 background-color:#fff; }
2210 #packages-nav li.selected ul li a,
2211 #classes-nav li.selected ul li a {
2212 /* don't highlight child items */
2213 color: #555555; }
2214#nav-tree li div.selected a {
2215 font-weight: 500;
2216 color: #0099cc;
2217}
2218#nav-swap {
2219 height:30px;
2220 border-top:1px solid #ccc;
2221}
2222#nav-swap a {
2223 display:inline-block;
2224 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002225 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002226 font-size: 12px;
2227 padding: 5px 0 5px 5px;
2228}
2229
2230#nav-swap .fullscreen {
2231 float: right;
2232 width: 24px;
2233 height: 24px;
2234 text-indent: -1000em;
2235 padding:0;
2236 margin:3px 5px 0;
2237 background: url(../images/fullscreen.png) no-repeat -24px 0;
2238}
2239#nav-swap .fullscreen.disabled {
2240 background-position: 0 0;
2241}
Scott Main98a2a712013-07-17 13:15:04 -07002242#nav-swap .fullscreen:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002243#nav-swap .fullscreen:focus {
2244 cursor:pointer;
2245}
2246
2247
2248/* nav tree */
2249#side-nav, #devdoc-nav, #swapper,
2250#nav-tree, #tree-list {
2251 overflow:hidden;
2252 margin-left:0;
2253}
2254
2255#nav-tree ul {
2256 list-style:none;
2257 padding:0;
2258 margin:10px 0;
2259}
2260
2261#nav-tree ul li div {
2262 padding:0 0 0 4px;
2263}
2264
2265#side-nav #nav-tree ul li a,
2266#side-nav #nav-tree ul li span.no-children {
2267 padding: 0;
2268 margin: 0;
2269}
2270
2271#nav-tree .plus {
2272 margin: 0 3px 0 0;
2273}
2274
2275#nav-tree ul ul {
2276 list-style: none;
2277 margin: 0;
2278 padding: 0 0 0 0;
2279}
2280
2281#nav-tree ul li {
2282 margin: 0;
2283 padding: 0 0 0 0;
2284 white-space: nowrap;
2285}
2286
2287#nav-tree .children_ul {
2288 padding:0;
2289 margin:0;
2290}
2291#nav-tree .children_ul li div {
2292 padding:0 0 0 10px;
2293}
2294#nav-tree .children_ul .children_ul li div {
2295 padding:0 0 0 20px;
2296}
2297
2298#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002299 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002300 text-decoration: none;
2301}
2302
2303#nav-tree span.label {
2304 width: 100%;
2305}
2306
2307#nav-tree {
2308 overflow-x: auto;
2309 overflow-y: scroll;
2310 outline:0;
2311}
2312
2313
2314/* Content */
2315#doc-col {
2316 margin-right:0;
2317}
2318#doc-content-container {
Scott Main98a2a712013-07-17 13:15:04 -07002319 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002320}
2321#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002322 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002323}
2324#doc-header {
Scott Main98a2a712013-07-17 13:15:04 -07002325 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002326}
2327#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002328 line-height: 0;
2329 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002330}
2331#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002332 float: right;
2333 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002334}
2335#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002336 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002337}
2338#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002339 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002340}
2341#api-nav-header {
2342 height:19px; /* plus 16px padding = 35; same as #nav li */
2343 font-size:14px;
2344 padding: 8px 0;
2345 margin: 0;
2346 border-bottom: 1px solid #CCC;
2347 background:#e9e9e9;
2348 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2349
2350}
2351#api-nav-title {
2352 padding:0 5px;
2353 white-space:nowrap;
2354}
2355
2356#api-level-toggle {
2357 float:right;
2358 padding:0 5px;
2359}
2360
2361#api-level-toggle label {
2362 margin:0;
2363 vertical-align:top;
2364 line-height: 19px;
2365 font-size:13px;
2366 height: 19px;
2367}
2368
2369#api-level-toggle .select-wrapper {
2370 width: 35px;
2371 display: inline-block;
2372 overflow: hidden;
2373}
2374#api-level-toggle select {
2375 border: 0;
2376 appearance:none;
2377 -moz-appearance:none;
2378 -webkit-appearance: none;
2379 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002380 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002381 height: 19px;
2382 line-height: 19px;
2383 padding: 0;
2384 margin:1px 0 0 0;
2385 width:150%;
2386 font-size:13px;
2387 vertical-align:top;
2388 outline:0;
2389}
2390
2391
2392/* Toggle for revision notes and stuff */
2393div.toggle-content.closed .toggle-content-toggleme {
2394 display:none;
2395}
2396
2397#jd-content img.toggle-content-img {
2398 margin:0 5px 5px 0;
2399}
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002400
Scott Main220c3442012-07-16 15:40:17 -07002401div.toggle-content-toggleme {
2402 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002403}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002404
2405
2406/* API LEVEL FILTERED MEMBERS */
2407
2408.absent,
2409.absent a:link,
2410.absent a:visited,
2411.absent a:hover,
2412.absent * {
2413 color:#bbb !important;
2414 cursor:default !important;
2415 text-decoration:none !important;
2416}
2417#devdoc-nav li.absent.selected,
2418#devdoc-nav li.absent.selected *,
2419#devdoc-nav div.label.absent.selected,
2420#devdoc-nav div.label.absent.selected * {
2421 background-color:#eaeaea !important;
2422}
2423.absent h4.jd-details-title,
2424.absent h4.jd-details-title * {
2425 background-color:#f6f6f6 !important;
2426}
2427.absent img {
2428 opacity: .3;
2429 filter: alpha(opacity=30);
2430 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2431}
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441/* JQUERY RESIZABLE STYLES */
2442.ui-resizable { position: relative; }
2443.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2444.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2445/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2446body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2447.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2448border-bottom: solid 1px #ededed;
2449 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2450/*
Scott Main98a2a712013-07-17 13:15:04 -07002451.ui-resizable-e {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002452cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24531px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2454*/
2455
2456/* --------------------------------------------------------------------------
2457Lightbox
2458*/
Scott Main98a2a712013-07-17 13:15:04 -07002459.lightbox {
Scott Mainb7f96372013-02-07 16:56:43 -08002460 width: 769px;
2461 padding: 1.5em;
2462 margin: 0 auto;
2463 border: solid 1px #dcdcdc;
2464 background: #fff;
2465 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2466 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2467 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002468}
2469.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002470 float: left;
2471 width: 720px;
Scott Main98a2a712013-07-17 13:15:04 -07002472 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002473}
2474.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002475 float: right;
2476 width: 10px;
2477 height: 10px;
2478 margin: -10px -10px 10px 0;
2479 text-indent: -1000em;
2480 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002481}
2482.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002483 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002484}
2485
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002486
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002487/* --------------------------------------------------------------------------
2488Styles for samples project trees and code browsing in resources tab
2489*/
2490
Scott Main498d7102013-08-21 15:47:38 -07002491#codesample-wrapper {
2492 width:1000px;
2493 overflow:visible;
2494}
2495pre#codesample-block {
2496 float:left;
2497 overflow:visible;
2498 background:transparent;
2499 border:none;
2500}
2501pre#codesample-block .code-line:hover {
2502 background:#e7e7e7;
2503}
2504pre#codesample-line-numbers {
2505 float:left;
2506 width:2em;
2507 background:transparent;
2508 border:none;
2509 border-right:1px solid #ccc;
2510 padding-left:0;
2511 font-family:monospace;
2512 text-align:right;
2513 -webkit-touch-callout: none;
2514 -webkit-user-select: none;
2515 -khtml-user-select: none;
2516 -moz-user-select: -moz-none;
2517 -ms-user-select: none;
2518 user-select: none;
2519}
2520pre#codesample-line-numbers a {
2521 color:#999;
2522}
2523pre#codesample-line-numbers.hidden {
2524 display:none;
2525}
2526pre#codesample-block span.code-line {
2527 width:100%;
2528 display:inline-block;
2529}
2530
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002531.structure-dir {
2532background-image:url(../../assets/images/folder.png);
2533background-repeat:no-repeat;
2534background-position:16px 2px;
2535 margin:.25em 0 0 0;
2536 padding:0 0 0 0;
2537}
2538
2539.structure-toggleme {
2540 margin:0 0 0 3em;
2541 padding:0 0 0 0;
2542 text-decoration:none;
2543}
2544
2545.structure-java{
2546background-image:url(../../assets/images/file-java.png);
2547background-repeat:no-repeat;
2548background-position:0px 2px;
2549 margin:.3em 0 0 0;
2550 padding:.3em 0 .3em 22px;
2551}
2552
2553.structure-file {
2554background-image:url(../../assets/images/file-generic.png);
2555background-repeat:no-repeat;
2556background-position:0px 2px;
2557 margin:.3em 0 0 0;
2558 padding:.3em 0 .3em 22px;
2559}
2560
2561.structure-xml {
2562background-image:url(../../assets/images/file-xml.png);
2563background-repeat:no-repeat;
2564background-position:0px 2px;
2565 margin:.3em 0 0 0;
2566 padding:.3em 0 .25em 22px;
2567}
2568
2569.structure-img {
2570background-image:url(../../assets/images/file-image.png);
2571background-repeat:no-repeat;
2572background-position:0px 2px;
2573 margin:.3em 0 0 0;
2574 padding:.3em 0 .25em 22px;
2575}
2576
2577.structure-manifest {
2578background-image:url(../../assets/images/file-manifest.png);
2579background-repeat:no-repeat;
2580 margin:.0 0 0 1.25em;
2581 padding:0 0 0 22px;
2582 text-decoration:none;
2583}
2584
2585#jd-content .structure-toggle-img {
2586 margin:.5em 0 0 0;
2587padding-right:2.1em;
2588}
2589
2590.dirInfo {
2591 margin-left:2em;
2592}
2593
2594.structure-dir a {
2595 text-decoration:none;
2596}
2597
2598.structure-manifest a {
2599 text-decoration: none;
2600}
2601.structure-file a {
2602 text-decoration: none;
2603}
2604
2605.sampleEmbed {
2606 background-color:rgb(249, 249, 249);
2607}
2608
2609.sampleEmbed ol.lineNumbers {
2610 list-style-type: decimal;
2611 padding-left:1em;
2612}
2613
2614.sampleEmbed ol.lineNumbers li {
2615border-left:1px solid #ddd;
2616border-right:1px solid #ddd;
2617color:gray;
2618background-color:#f7f7f7;
2619margin:0 0 0 24px;
2620padding: 2px 2px 2px 6px;
2621}
2622
2623.sampleEmbed ol.lineNumbers li:hover {
2624background: #efefef;
2625}
2626
Scott Main0ad622b2013-09-04 21:14:06 -07002627.samples-nav li a {
2628 overflow: hidden;
2629 text-overflow: ellipsis;
2630 white-space: nowrap;
2631}
2632
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002633/* --------------------------------------------------------------------------
2634Styles for raw formatted line numbers (not used with listformatted version)
2635div.sampleLine div.lineNumber {
2636 display: inline;
2637}
2638div.sampleLine div.lineCode {
2639 display: inline;
2640 padding-left:6px;
2641}
2642div.sampleLine {
2643 padding:0;
2644 margin:0;
2645}*/
2646
Scott Maine4d8f1b2012-06-21 18:03:05 -07002647/* --------------------------------------------------------------------------
Dirk Dougherty4c2dfcf2013-07-08 16:05:05 -07002648Butterbar
2649*/
2650#butterbar-wrapper {
2651 position:absolute;
2652 top:0;
2653 left:0;
2654 width:100%;
2655}
2656#butterbar {
2657 width:940px;
2658 margin:0 auto;
2659}
2660#butterbar-message {
2661 background-color:#f80;
2662 float:right;
2663 font-size:12px;
2664 font-weight:bold;
2665 padding:0 10px;
2666 border-radius: 0 0 5px 5px;
2667}
2668#butterbar-message a {color:#fff !important}
2669#butterbar-message a:hover {text-decoration:underline;}
2670
2671/* --------------------------------------------------------------------------
Scott Maine4d8f1b2012-06-21 18:03:05 -07002672Misc
2673*/
2674
2675
2676.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002677 content: "";
2678 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002679}
2680.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002681 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002682}
2683.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002684 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002685}
2686table.blank th, table.blank td {
2687 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002688 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002689}
2690.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002691 margin: 0.5em 0 2em 0;
2692 color: #000;
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002693 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002694}
2695
Scott Main25c89dd2013-10-07 14:17:55 -07002696.nolist, .nolist ul, .nolist ol {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002697 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002698 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002699}
Scott Main5747d382012-11-30 12:02:42 -08002700#tb .nolist {
2701 margin-left:15px;
2702}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002703
Scott Main8aa725e2013-04-25 10:00:32 -07002704dl.xml>dt {
2705 text-transform:uppercase;
2706}
2707dl.xml dl.attr {
2708 margin-top:0;
2709}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002710
2711pre.classic {
2712 background-color:transparent;
2713 border:none;
2714 padding:0;
2715}
2716
2717p.img-caption {
2718 margin: -10px 0 20px;
2719 font-size:13px;
2720 color:#666;
2721}
2722
Scott Main48dd7f22013-02-21 10:52:02 -08002723div.figure,
2724div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002725 float:right;
2726 clear:right;
2727 margin:10px 0 0 0;
2728 padding:0 0 0 20px;
2729 /* width must be defined w/ an inline style matching the image width */
2730}
2731
Scott Main48dd7f22013-02-21 10:52:02 -08002732div.figure-left {
2733 float:left;
2734 clear:left;
2735 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002736 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002737 /* width must be defined w/ an inline style matching the image width */
2738}
2739
2740img.frame {
2741 border:1px solid #DDD;
2742 padding:4px;
2743}
2744
Scott Maine4d8f1b2012-06-21 18:03:05 -07002745p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002746 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002747 font-size:13px;
2748 color:#666;
2749}
2750
Scott Main24bbcd52012-09-21 14:33:43 -07002751p.code-caption {
Scott Main98a2a712013-07-17 13:15:04 -07002752 margin-bottom: 4px;
Scott Maina07be8e2013-03-06 12:12:21 -08002753 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002754 color:#666;
2755}
2756
Scott Main98a2a712013-07-17 13:15:04 -07002757div.note,
2758div.caution,
Scott Main54d2a9b2012-07-24 14:54:32 -07002759div.warning {
2760 margin: 0 0 15px;
2761}
2762
Scott Main98a2a712013-07-17 13:15:04 -07002763p.note, div.note,
2764p.caution, div.caution,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002765p.warning, div.warning {
2766 padding: 0 0 0 10px;
2767 border-left: 4px solid;
2768}
2769
Scott Main24bbcd52012-09-21 14:33:43 -07002770p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002771 border-color: #258AAF;
2772}
2773
Scott Main24bbcd52012-09-21 14:33:43 -07002774p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002775 border-color: #FF8800;
2776}
2777
Scott Main24bbcd52012-09-21 14:33:43 -07002778p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002779 border-color: #ff4443;
2780}
2781
Scott Main412eaf22012-06-22 14:36:33 -07002782div.note.design {
2783 border-left: 4px solid #33B5E5;
2784}
2785
2786div.note.develop {
2787 border-left: 4px solid #F80;
2788}
2789
2790div.note.distribute {
2791 border-left: 4px solid #9C0;
2792}
2793
2794.note p, .caution p, .warning p {
2795 margin:0 0 5px;
2796}
2797
2798.note p:last-child, .caution p:last-child, .warning p:last-child {
2799 margin-bottom:0;
2800}
2801
Scott Main5b5ff1a2012-09-12 10:29:45 -07002802body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002803 display:block;
2804 float:right;
2805 width:280px;
2806 font-size:20px;
2807 font-style:italic;
2808 line-height:24px;
2809 color:#33B5E5;
2810 margin:0 0 20px 30px;
2811}
2812
Scott Maine4d8f1b2012-06-21 18:03:05 -07002813div.design-announce p {
2814 margin:0 0 10px;
2815}
2816
2817#devdoc-nav a.totop {
2818 display:block;
2819 top:0;
2820 width:inherit;
2821 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2822 text-indent:-9999em;
2823}
2824#devdoc-nav a.totop {
2825 position:fixed;
2826 display:none;
2827}
2828#devdoc-nav a.totop:hover {
2829 background-color:#33B5E5;
2830}
2831
2832.content-footer a.totop {
2833 text-transform:uppercase;
2834 line-height:30px;
2835}
2836
Scott Maindb3678b2012-10-23 14:13:41 -07002837.expandable {
2838 height:34px;
2839 padding-left:20px;
2840 position:relative;
2841}
2842.expandable:before {
2843 content: '';
2844 background-image: url(../images/styles/disclosure_down.png);
2845 background-repeat:no-repeat;
2846 background-position: -12px -9px;
2847 width: 20px;
2848 height: 20px;
2849 display: inline-block;
2850 position: absolute;
2851 top: 0;
2852 left: 0; }
2853}
2854.expandable.expanded:before {
2855 background-image: url(../images/styles/disclosure_up.png);
2856}
2857
Scott Mainaaf76642013-06-19 18:04:30 -07002858/* notice box for cross links between Design/Develop docs */
2859a.notice-developers,
2860a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002861 float:right;
Scott Maine80ddbe2013-07-12 19:22:24 -07002862 clear:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002863 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002864 min-height:50px;
2865 margin:0 0 20px 20px;
2866 border:1px solid #ddd;
2867}
Scott Main5eccda82013-07-30 14:56:45 -07002868a.notice-developers.wide,
2869a.notice-designers.wide {
2870 width:278px;
2871}
Scott Mainaaf76642013-06-19 18:04:30 -07002872a.notice-developers div,
2873a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002874 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002875 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2876 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002877 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002878}
Scott Mainaaf76642013-06-19 18:04:30 -07002879a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002880 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2881 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002882}
2883a.notice-developers:hover,
2884a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002885 background:#eee;
2886}
Scott Mainaaf76642013-06-19 18:04:30 -07002887a.notice-developers h3,
2888a.notice-designers h3 {
Scott Maind2af6d22013-05-13 18:39:06 -07002889 font-size:14px;
2890 font-weight:normal;
2891 text-transform:uppercase;
2892 color:#000 !important;
2893 margin:0;
2894}
Scott Mainaaf76642013-06-19 18:04:30 -07002895a.notice-developers p,
2896a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002897 margin:0;
Scott Main9bfcd732013-05-14 09:14:35 -07002898 line-height:16px;
2899}
Scott Mainaaf76642013-06-19 18:04:30 -07002900a.notice-developers.left,
2901a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002902 margin-left:0;
2903 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002904}
2905
2906
Scott Maind7026f72013-06-17 15:08:49 -07002907/* hide nested list items; companion to hideNestedLists() */
2908.hide-nested li ol,
2909.hide-nested li ul {
2910 display:none;
2911}
2912
2913a.header-toggle {
2914 display:block;
2915 float:right;
2916 text-transform:uppercase;
2917 font-size:.8em !important;
2918 font-weight:normal;
2919 margin-top:2px;
2920}
2921
2922
Dirk Doughertybec14292013-04-10 20:23:40 -07002923/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07002924good/bad example containers
Dirk Doughertybec14292013-04-10 20:23:40 -07002925*/
Scott Maindb3678b2012-10-23 14:13:41 -07002926
Dirk Doughertybec14292013-04-10 20:23:40 -07002927div.example-block {
2928 background-repeat: no-repeat;
Scott Main98a2a712013-07-17 13:15:04 -07002929 background-position:10px 8px;
Dirk Doughertybec14292013-04-10 20:23:40 -07002930 background-color:#ccc;
2931 padding:4px;
2932 margin:.8em auto 1.5em 2em;
2933 width:260px;
2934 float:right;
2935}
2936/* red container */
2937.example-block.bad {
2938 background-image: url(/images/example-bad.png);
2939 background-color:#f4cccc;
2940}
2941/* green container */
2942.example-block.good {
2943 background-image: url(/images/example-good.png);
2944 background-color:#d9ead3;
2945}
2946/* container heading div */
2947#jd-content .example-block .heading {
2948 font-weight:bold;
2949 margin:6px 0 9px 36px;
2950 padding:6px auto;
2951}
2952/* container image (if any) */
2953#jd-content .example-block img {
2954 margin:0;
2955 padding:0px;
2956}
2957
2958.example-block table {
2959 margin:0;
2960}
Scott Maindb3678b2012-10-23 14:13:41 -07002961
Scott Maine4d8f1b2012-06-21 18:03:05 -07002962/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07002963Dialog box for popup messages
Scott Maine4d8f1b2012-06-21 18:03:05 -07002964*/
2965
2966div.dialog {
2967 height:0;
2968 margin:0 auto;
2969}
2970
2971div.dialog>div {
2972 z-index:99;
2973 position:fixed;
2974 margin:70px 0;
2975 width: 391px;
2976 height: 200px;
2977 background: #F7F7F7;
2978-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2979-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
2980box-shadow: 0 0 15px rgba(0,0,0,0.5);
2981}
2982/* IE6 can't position fixed */
2983* html div.dialog div { position:absolute; }
2984
2985
2986div#deprecatedSticker {
2987 display:none;
2988 z-index:99;
2989 position:fixed;
2990 right:15px;
2991 top:114px;
2992 margin:0;
2993 padding:1em;
2994 background:#FFF;
2995 border:1px solid #dddd00;
2996 box-shadow:-5px 5px 10px #ccc;
2997 -moz-box-shadow:-5px 5px 10px #ccc;
2998 -webkit-box-shadow:-5px 5px 10px #ccc;
2999}
3000
3001div#naMessage {
3002 display:none;
3003 width:555px;
3004 height:0;
3005 margin:0 auto;
3006}
3007
3008div#naMessage div {
3009 z-index:99;
3010 width:450px;
3011 position:fixed;
3012 margin:50px 0;
3013 padding:4em 4em 3em;
3014 background:#FFF;
3015 border:1px solid #999;
3016 box-shadow:-10px 10px 40px #888;
3017 -moz-box-shadow:-10px 10px 40px #888;
3018 -webkit-box-shadow:-10px 10px 40px #888;
3019}
3020/* IE6 can't position fixed */
3021* html div#naMessage div { position:absolute; }
3022
3023div#naMessage strong {
3024 font-size:1.1em;
3025}
3026
3027
3028/* --------------------------------------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003029Slideshow Controls & Next/Prev
Scott Maine4d8f1b2012-06-21 18:03:05 -07003030*/
Scott Main98a2a712013-07-17 13:15:04 -07003031.slideshow-next, .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08003032 width: 20px;
3033 height: 36px;
3034 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003035}
3036.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08003037 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003038}
3039.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003040 content: "";
3041 display: table;
3042 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003043}
3044a.slideshow-next, a.slideshow-next:visited {
3045
Scott Mainb7f96372013-02-07 16:56:43 -08003046 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003047
Scott Mainb7f96372013-02-07 16:56:43 -08003048 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003049
3050}
3051
3052a.slideshow-prev, a.slideshow-prev:visited {
3053
Scott Main98a2a712013-07-17 13:15:04 -07003054 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003055
Scott Mainb7f96372013-02-07 16:56:43 -08003056 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003057
3058}
3059
3060.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3061
Scott Main98a2a712013-07-17 13:15:04 -07003062 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003063
3064}
3065
3066.slideshow-next:active, .slideshow-prev:active {
3067
Scott Main98a2a712013-07-17 13:15:04 -07003068 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003069
3070}
3071.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08003072 width: 74px;
Scott Main98a2a712013-07-17 13:15:04 -07003073 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003074}
3075.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003076 display: inline-block;
3077 width: 12px;
3078 height: 12px;
3079 margin: 0 2px 20px 2px;
3080 background: #ccc;
3081 -webkit-border-radius: 50%;
3082 -moz-border-radius: 50%;
3083 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003084}
3085.slideshow-nav a:hover, .slideshow-nav a:focus {
3086
Scott Mainb7f96372013-02-07 16:56:43 -08003087 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003088}
3089
3090.slideshow-nav a:active {
3091
Scott Mainb7f96372013-02-07 16:56:43 -08003092 background: #1e799a;
Scott Main98a2a712013-07-17 13:15:04 -07003093 background: #ebebeb;
Scott Mainb7f96372013-02-07 16:56:43 -08003094 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3095 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3096 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07003097}
3098.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003099 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003100}
3101/* --------------------------------------------------------------------------
3102Tabs
3103*/
3104ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08003105 padding: 0;
Scott Main98a2a712013-07-17 13:15:04 -07003106 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003107}
3108ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003109 content: "";
3110 display: table;
3111 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003112}
3113ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08003114 list-style-type: none;
Scott Main98a2a712013-07-17 13:15:04 -07003115 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003116}
3117ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003118 display: block;
3119 height: 36px;
3120 line-height: 36px;
3121 padding: 0 15px;
3122 margin-right: 2px;
3123 color: #222;
3124 -moz-border-radius-topleft: 2px;
3125 -moz-border-radius-topright: 2px;
3126 -moz-border-radius-bottomright: px;
3127 -moz-border-radius-bottomleft: px;
3128 -webkit-border-radius: 2px 2px px px;
Scott Main98a2a712013-07-17 13:15:04 -07003129 border-radius: 2px 2px px px;
Scott Mainb7f96372013-02-07 16:56:43 -08003130 border-top: solid 1px #ebebeb;
3131 border-left: solid 1px #ebebeb;
3132 border-right: solid 1px #ebebeb;
3133 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003134 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3135 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3136 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3137 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3138 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3139 background-image: linear-gradient(top, #ffffff, #fafafa);
3140 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3141EndColorStr='#fafafa');
3142}
3143ul.tabs li a:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003144 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003145}
3146ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08003147 height: 37px;
3148 color: #33B5E5;
3149 background-color: #f7f7f7;
3150 background-image: none;
3151 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003152}
3153.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08003154 padding: 1.2em;
3155 margin: -1px 0 2em 0;
3156 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003157 -moz-border-radius: 2px;
3158 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08003159 border: solid 1px #ddd;
3160 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003161}
3162/* --------------------------------------------------------------------------
3163Feature Boxes
3164*/
3165.feature-box {
3166 width: 291px;
3167 height: 200px;
3168 position: relative;
3169 background: #F7F7F7;
3170}
3171.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003172 z-index: 100;
3173 position: absolute;
3174 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003175}
3176.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003177 width: 291px;
3178 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003179}
3180.dialog .box-border .top,
3181.dialog .box-border .bottom { width:391px; }
3182
Scott Main98a2a712013-07-17 13:15:04 -07003183.box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003184 width: 1px;
Scott Main98a2a712013-07-17 13:15:04 -07003185 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003186}
3187.box-border .top { top: 0; left: 0 }
3188.box-border .top .left { top: 1px; left: 0 }
3189.box-border .top .right { top: 1px; right: 0 }
3190.box-border .bottom .left { top: -8px; left: 0 }
3191.box-border .bottom { top: 200px; left: 0 }
3192.box-border .bottom .right { top: -8px; right: 0 }
3193
3194.feature-box h4,
3195.dialog h4 {
3196 margin: 15px 18px 10px;
3197 padding:0;
3198}
3199
3200.feature-box p,
3201.dialog p {
3202 margin: 10px 18px;
3203 padding:0;
3204}
3205.feature-box .link,
3206.dialog .link {
3207 border-top: 1px solid #dedede;
3208 bottom: 0;
3209 position: absolute;
3210 width: inherit;
3211}
3212.feature-box a, .feature-box h4,
3213.dialog a, .dialog h4 {
3214 -webkit-transition: color .4s ease;
3215 -moz-transition: color .4s ease;
3216 -o-transition: color .4s ease;
3217 transition: color .4s ease;
3218}
3219.feature-box:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003220 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003221}
3222.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Main98a2a712013-07-17 13:15:04 -07003223.left, .feature-box:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003224 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003225}
3226.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08003227 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003228}
3229/* --------------------------------------------------------------------------
3230Page-Specific Styles
3231*/
Scott Main98a2a712013-07-17 13:15:04 -07003232.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08003233 position: relative;
3234 float: left;
3235 width: 92px;
3236 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003237}
3238.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08003239 color: #fff;
3240 font-size: 11.5px;
3241 width: 82px;
3242 height: 82px;
3243 margin-top:-30px;
3244 line-height: 82px;
3245 text-align: center;
3246 border: solid 5px #fff;
3247 -webkit-border-radius: 50%;
3248 -moz-border-radius: 50%;
3249 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003250}
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265/* ########### REFERENCE DOCS ################## */
3266
3267#packages-nav h2,
3268#classes-nav h2 {
3269 font-size:18px;
3270 margin:0;
3271 padding:0 0 0 4px;
3272}
3273
3274#jd-header {
3275 padding: 0 0 5px;
3276 margin: 20px 0 10px;
3277 font-size:13px;
3278 border-bottom:solid 1px #ccc;
3279}
3280
3281#jd-header h1 {
3282 margin:0;
3283 padding:0;
3284}
3285
3286/* page-top-right container for reference pages (holds
3287links to summary tables) */
3288#api-info-block {
3289 font-size:13px;
3290 margin:20px 0 0;
3291 padding:0 10px 6px;
3292 font-weight:normal;
3293 float:right;
3294 text-align:right;
3295 color:#999;
3296 max-width:70%;
3297}
3298
3299#api-info-block div.api-level {
3300 font-weight:bold;
3301 font-size:inherit;
3302 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003303 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003304 padding:0;
3305 margin:0;
3306}
3307
3308/* inheritance table */
3309.jd-inheritance-table {
3310 border-spacing:0;
3311 margin:0;
3312 padding:0;
3313 font-size:13px;
3314 background-color:transparent;
3315}
3316.jd-inheritance-table tr td {
3317 border: none;
3318 margin: 0;
3319 padding: 0;
3320 background-color:transparent;
3321}
3322.jd-inheritance-table .jd-inheritance-space {
3323 font-weight:bold;
3324 width:1em;
3325}
3326.jd-inheritance-table .jd-inheritance-interface-cell {
3327 padding-left: 17px;
3328}
3329
3330
3331
3332.jd-sumtable a {
3333 text-decoration:none;
3334}
3335
3336.jd-sumtable a:hover {
3337 text-decoration:underline;
3338}
3339
3340/* the link inside a sumtable for "Show All/Hide All" */
3341.toggle-all {
3342 display:block;
3343 float:right;
3344 font-weight:normal;
3345 font-size:0.9em;
3346}
3347
3348/* adjustments for in/direct subclasses tables */
3349.jd-sumtable.jd-sumtable-subclasses {
3350 margin: 1em 0 0 0;
3351 max-width:968px;
3352 background-color:transparent;
3353 font-size:13px;
3354}
3355
3356/* extra space between end of method name and open-paren */
3357.sympad {
3358 margin-right: 2px;
3359}
3360
3361/* right alignment for the return type in sumtable */
3362.jd-sumtable .jd-typecol {
3363 text-align:right;
3364}
3365
3366/* adjustments for the expando table-in-table */
3367.jd-sumtable-expando {
3368 margin:.5em 0;
3369 padding:0;
3370}
3371
3372/* a div that holds a short description */
3373.jd-descrdiv {
3374 padding:3px 1em 0 1em;
3375 margin:0;
3376 border:0;
3377}
3378
3379#jd-content img.jd-expando-trigger-img {
3380 padding:0 4px 4px 0;
3381 margin:0;
3382}
3383
3384.jd-sumtable-subclasses div#subclasses-direct,
3385.jd-sumtable-subclasses div#subclasses-indirect {
3386 margin:0 0 0 13px;
3387}
3388
3389
3390
3391/********* MEMBER REF *************/
3392
3393
3394.jd-details {
3395/* border:1px solid #669999;
3396 padding:4px; */
3397 margin:0 0 1em;
3398}
3399
3400/* API reference: a container for the
3401.tagdata blocks that make up the detailed
3402description */
3403.jd-details-descr {
3404 padding:0;
3405 margin:.5em .25em;
3406}
3407
3408/* API reference: a block containing
3409a detailed description, a params table,
3410seealso list, etc */
3411.jd-tagdata {
3412 margin:.5em 1em;
3413}
3414
3415.jd-tagdata p {
3416 margin:0 0 1em 1em;
3417}
3418
3419/* API reference: adjustments to
3420the detailed description block */
3421.jd-tagdescr {
3422 margin:.25em 0 .75em 0;
3423}
3424
3425.jd-tagdescr ol,
3426.jd-tagdescr ul {
3427 margin:0 2.5em;
3428 padding:0;
3429}
3430
3431.jd-tagdescr table,
3432.jd-tagdescr img {
3433 margin:.25em 1em;
3434}
3435
3436.jd-tagdescr li {
3437margin:0 0 .25em 0;
3438padding:0;
3439}
3440
3441/* API reference: heading marking
3442the details section for constants,
3443attrs, methods, etc. */
3444h4.jd-details-title {
3445 font-size:1.15em;
3446 background-color: #E2E2E2;
3447 margin:1.5em 0 .6em;
3448 padding:3px 95px 3px 3px; /* room for api-level */
3449}
Scott Mainab4daf42012-11-30 11:27:17 -08003450body.google h4.jd-details-title {
3451 background-color: #FFF;
3452 padding-top:5px;
3453 border-top: 1px solid #ccc;
3454}
3455body.google table.jd-sumtable th {
3456 background-color: #FFF;
3457 color:#000;
3458}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003459
3460h4.jd-tagtitle {
3461 margin:0;
3462}
3463
3464h4 .normal {
3465 font-weight:normal;
3466}
3467
3468/* API reference: heading for "Parameters", "See Also", etc.,
3469in details sections */
3470h5.jd-tagtitle {
3471 margin:0 0 .25em 0;
3472 font-size:1em;
3473}
3474
3475.jd-tagtable {
3476 margin:0;
3477 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003478 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003479}
3480
3481.jd-tagtable td,
3482.jd-tagtable th {
3483 border:none;
3484 background-color:#fff;
3485 vertical-align:top;
3486 font-weight:normal;
3487 padding:2px 10px;
3488}
3489
3490.jd-tagtable th {
3491 font-style:italic;
3492}
3493
3494/* Inline api level indicator for methods */
3495div.api-level {
3496 font-size:.8em;
3497 font-weight:normal;
3498 color:#999;
3499 float:right;
3500 padding:0 8px 0;
3501 margin-top:-30px;
3502}
3503
3504table.jd-tagtable td,
3505table.jd-tagtable th {
3506 background-color:transparent;
3507}
3508
3509table.jd-tagtable th {
3510 color:inherit;
3511}
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535/* SEARCH FILTER */
3536
Scott Main0e76e7e2013-03-12 10:24:07 -07003537.menu-container {
3538 position:relative;
3539}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003540#search_autocomplete {
3541 font-weight:normal;
3542}
3543
Scott Main0e76e7e2013-03-12 10:24:07 -07003544.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003545 width: 193px;
3546 float: right;
3547}
Scott Main0e76e7e2013-03-12 10:24:07 -07003548.search_filtered_wrapper.docs {
3549 width:875px;
3550 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003551 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003552 top:26px;
3553 right:66px;
3554}
3555.suggest-card {
3556 position:relative;
3557 width:170px;
3558 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003559 padding:5px;
3560 border: solid 1px #C5C5C5;
3561 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003562 top: 15px;
3563 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003564 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3565 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3566 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3567}
Scott Main0e76e7e2013-03-12 10:24:07 -07003568.suggest-card.reference {
3569 position:absolute;
3570 z-index:999;
3571 min-width:171px; /* +padding and border makes this match input width */
3572 min-height:93px; /* add 3px because this has 1 not 4px top border */
3573 width:auto;
3574 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003575 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003576}
3577.suggest-card.develop {
3578 z-index:997;
3579 border-top: solid 4px #F80;
3580 float:right;
3581}
3582.suggest-card.design {
3583 z-index:996;
3584 border-top: solid 4px #33b5e5;
3585 float:right;
3586}
3587.suggest-card.distribute {
3588 z-index:995;
3589 border-top: solid 4px #9C0;
3590 float:right;
3591}
3592.child-card {
3593 width:100%;
3594}
3595.suggest-card.dummy {
3596 width:172px;
3597 float:right;
3598 border:0;
3599 background:transparent;
3600 -moz-box-shadow: none;
3601 -webkit-box-shadow: none;
3602 box-shadow: none;
3603}
3604
3605ul.search_filtered {
3606 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003607 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003608 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003609 padding: 0;
3610}
Scott Main0e76e7e2013-03-12 10:24:07 -07003611.search_filtered .jd-selected {
3612 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003613 cursor:pointer;
3614}
Scott Main0e76e7e2013-03-12 10:24:07 -07003615.search_filtered .jd-selected,
3616.search_filtered .jd-selected a {
3617 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003618}
3619
3620.no-display {
3621 display: none;
3622}
3623
Scott Main0e76e7e2013-03-12 10:24:07 -07003624.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003625 font-size: 0.81em;
3626 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003627 margin: 0 0 2px;
3628 padding: 0;
3629 line-height:1.5em;
3630}
3631
Scott Main0e76e7e2013-03-12 10:24:07 -07003632.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003633 padding:0 5px;
3634 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003635 display:inline-block;
3636 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003637}
3638
Scott Main0e76e7e2013-03-12 10:24:07 -07003639.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003640 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003641 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003642 border: none;
3643 margin: 8px 0 2px;
3644 padding:1px 5px;
3645 line-height:1.5em;
3646}
Scott Main0e76e7e2013-03-12 10:24:07 -07003647.search_filtered li.header.small {
3648 font-size:0.85em;
3649}
Scott Main7e447ed2013-02-19 17:22:37 -08003650
Scott Main98a2a712013-07-17 13:15:04 -07003651.suggest-card.reference
Scott Main0e76e7e2013-03-12 10:24:07 -07003652.search_filtered li.header {
3653 color:#aaa;
3654 font-size: 0.81em;
3655}
3656
3657.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003658 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003659}
3660
3661.show-item {
3662 display: table-row;
3663}
3664.hide-item {
3665 display: hidden;
3666}
3667
3668
3669
3670
3671
3672/* SEARCH RESULTS */
3673
Scott Maine4d8f1b2012-06-21 18:03:05 -07003674
3675#leftSearchControl .gsc-twiddle {
3676 background-image : none;
3677}
3678
3679#leftSearchControl td, #searchForm td {
3680 border: 0px solid #000;
3681 padding:0;
3682}
3683
3684#leftSearchControl .gsc-resultsHeader .gsc-title {
3685 padding-left : 0px;
3686 font-weight : bold;
3687 font-size : 13px;
3688 color:#006699;
3689 display : none;
3690}
3691
3692#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3693 display : none;
3694}
3695
3696#leftSearchControl .gsc-resultsRoot {
3697 padding-top : 6px;
3698}
3699
3700#leftSearchControl div.gs-visibleUrl-long {
3701 display : block;
3702 color:#006699;
3703}
3704
3705#leftSearchControl .gsc-webResult {
3706 padding:0 0 20px 0;
3707}
3708
3709.gsc-webResult div.gs-visibleUrl-short,
3710table.gsc-branding,
3711.gsc-clear-button {
3712 display : none;
3713}
3714
3715.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3716.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3717#leftSearchControl a,
3718#leftSearchControl a b {
3719 color:#006699;
3720}
3721
3722.gsc-resultsHeader {
3723 display: none;
3724}
3725
3726/* Disable built in search forms */
3727.gsc-control form.gsc-search-box {
3728 display : none;
3729}
3730table.gsc-search-box {
3731 margin:6px 0 0 0;
3732 border-collapse:collapse;
3733}
3734
3735td.gsc-input {
3736 padding:0 2px;
3737 width:100%;
3738 vertical-align:middle;
3739}
3740
3741input.gsc-input {
3742 border:1px solid #BCCDF0;
3743 width:99%;
3744 padding-left:2px;
3745 font-size:.95em;
3746}
3747
3748td.gsc-search-button {
3749 text-align: right;
3750 padding:0;
3751 vertical-align:top;
3752}
3753
3754
3755#searchResults {
3756 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3757(it doesn't) */
3758 height:auto;
3759}
3760
3761#searchResults .gsc-control {
3762 position:relative;
3763 width:auto;
3764 padding:0 0 10px;
3765}
3766
3767#searchResults .gsc-tabsArea {
3768 position:relative;
3769 white-space:nowrap;
3770 float:left;
3771 width:200px;
3772}
3773
3774#searchResults .gsc-above-wrapper-area {
3775 display:none;
3776}
3777
3778#searchResults .gsc-resultsbox-visible {
3779 float:left;
3780 width:720px;
3781 margin-left:20px;
3782}
3783
3784#searchResults .gsc-tabHeader {
3785 padding: 3px 6px;
3786 position:relative;
3787 width:auto;
3788 display:block;
3789}
3790
3791#searchResults h2#searchTitle {
3792 padding:0;
3793 margin:5px 0;
3794 border:none;
3795}
3796
3797#searchResults h2#searchTitle em {
3798 font-style:normal;
3799 color:#33B5E5;
3800}
3801
3802#searchResults .gsc-table-result {
3803 margin:5px 0 10px 0;
3804 background-color:transparent;
3805}
3806#searchResults .gs-web-image-box, .gs-promotion-image-box {
3807 width:120px;
3808}
3809#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3810 max-width:120px;
3811}
3812
3813#searchResults .gsc-table-result .gsc-thumbnail {
3814 padding:0 20px 0 0;
3815}
3816
3817#searchResults td {
3818 background-color:transparent;
3819}
3820
3821#searchResults .gsc-expansionArea {
3822 position:relative;
3823}
3824#searchResults .gsc-tabsArea .gsc-cursor-box {
3825 width:200px;
3826 padding:20px 0 0 1px;
3827}
3828#searchResults .gsc-cursor-page {
3829 display:inline-block;
3830 float:left;
3831 margin:-1px 0 0 -1px;
3832 padding:0;
3833 height:27px;
3834 width:27px;
3835 text-align:center;
3836 line-height:2;
3837}
3838
3839#searchResults .gsc-tabHeader.gsc-tabhInactive,
3840#searchResults .gsc-cursor-page {
3841 text-decoration:none;
3842 color:#258AAF;
3843 border: solid 1px #DADADA;
3844}
3845
3846#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3847#searchResults .gsc-cursor-page:hover {
3848 border-color: #DBDBDB;
3849 background-color: #F3F3F3;
3850 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3851 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3852 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3853 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3854 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3855 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3856 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3857EndColorStr='#ececec');
3858 color: #33B5E5;
3859}
3860
3861#searchResults .gsc-tabHeader.gsc-tabhActive,
3862#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3863#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3864#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3865 color:#fff;
3866 background-color: #09C;
3867 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3868 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3869 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3870 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3871 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3872 background-image: linear-gradient(top, #2FADDB, #09C);
3873 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3874 border: 1px solid #3990AB;
3875 z-index:100;
3876}
3877
3878}
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892/*********** PREVIOUSLY dac-styles.css ***************/
3893
3894
Scott Maine4d8f1b2012-06-21 18:03:05 -07003895#header {
3896 border-bottom:0;
3897}
3898
3899#header .wrap {
3900 max-width:940px;
3901 height:41px;
3902 border-bottom:1px solid;
3903 border-color: #ccc;
3904 position:relative;
3905}
3906
3907.about #header .wrap {
3908 border-color: #9933CC;
3909}
3910
3911.design #header .wrap {
3912 border-color: #33b5e5;
3913}
3914
3915.develop #header .wrap {
3916 border-color: #F80;
3917}
3918
3919.distribute #header .wrap {
3920 border-color: #9C0;
3921}
3922
3923.logo a {
3924 width:123px;
3925 float:left;
3926}
3927
3928#header .logo {
3929 margin-top: -6px;
3930 margin-left: 0px;
3931 margin-bottom:0px;
3932 width: 160px;
3933 padding-right:10px;
3934}
3935
3936.search {
3937 height:25px;
3938 margin-top: -3px;
3939 margin-bottom: 0px;
3940}
3941
3942
3943
3944/* Quicknav */
3945.btn-quicknav {
3946 width:20px;
3947 height:28px;
3948 float:left;
3949 margin-left:6px;
3950 padding-right:10px;
3951 position:relative;
3952 cursor:pointer;
3953 border-right:1px solid #CCC;
3954}
3955
3956.btn-quicknav a {
3957 zoom:1;
3958 position:absolute;
3959 top:13px;
3960 left:5px;
3961 display:block;
3962 text-indent:-9999em;
3963 width:10px;
3964 height:5px;
3965 background:url(../images/quicknav_arrow.png) no-repeat;
3966}
3967
3968.btn-quicknav a.arrow-active {
3969 background-position: 0 -5px;
3970 display:none;
3971}
3972
3973#header-wrap.quicknav a.arrow-inactive {
3974 display:none;
3975}
3976
3977.btn-quicknav.active a.arrow-active {
3978 display:block;
3979}
3980
3981.nav-x li {
3982 display:block;
3983 float:left;
3984 margin-right:45px;
3985 -webkit-transition: all 0.25s linear;
3986 -moz-transition: all 0.25s linear;
3987 -ms-transition: all 0.25s linear;
3988 -o-transition: all 0.25s linear;
3989 transition: all 0.25s linear;
3990}
3991
3992#header-wrap.quicknav .nav-x li {
3993 min-width:160px;
3994 margin-right:20px;
3995}
3996
3997#header-wrap.quicknav li.last {
3998 margin-right:0px;
3999}
4000
4001#quicknav {
Scott Main98a2a712013-07-17 13:15:04 -07004002 float:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004003 clear:both;
4004 margin-left:180px;
4005 margin-top:-30px;
4006 display:none;
4007 overflow:hidden;
4008}
4009
4010#header-wrap.quicknav #quicknav {
4011
4012}
4013
4014#quicknav ul {
4015 margin:10px 0;
4016 padding:0;
4017}
4018
4019#quicknav ul li.design {
4020 border-top:1px solid #33b5e5;
4021}
4022
4023#quicknav ul li.develop {
4024 border-top:1px solid #FF8800;
4025}
4026
4027#quicknav ul li.distribute {
4028 border-top:1px solid #99cc00;
4029}
4030
4031#quicknav ul li {
4032 display:block;
4033 float:left;
4034 margin:0 20px 0 0;
4035 min-width:140px;
4036}
4037
4038#quicknav ul li.last {
4039 margin-right:0px;
4040}
4041
4042#quicknav ul li ul li {
4043 float:none;
4044}
4045
4046#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07004047 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004048}
4049
4050#quicknav ul li li ul,
4051#quicknav ul li li ul li {
4052 margin:0;
4053}
4054
4055#quicknav ul li li ul li:before {
4056 content:"\21B3";
4057}
4058
4059#header-wrap {
4060 -webkit-transition: all 0.25s ease-out;
4061 -moz-transition: all 0.25s ease-out;
4062 -ms-transition: all 0.25s ease-out;
4063 -o-transition: all 0.25s ease-out;
4064 transition: all 0.25s ease-out;
4065
4066}
4067
4068#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07004069 height:196px;
Scott Main98a2a712013-07-17 13:15:04 -07004070
Scott Maine4d8f1b2012-06-21 18:03:05 -07004071}
4072
4073/* SEARCH AND MORE */
4074.search {
4075 position: absolute;
4076 width: 50px;
4077 height:28px;
4078 display: block;
4079 margin-top:-3px;
4080 margin-bottom:7px;
4081 overflow:hidden;
4082 z-index:100;
4083 right:54px;
4084 -webkit-transition: width 0.4s ease;
4085 -moz-transition: width 0.4s ease;
4086 -o-transition: width 0.4s ease;
4087 transition: width 0.4s ease;
4088}
4089
4090.search #search-btn {
4091 width:50px;
4092 height:28px;
4093 background:url(../images/icon_search.png) no-repeat;
4094 float:left;
4095}
4096
4097.search-inner {
4098 width:245px;
4099}
4100
4101.search:hover, .search.active {
4102 width:245px;
4103}
4104
4105.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004106 position: absolute;
4107 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07004108}
4109
4110.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08004111 width: 214px;
4112 height: 1px;
4113 top: 24px;
4114 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07004115}
4116
Scott Main98a2a712013-07-17 13:15:04 -07004117.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004118 height: 5px;
4119 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004120}
4121
4122.search .left {
4123 top: 22px;
4124 left: 56px;
4125 background-color:#CCC;
4126}
4127
4128.search .right {
4129 top: 22px;
4130 left: 238px;
4131 background-color:#CCC;
4132}
4133
4134.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08004135 margin-top: 2px;
4136 width: 162px;
4137 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004138}
4139
4140.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08004141 color: #2f2f2f;
4142 font-size: 0.95em;
Scott Main98a2a712013-07-17 13:15:04 -07004143 width: 178px;
Scott Mainb7f96372013-02-07 16:56:43 -08004144 border: none;
Scott Main98a2a712013-07-17 13:15:04 -07004145 margin-left: 6px;
4146 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004147 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08004148 background-color: transparent;
4149 border-bottom:1px solid #CCC;
4150 padding:0 0 0 4px;
4151 outline:none;
4152 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004153}
4154
4155.search:hover form input {
4156 border-bottom:1px solid #33B5E5;
4157}
4158
4159.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004160 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004161}
4162
4163.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08004164 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004165}
4166
4167.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08004168 color: #222;
4169 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07004170}
4171
4172.moremenu {
4173 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08004174 position: relative;
4175 width: 50px;
4176 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004177 display: block;
4178 margin-top:-3px;
4179 margin-bottom:7px;
4180 overflow:hidden;
4181 -webkit-transition: width 0.25s ease;
4182 -moz-transition: width 0.25s ease;
4183 -o-transition: width 0.25s ease;
4184 transition: width 0.25s ease;
4185}
4186
4187.moremenu #more-btn {
4188 width:40px;
4189 height:28px;
4190 background:url(../images/icon_more.png) no-repeat;
4191 border-left:1px solid #CCC;
4192 float:left;
4193 cursor:pointer;
4194}
4195
4196.moremenu:hover #more-btn {
4197 background-position:0 -28px;
4198}
4199
4200.morehover {
4201 position:absolute;
4202 right:6px;
4203 top:-9px;
4204 width:40px;
4205 height:35px;
4206 z-index:99;
4207 overflow:hidden;
4208
4209 -webkit-opacity:0;
4210 -moz-opacity:0;
4211 -o-opacity:0;
4212 opacity:0;
4213
4214 -webkit-transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004215 -moz-transform-origin:100% 0%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004216 -o-transform-origin:100% 0%;
4217 transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004218
Scott Maine4d8f1b2012-06-21 18:03:05 -07004219 -webkit-transition-property: -webkit-opacity;
4220 -webkit-transition-duration: .25s;
4221 -webkit-transition-timing-function:ease;
4222
Scott Main0e76e7e2013-03-12 10:24:07 -07004223 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004224 -moz-transition-duration: .25s;
4225 -moz-transition-timing-function:ease;
4226
Scott Main0e76e7e2013-03-12 10:24:07 -07004227 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004228 -o-transition-duration: .25s;
4229 -o-transition-timing-function:ease;
Scott Main98a2a712013-07-17 13:15:04 -07004230
Scott Main0e76e7e2013-03-12 10:24:07 -07004231 transition-property: opacity;
4232 transition-duration: .25s;
4233 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004234}
4235
Scott Maine05e6f92013-01-29 13:34:17 -08004236.morehover:hover,
4237.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004238 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07004239 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004240 width:268px;
4241 -webkit-transition-property:height, -webkit-opacity;
4242}
4243
4244.morehover .top {
4245 width:268px;
4246 height:39px;
4247 background:url(../images/more_top.png) no-repeat;
4248}
4249
4250.morehover .mid {
4251 width:228px;
4252 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004253 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004254}
4255
4256.morehover .mid .header {
4257 border-bottom:1px solid #ccc;
4258 font-weight:bold;
4259}
4260
4261.morehover .bottom {
4262 width:268px;
4263 height:6px;
4264 background:url(../images/more_bottom.png) no-repeat;
4265}
4266
4267.morehover ul {
4268 margin:10px 10px 20px 0;
4269}
4270
4271.morehover ul li {
4272 list-style:none;
4273}
4274
4275.morehover ul li.active a,
4276.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004277 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004278}
4279
4280.morehover ul li.active img {
4281 margin-right:4px;
4282}
4283
4284
4285
4286
4287/* MARQUEE */
4288.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004289 width:100%;
4290 overflow:hidden;
4291 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004292}
4293.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004294 position:absolute;
4295 top:50%;
4296 left:0px;
4297 margin-top:-36px;
4298 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004299}
4300.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004301 position:absolute;
4302 top:50%;
4303 margin-top:-36px;
4304 z-index:99;
4305 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004306}
4307
4308.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004309 position:absolute;
4310 bottom:20px;
4311 width:100%;
4312 text-align:center;
4313 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004314}
4315.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004316 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004317}
4318.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004319 display: inline-block;
4320 width:12px;
4321 height:12px;
4322 text-indent:-8000px;
4323 list-style:none;
4324 margin: 0 2px;
4325 border-radius:6px;
4326 background-color:#ccc;
4327 cursor:pointer;
Scott Main98a2a712013-07-17 13:15:04 -07004328 -webkit-transition:color .5s ease-in;
4329 -moz-transition:color .5s ease-in;
4330 -o-transition:color .5s ease-in;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004331 transition:color .5s ease-in;
4332}
4333.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004334 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004335}
4336.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004337 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004338}
4339.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004340 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004341}
4342.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004343 display:inline;
4344 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004345}
4346
4347
4348
4349
4350a.download-sdk {
4351 float:right;
4352 margin:-10px 0;
4353 height:30px;
4354 padding-top:4px;
4355 padding-bottom:0px;
4356}
4357
4358#nav-x {
4359 padding-top: 14px;
4360}
4361
Scott Main1d62fa82012-07-17 13:15:12 -07004362#nav-x .wrap {
4363 min-height:34px;
4364}
4365
Scott Maine4d8f1b2012-06-21 18:03:05 -07004366#nav-x .wrap,
4367#searchResults.wrap {
4368 max-width:940px;
4369 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004370}
4371
Scott Maina214d842012-07-16 17:14:40 -07004372#searchResults.wrap #leftSearchControl {
4373 min-height:700px
4374}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004375.nav-x {
4376 margin-left:0;
4377 margin-bottom:0;
4378}
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389/*
4390 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4391 */
4392
4393.jspContainer {
4394 overflow: hidden;
4395 position: relative;
4396}
4397
4398.jspPane {
4399 position: absolute;
Scott Main2d967c62013-03-11 09:21:07 -07004400 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004401}
4402
4403.jspVerticalBar {
4404 position: absolute;
4405 top: 0;
4406 right: 0;
4407 width: 4px;
4408 height: 100%;
4409 background: #f5f5f5;
4410}
4411
4412.jspHorizontalBar {
4413 position: absolute;
4414 bottom: 0;
4415 left: 0;
4416 width: 100%;
4417 height: 4px;
4418 background: #f5f5f5;
4419}
4420
4421.jspVerticalBar *,
4422.jspHorizontalBar * {
4423 margin: 0;
4424 padding: 0;
4425}
4426.jspCap {
4427 display: block;
4428}
4429
4430.jspVerticalBar .jspCap {
4431 height: 4px;
4432}
4433
4434.jspHorizontalBar .jspCap {
4435 width: 0;
4436 height: 100%;
4437}
4438
4439.jspHorizontalBar .jspCap {
4440 float: left;
4441}
4442
4443.jspTrack {
4444 position: relative;
4445}
4446
4447.jspDrag {
4448 background: #bbb;
4449 position: relative;
4450 top: 0;
4451 left: 0;
4452 cursor: pointer;
4453}
4454
4455.jspDrag:hover,
4456.jspDrag:active {
4457 border-color: #09c;
4458 background-color: #4cadcb;
4459 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4460 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4461 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4462 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4463 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4464 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Main98a2a712013-07-17 13:15:04 -07004465 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004466}
4467
4468.jspHorizontalBar .jspTrack,
4469.jspHorizontalBar .jspDrag {
4470 float: left;
4471 height: 100%;
4472}
4473
4474.jspArrow {
4475 background: #999;
4476 text-indent: -20000px;
4477 display: block;
4478 cursor: pointer;
4479}
4480
4481.jspArrow.jspDisabled {
4482 cursor: default;
4483 background: #ccc;
4484}
4485
4486.jspVerticalBar .jspArrow {
4487 height: 16px;
4488}
4489
4490.jspHorizontalBar .jspArrow {
4491 width: 16px;
4492 float: left;
4493 height: 100%;
4494}
4495
4496.jspVerticalBar .jspArrow:focus {
4497 outline: none;
4498}
4499
4500.jspCorner {
4501 float: left;
4502 height: 100%;
4503}
4504
4505/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4506* html .jspCorner {
4507 margin: 0 -3px 0 0;
4508}
4509/******* end of jscrollpane *********/
4510
4511
4512
4513
4514
4515/************ DEVELOP HOMEPAGE ******************/
4516
4517/* Slideshow */
4518.slideshow-develop {
4519 height: 300px;
4520 width: 940px;
4521 position: relative;
4522 overflow:hidden;
4523}
4524.slideshow-develop .frame {
4525 width: 940px;
4526 height: 300px;
4527}
4528.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004529 max-width:350px;
4530 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004531 margin:20px 0 0 90px;
4532 -webkit-transform: perspective(800px ) rotateY( 35deg );
4533 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4534 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4535 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4536}
4537.slideshow-develop img.play.no-shadow {
4538 box-shadow: none;
4539 -moz-box-shadow: none;
4540 -webkit-box-shadow: none;
4541}
4542.slideshow-develop img.play.no-transform {
4543 -webkit-transform: none;
4544}
4545.slideshow-develop a.slideshow-next {
4546 background: url(../images/arrow-right-develop.png);
4547}
4548.slideshow-develop a.slideshow-prev {
4549 background: url(../images/arrow-left-develop.png);
4550}
4551.slideshow-develop .content-right {
4552 float: left;
4553}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004554.slideshow-develop .content-right h2 {
4555 padding:0;
4556 margin-bottom:10px;
4557 border:none;
4558}
4559.slideshow-develop .item {
4560 height: 300px;
4561 width: 940px;
4562}
4563.slideshow-develop .pagination ul li.active {
4564 background-color: #F80;
4565}
4566.slideshow-develop .pagination ul li.active:hover {
4567 background-color: #F80;
4568}
Scott Main0e585702012-10-22 20:30:22 -07004569.slideshow-develop .item hr {
4570 margin:5px 0 10px;
4571}
4572.slideshow-develop .item p {
4573 margin:10px 0;
4574}
4575.slideshow-develop .item p.title-intro {
4576 position:absolute;
4577 margin:0;
4578}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004579
4580/* Feeds */
4581.feed ul {
4582 margin: 0;
4583}
4584.feed .feed-nav {
4585 height: 25px;
4586 border-bottom: 1px solid #CCC;
4587}
4588.feed .feed-nav li {
4589 list-style: none;
4590 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004591 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004592 margin-right: 25px;
4593 cursor: pointer;
4594}
4595.feed .feed-nav li.active {
4596 color: #000;
4597 border-bottom: 4px solid #F80;
4598}
4599.feed .feed-container {
4600 overflow: hidden;
4601 width: 460px;
4602}
4603.feed .feed-container .feed-frame {
4604 width: 1000px;
4605}
4606.feed .feed-container .feed-frame ul {
4607 float: left;
4608 width:460px;
4609}
4610.feed .feed-container .feed-frame ul ul {
4611 float: none;
4612 margin:10px 0 0 30px;
4613}
4614.feed .feed-container .feed-frame li {
4615 list-style: none;
4616 margin: 20px 0 20px 0;
4617 width: 460px;
4618 height:93px;
4619}
4620.feed .feed-container .feed-frame li.playlist {
4621 height:auto;
4622}
4623.feed .feed-container .feed-frame li.playlist a {
4624 height:93px;
4625 display:block;
4626}
4627.feed .feed-container .feed-frame li.more {
4628 height:20px;
4629 margin:10px 0 5px 5px;
4630}
4631.feed .feed-container .feed-frame li.more a {
4632 height:inherit;
4633}
4634.feed .feed-container .feed-frame li.playlist-video {
4635 list-style: none;
4636 margin: 0;
4637 width: 460px;
4638 height:55px;
4639 font-size:12px;
4640}
4641.feed .feed-container .feed-frame li.playlist-video a {
4642 height:45px;
4643 padding:5px;
4644}
4645.feed .feed-container .feed-frame li.playlist-video h5 {
4646 font-size:12px;
4647 line-height:13px;
4648 margin:0;
4649}
4650.feed .feed-container .feed-frame li.playlist-video p {
4651 margin:5px 0 0;
4652 line-height:15px;
4653}
4654.feed-container .feed-frame div.feed-image {
4655 float: left;
4656 border: 1px solid #999;
4657 margin:0 20px 0 0;
4658 width:122px;
4659 height:92px;
4660 background:url('../images/blog-default.png') no-repeat 0 0;
4661 background-size:180px;
4662}
4663#jd-content .feed .feed-container .feed-frame li img {
4664 float: left;
4665 border: 1px solid #999;
4666 margin:0 20px 0 0;
4667 width:122px;
4668 height:92px;
4669}
4670#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4671 width:inherit;
4672 height:inherit;
4673}
4674
4675.feed .feed-container .feed-frame li a,
4676.feed .feed-container .feed-frame li a:active {
4677 color:#555 !important;
4678}
4679
4680.feed .feed-container .feed-frame li a:hover,
4681.feed .feed-container .feed-frame li a:hover * {
4682 color:#7AA1B0 !important;
4683}
4684
4685/* Video player */
4686#player-wrapper {
4687 display:none;
4688 margin: -1px auto 0;
4689 position: relative;
4690 width: 940px;
4691 height: 0px;
4692}
4693#player-frame {
4694 background: #EFEFEF;
4695 border: 1px solid #CCC;
4696 padding: 0px 207px;
4697 z-index: 10; /* stay above marque, but below search suggestions */
4698 width: 525px;
4699 height: 330px;
4700 position: relative;
4701}
4702
4703
4704
4705/************ DISTRIBUTE HOMEPAGE ***************/
4706
4707.marquee {
4708 width: 760px;
4709}
4710.marquee .main-img {
4711 float: left;
4712 margin-top: 20px;
4713 width: 490px;
4714}
4715.marquee .copy {
4716 width: 270px;
4717 float: left;
4718 margin-top: 30px;
4719}
4720.distribute-features {
4721 margin: 0;
4722}
4723.distribute-features ul {
4724 margin: 0;
4725}
4726.distribute-features ul li {
4727 list-style: none;
4728 float: left;
4729 border-top: 1px solid #9C0;
4730 width: 220px;
4731 margin-right: 50px;
4732}
4733.distribute-features ul li.last {
4734 margin-right: 0px;
4735}
4736
Dirk Doughertye5862e82013-05-15 02:19:54 -07004737.distribute-features .distribute-link li a {
4738 color:red !important;
4739}
4740
4741.distribute-features .distribute-link li a,
4742.distribute-features .distribute-link li a:active {
4743 color:#555 !important;
4744}
4745
4746.distribute-features .distribute-link li a:hover,
4747.distribute-features .distribute-link li a:hover * {
4748 color:#7AA1B0 !important;
4749}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004750
Scott Main8fa53512012-11-30 20:16:42 -08004751
Scott Maine4d8f1b2012-06-21 18:03:05 -07004752/************ DEVELOP TOPIC CONTAINERS ************/
4753
4754.landing-banner,
4755.landing-docs {
4756 margin:20px 0 0;
4757}
Scott Main8fa53512012-11-30 20:16:42 -08004758.landing-banner div:first-child,
4759.landing-docs div:first-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004760.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004761 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004762 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004763}
Scott Main8fa53512012-11-30 20:16:42 -08004764.landing-banner div:last-child,
4765.landing-docs div:last-child,
Scott Main0e71cee2012-08-07 13:59:43 -07004766.landing-docs .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004767 margin-right:0;
4768}
4769
4770.landing-banner h1 {
4771 margin-top:0;
4772}
Scott Main0e71cee2012-08-07 13:59:43 -07004773.landing-docs {
4774 clear:left;
Scott Maine6850d22012-10-08 15:59:01 -07004775 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004776}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004777.landing-docs h3 {
4778 font-size:14px;
4779 line-height:21px;
4780 color:#555;
4781 text-transform:uppercase;
4782 border-bottom:1px solid #CCC;
4783 margin:0 0 20px;
4784}
4785.landing-docs a {
4786 color:#333 !important;
4787}
Robert Ly40e90992012-11-28 17:46:17 -08004788
Scott Maine4d8f1b2012-06-21 18:03:05 -07004789.landing-docs a:hover,
4790.landing-docs a:hover * {
4791 color:#7AA1B0 !important
4792}
4793
Robert Ly40e90992012-11-28 17:46:17 -08004794.landing-docs .normal-links a {
4795 color:#258aaf !important;
4796}
4797
Scott Maine4d8f1b2012-06-21 18:03:05 -07004798.plusone {
4799 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004800}
Scott Main9edfa6d2012-08-14 15:04:40 -07004801
4802
4803
4804/************* HOME/LANDING PAGE *****************/
4805
4806.slideshow-home {
4807 height: 500px;
4808 width: 940px;
4809 border-bottom: 1px solid #CCC;
4810 position: relative;
4811 margin: 0;
4812}
4813.slideshow-home .frame {
4814 width: 940px;
4815 height: 500px;
4816}
4817.slideshow-home .content-left {
4818 float: left;
4819 text-align: center;
4820 vertical-align: center;
4821 margin: 0 0 0 35px;
4822}
4823.slideshow-home .content-right {
4824 margin: 80px 0 0 0;
4825}
4826.slideshow-home .content-right p {
4827 margin-bottom: 10px;
4828}
4829.slideshow-home .content-right p:last-child {
4830 margin-top: 15px;
4831}
4832.slideshow-home .content-right h1 {
4833 padding:0;
4834}
4835.slideshow-home .item {
4836 height: 500px;
4837 width: 940px;
4838}
4839.home-sections {
4840 padding: 30px 20px 20px;
4841 margin: 20px 0;
4842 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4843}
4844.home-sections ul {
4845 margin: 0;
4846}
4847.home-sections ul li {
4848 float: left;
4849 display: block;
4850 list-style: none;
4851 width: 170px;
4852 height: 35px;
4853 border: 1px solid #ccc;
4854 background: white;
4855 margin-right: 10px;
4856 border-radius: 1px;
4857 -webkit-border-radius: 1px;
4858 -moz-border-radius: 1px;
4859 box-shadow: 1px 1px 5px #EEE;
4860 -webkit-box-shadow: 1px 1px 5px #EEE;
4861 -moz-box-shadow: 1px 1px 5px #EEE;
4862 background: white;
4863}
4864.home-sections ul li:hover {
4865 background: #F9F9F9;
4866 border: 1px solid #CCC;
4867}
4868.home-sections ul li a,
4869.home-sections ul li a:hover {
4870 font-weight: bold;
4871 margin-top: 8px;
4872 line-height: 18px;
4873 float: left;
4874 width: 100%;
4875 text-align: center;
4876 color: #09c !important;
4877}
4878.home-sections ul li a {
4879 font-weight: bold;
4880 margin-top: 8px;
4881 line-height: 18px;
4882 float: left;
4883 width:100%;
4884 text-align:center;
4885}
4886.home-sections ul li img {
4887 float: left;
4888 margin: -8px 0 0 10px;
4889}
4890.home-sections ul li.last {
4891 margin-right: 0px;
4892}
Scott Mainf5089842012-08-14 16:31:07 -07004893.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07004894 margin-top: -40px;
4895}