blob: 69418df149930474a6c4497215673f728ab4e75c [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
Scott Main70557ee2013-10-30 14:47:40 -0700396#nav.samples-nav li li li {
397 font-size:13px;
398}
399#nav.samples-nav li li li a {
400 padding-top:3px;
401 padding-bottom:3px;
402}
403#nav.samples-nav li li ul > li:last-child {
404 padding-bottom:3px;
405}
406
Scott Maine4d8f1b2012-06-21 18:03:05 -0700407.new,
408.new-child {
409 font-size: .78em;
410 font-weight: bold;
411 color: #ff3d3d;
412 vertical-align:top;
413 white-space:nowrap;
414}
415
416/* content header */
417.content-header {
418 height: 30px;
419 margin:20px 0 25px;
420 padding:0 0 10px;}
421.content-header.just-links {
422 margin-bottom:0;
423 padding-bottom:0;}
Scott Main98a2a712013-07-17 13:15:04 -0700424
Scott Maine4d8f1b2012-06-21 18:03:05 -0700425.content-header h1 {
426 color:#000;
427 margin:0;
428 border-bottom:0;
429 padding:0;
430}
Scott Main07816042013-12-19 12:47:38 -0800431.content-header > div:first-child {
432 height:55px; /* set fixed height for the header div to ensure the
433 next/prev links align with toc on training classes */
434}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700435
436.content-footer {
437 border-top: 1px solid #ccc;
438 margin-top: 10px;
439 padding-top:10px;
440 height: 30px; }
441
442.content-footer .col-9 {
443 margin-left:0;
444}
445.content-footer .col-4 {
446 margin-right:0;
447}
448.content-footer.wrap {
449 width:940px;
450}
451
452.paging-links {
453 position: relative; }
454 .paging-links a {
455 position: absolute; }
456 .paging-links a,
457 .training-nav-top a {
458 font-size: 14px;
459 line-height: 30px;
460 color: #555555;
461 text-decoration: none;
462 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700463 .paging-links .prev-page-link:before,
464 .training-nav-top .prev-page-link:before {
465 content: '';
466 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
467 width: 10px;
468 height: 10px;
469 display: inline-block;
470 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700471 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700472 .training-nav-top .start-class-link,
473 .training-nav-top .start-course-link {
474 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700475 .paging-links .prev-page-link {
476 left: -15px; }
477 .paging-links .next-page-link {
478 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700479 .next-page-link:after,
480 .start-class-link:after,
481 .start-course-link:after,
Scott Main0b2db162013-05-15 01:15:50 -0700482 .next-class-link:after,
483 .go-link:after {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700484 content: '';
485 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
486 width: 10px;
487 height: 10px;
488 display: inline-block;
489 margin-left: 5px; }
Scott Main25c89dd2013-10-07 14:17:55 -0700490 .prev-page-link.inline:before {
491 content: none; }
492 .next-page-link.inline:after {
493 content: none; }
Scott Main98a2a712013-07-17 13:15:04 -0700494
495
Scott Maine4d8f1b2012-06-21 18:03:05 -0700496 .training-nav-top a {
497 display:block;
498 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700499 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700500 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700501 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700502 line-height:28px;
503 text-align:center;
504 border:1px solid #DADADA;
505 border-bottom:0;
506 }
Scott Main5a1123e2012-09-26 12:51:28 -0700507
Scott Maine4d8f1b2012-06-21 18:03:05 -0700508 .training-nav-top a.next-page-link {
509 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700510 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700511 }
Scott Main98a2a712013-07-17 13:15:04 -0700512
Scott Main5a1123e2012-09-26 12:51:28 -0700513 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700514 .training-nav-top a.disabled,
515 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700516 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700517 }
Scott Main98a2a712013-07-17 13:15:04 -0700518
Scott Main5a1123e2012-09-26 12:51:28 -0700519 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700520 .training-nav-top a.disabled:hover,
521 .content-footer a.disabled:hover {
522 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700523 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700524 }
Scott Main98a2a712013-07-17 13:15:04 -0700525
Scott Maine4d8f1b2012-06-21 18:03:05 -0700526 .training-nav-top a.start-class-link,
527 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700528 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700529 }
Scott Main98a2a712013-07-17 13:15:04 -0700530
Scott Main9ee0fae2014-01-23 10:50:57 -0800531 .paging-links a.start-class-link {
532 width:100%;
533 text-align:right;
534 }
535
Scott Main5a1123e2012-09-26 12:51:28 -0700536 /* list of classes on course landing page */
537 ol.class-list {
538 list-style:none;
539 margin-left:0;
540 }
541 ol.class-list>li {
542 margin:0 0 15px;
543 padding:5px 0 0;
544 overflow:hidden;
545 border-top:1px solid #ccc;
546 }
547 ol.class-list li a.title {
548 font-size:16px;
549 margin:0;
550 clear:left;
551 display:block;
552 height:32px;
553 padding:0 4px;
554 }
555 ol.class-list li a.title h2 {
556 color:inherit;
557 margin:0 0 10px;
558 display:block;
559 float:left;
560 width:675px;
561 }
562 ol.class-list li a.title span {
563 display:none;
564 float:left;
565 font-size:18px;
566 font-weight:bold;
567 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
568 width: 10px;
569 height: 32px;
570 }
571 ol.class-list li a.title:hover {
572 background:#ddd;
573 color:#258AAF !important;
574 }
575 ol.class-list li a.title:hover span {
576 display:block;
577 }
Scott Main98a2a712013-07-17 13:15:04 -0700578
Scott Main5a1123e2012-09-26 12:51:28 -0700579 #jd-content
580 ol.class-list li img {
581 float:left;
582 clear:left;
583 width:64px;
584 margin:0 20px 0 0;
585 }
586 ol.class-list li p.description {
587 float:left;
588 display:block;
589 width:250px;
590 margin:0;
591 }
592 ol.class-list li p.description.article {
593 width: 550px;
594 }
595 ol.class-list ol {
596 float:left;
597 width:320px;
598 margin:0 0 0 30px;
599 list-style:none;
600 margin:0 0 0 20px;
601 }
602 ol.class-list div.lessons li {
603 margin:0 0 6px;
604 line-height:16px;
605 }
Scott Main98a2a712013-07-17 13:15:04 -0700606
607
Scott Maine4d8f1b2012-06-21 18:03:05 -0700608 .hide {
609 display:none !important;
610 }
Scott Main98a2a712013-07-17 13:15:04 -0700611
Scott Maine4d8f1b2012-06-21 18:03:05 -0700612 .content-footer.next-class {
613 display:block;
614 border:0;
615 margin-top:0;
616 padding-top:0;
617 }
Scott Main98a2a712013-07-17 13:15:04 -0700618
Scott Maine4d8f1b2012-06-21 18:03:05 -0700619 .content-footer.next-class a.next-class-link {
620 display:block;
621 float:right;
622 text-transform:uppercase;
623 }
Scott Main98a2a712013-07-17 13:15:04 -0700624
625
626
Scott Mainbbffb4b2012-11-13 07:40:16 -0800627 /* inner-doc tabs w/ title */
Scott Main98a2a712013-07-17 13:15:04 -0700628
Scott Mainbbffb4b2012-11-13 07:40:16 -0800629div#title-tabs-wrapper {
630 border-bottom:1px solid #ccc;
631 margin:20px 0 30px;
632}
633h1.with-title-tabs {
634 display:inline-block;
635 margin:0 0 -1px 0;
636 padding:0 60px 0 0;
637 border-bottom:1px solid #F9F9F9;
638}
639ul#title-tabs {
640 list-style:none;
641 padding:0;
642 height:29px;
643 margin:0;
644 font-size:16px;
645 line-height:26px;
646 display:inline-block;
647 vertical-align:bottom;
648}
649ul#title-tabs li {
650 display:block;
651 float:left;
652 margin-right:40px;
653 border-bottom: 3px solid transparent;
654}
655ul#title-tabs li.selected {
656 border-bottom: 3px solid #93C;
657}
658ul#title-tabs li a {
659 color:#333;
660}
661ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800662ul#title-tabs li a:active {
663 color:#93C !important;
664}
665
666
Scott Maine4d8f1b2012-06-21 18:03:05 -0700667
668/* content body */
669@-webkit-keyframes glowheader {
670 from {
671 background-color: #33b5e5;
672 color: #000;
673 border-bottom-color: #000; }
674
675 to {
676 background-color: transparent;
677 color: #33b5e5;
678 border-bottom-color: #33b5e5; } }
679
680@-moz-keyframes glowheader {
681 from {
682 background-color: #33b5e5;
683 color: #000;
684 border-bottom-color: #000; }
685
686 to {
687 background-color: transparent;
688 color: #33b5e5;
689 border-bottom-color: #33b5e5; } }
690
691@keyframes glowheader {
692 from {
693 background-color: #33b5e5;
694 color: #000;
695 border-bottom-color: #000; }
696
697 to {
698 background-color: transparent;
699 color: #33b5e5;
700 border-bottom-color: #33b5e5; } }
701
702h2:target,
703h3:target {
704 -webkit-animation-name: glowheader;
705 -moz-animation-name: glowheader;
706 animation-name: glowheader;
707 -webkit-animation-duration: 0.7s;
708 -moz-animation-duration: 0.7s;
709 animation-duration: 0.7s;
710 -webkit-animation-timing-function: ease-out;
711 -moz-animation-timing-function: ease-out;
712 animation-timing-function: ease-out; }
713
714.design ol h4 {
715 margin-bottom:0;
716}
717.design ol {
718 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700719 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700720 font-size: 14px;
721 line-height: 20px;
722 list-style-type: none;
723 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700724 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700725 content: counter(item) ". ";
726 counter-increment: item;
727 position: absolute;
728 left: -20px;
729 top: 0; }
730 .design ol li.value-1:before {
731 content: "1. "; }
732 .design ol li.value-2:before {
733 content: "2. "; }
734 .design ol li.value-3:before {
735 content: "3. "; }
736 .design ol li.value-4:before {
737 content: "4. "; }
738 .design ol li.value-5:before {
739 content: "5. "; }
740 .design ol li.value-6:before {
741 content: "6. "; }
742 .design ol li.value-7:before {
743 content: "7. "; }
744 .design ol li.value-8:before {
745 content: "8. "; }
746 .design ol li.value-9:before {
747 content: "9. "; }
748 .design ol li.value-10:before {
749 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700750.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700751 list-style-position: inside;
752 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700753 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700754 display: inline;
755 left: -20px;
756 float: left;
757 width: 17px;
758 color: #33b5e5;
759 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700760.design .with-callouts ul>li {
761 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700762
763/* special list items */
764li.no-bullet {
765 list-style-type: none !important; }
766li.no-bullet *{
767 margin:0; }
768
769.design li.with-icon {
770 position: relative;
771 margin-left: 20px;
772 min-height: 30px; }
773 .design li.with-icon p {
774 margin-left: 0 !important; }
775 .design li.with-icon:before {
776 position: absolute;
777 left: -40px;
778 top: 0;
779 content: '';
780 width: 30px;
781 height: 30px; }
782 .design li.with-icon.tablet:before {
783 background-image: url(../images/styles/ico_phone_tablet.png); }
784 .design li.with-icon.web:before {
785 background-image: url(../images/styles/ico_web.png); }
786 .design li.with-icon.action:before {
787 background-image: url(../images/styles/ico_action.png); }
788 .design li.with-icon.use:before {
789 background-image: url(../images/styles/ico_use.png); }
790
791/* figures and callouts */
792.figure {
793 position: relative; }
794 .figure.pad-below {
795 margin-bottom: 20px; }
796 .figure .figure-callout {
797 position: absolute;
798 color: #fff;
799 font-weight: 500;
800 font-size: 16px;
801 line-height: 23px;
802 text-align: center;
803 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
804 padding-right: 2px;
805 width: 30px;
806 height: 29px;
807 z-index: 1000; }
808 .figure .figure-callout.top {
809 top: -9px; }
810 .figure .figure-callout.right {
811 right: -5px; }
812
813.figure-caption {
814 margin: 0 10px 20px 0;
815 font-size: 14px;
816 line-height: 20px;
817 font-style: italic; }
818
819/* rows of figures */
820.figure-row {
821 font-size: 0;
822 line-height: 0;
823 /* to prevent space between figures */ }
824 .figure-row .figure {
825 display: inline-block;
826 vertical-align: top; }
827 .figure-row .figure + .figure {
828 margin-left: 10px;
829 /* reintroduce space between figures */ }
830
831/* video containers */
832.framed-galaxynexus-land-span-13 {
833 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
834scroll top left;
835 padding: 42px 122px 62px 126px;
836 overflow: hidden; }
837 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
838.framed-galaxynexus-land-span-13 img {
839 width: 512px;
840 height: 286px; }
841
Robert Lyd78354d2012-11-01 17:09:52 -0700842
843.framed-galaxynexus-land-span-8{
844 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
845scroll top left;
846 padding: 26px 68px 38px 72px;
847 overflow: hidden; }
848 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
849.framed-galaxynexus-land-span-8 img {
850 width: 320px;
851 height: 180px; }
852
Scott Maine4d8f1b2012-06-21 18:03:05 -0700853.framed-galaxynexus-port-span-9 {
854 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
855scroll top left;
856 padding: 95px 122px 107px 124px;
857 overflow: hidden; }
858 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
859.framed-galaxynexus-port-span-9 img {
860 width: 274px;
861 height: 488px; }
862
863.framed-galaxynexus-port-span-5 {
864 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
865scroll top left;
866 padding: 75px 31px 76px 33px;
867 overflow: hidden; }
868 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
869.framed-galaxynexus-port-span-5 img {
870 width: 216px;
871 height: 384px; }
872
Scott Main27403b82013-07-10 16:36:05 -0700873.framed-nexus4-port-216 {
874 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
875scroll top left;
876 background-size:240px 465px;
877 padding: 52px 12px 52px 12px;
878 overflow: hidden; }
879 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
880 .framed-nexus4-port-216 img {
881 width: 216px;
882 height: 360px; }
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700883
884.framed-nexus5-port-span-5 {
885 background: transparent url(../images/styles/device_nexus5_blank_port_span5.png) no-repeat
886 scroll top left;
887 padding: 52px 33px 69px 31px;
888 overflow: hidden;
889}
Scott Main27403b82013-07-10 16:36:05 -0700890
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700891.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}
Scott Main27403b82013-07-10 16:36:05 -0700897
Dirk Doughertyca1858a2013-10-29 16:25:00 -0700898.framed-nexus5-land-span-13 {
899 background: transparent url(../images/styles/device_nexus5_blank_land_span13.png) no-repeat scroll top left;
900 padding: 36px 119px 54px 108px;
901 overflow: hidden;
902}
903
904.framed-nexus5-land-span-13,
905.framed-nexus5-land-span-13 video,
906.framed-nexus5-land-span-13 img {
907 width: 533px;
908 height: 300px;
909}
910
911.framed-nexus5-port-span-5,
912.framed-nexus5-port-span-5 video,
913.framed-nexus5-port-span-5 img {
914 width: 216px;
915 height: 384px;
916}
917
Scott Maine4d8f1b2012-06-21 18:03:05 -0700918/* landing page disclosures */
919.landing-page-link {
920 text-decoration: none;
921 font-weight: 500;
922 color: #333333; }
923 .landing-page-link:after {
924 content: '';
925 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
926 width: 10px;
927 height: 10px;
928 display: inline-block;
929 margin-left: 5px; }
930
931/* tooltips */
932.tooltip-box {
933 position: absolute;
934 background-color: rgba(0, 0, 0, 0.9);
935 border-radius: 2px;
936 font-size: 14px;
937 line-height: 20px;
938 color: #fff;
939 padding: 6px 10px;
940 max-width: 250px;
941 z-index: 10000; }
942 .tooltip-box.below:after {
943 position: absolute;
944 content: '';
945 line-height: 0;
946 display: block;
947 top: -10px;
948 left: 5px;
949 border: 5px solid transparent;
950 border-bottom-color: rgba(0, 0, 0, 0.9); }
951
952/* video note */
953.video-instructions {
954 margin-top: 10px;
955 margin-bottom: 10px; }
956 .video-instructions:before {
957 content: '';
958 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
959 display: inline-block;
960 width: 12px;
961 height: 12px;
962 margin-right: 8px; }
963 .video-instructions:after {
964 content: 'Click device screen to replay movie.'; }
965
966/* download buttons */
967.download-button {
968 display: block;
969 margin-bottom: 5px;
970 text-decoration: none;
971 background-color: #33b5e5;
972 color: #fff !important;
973 font-weight: 500;
974 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
975 padding: 6px 12px;
976 border-radius: 2px; }
977 .download-button:hover, .download-button:focus {
978 background-color: #0099cc;
979 color: #fff !important; }
980 .download-button:active {
981 background-color: #006699; }
982
983/* UI tables and other things found in Writing style and Settings pattern */
984.ui-table {
985 width: 100%;
986 background-color: #282828;
987 color: #fff;
988 border-radius: 2px;
989 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
990 border-collapse: separate; }
991 .ui-table th,
992 .ui-table td {
993 padding: 5px 10px;
Scott Main98a2a712013-07-17 13:15:04 -0700994 background-color: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700995 border:0;}
996 .ui-table thead th {
997 font-weight: bold; }
998 .ui-table tfoot td {
999 border-top: 1px solid #494949;
1000 border-right: 1px solid #494949;
1001 text-align: center; }
1002 .ui-table tfoot td:last-child {
1003 border-right: 0; }
1004
1005.layout-with-list-item-margins {
1006 margin-left: 30px !important; }
1007
1008.emulate-content-left-padding {
1009 margin-left: 10px; }
1010
1011.do-dont-label {
1012 margin-bottom: 10px;
1013 padding-left: 20px;
1014 background: transparent none no-repeat scroll 0px 3px; }
1015 .do-dont-label.bad {
1016 background-image: url(../images/styles/ico_wrong.png); }
1017 .do-dont-label.good {
1018 background-image: url(../images/styles/ico_good.png); }
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07001019
Scott Maine4d8f1b2012-06-21 18:03:05 -07001020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038/***** PREVIOUSLY style.css ******************/
1039
1040
1041
1042
1043
1044@media screen, projection, print {
1045[dir='rtl'] {
1046 direction: rtl;
1047}
1048html {
1049 line-height: 20px;
1050}
1051pre, table, input, textarea, code {
1052 font-size: 1em;
1053}
1054address, abbr, cite {
1055 font-style: normal;
1056}
1057[dir='rtl'] th {
1058 text-align: right;
1059}
1060html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1061html[lang^=zh] blockquote, html[lang^=zh] q {
1062 font-style: normal;
1063}
1064q {
1065 font-style: italic;
1066}
1067fieldset, iframe, img {
1068 border: 0;
1069}
Scott Main98a2a712013-07-17 13:15:04 -07001070img {
Scott Mainb7f96372013-02-07 16:56:43 -08001071 -ms-interpolation-mode: bicubic;
1072 vertical-align: middle;
1073 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001074}
1075q {
1076 quotes: none;
1077}
1078sup, sub {
1079 font-size: 11px;
1080 line-height: 0;
1081}
1082}
1083
1084@media screen, projection {
1085
1086table, fieldset {
1087 margin: 0;
1088}
1089h1 {
1090 color:#333;
1091 font-size: 22px;
1092 margin: 20px 0 20px;
1093 padding:0 0 10px;
1094}
1095h1, h2 {
1096 line-height: 32px;
1097}
1098h1.short {
1099 margin-right:320px;
1100}
1101h1.short {
1102 margin-right:320px;
1103}
1104h1.super {
Scott Main98a2a712013-07-17 13:15:04 -07001105 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001106}
1107h2 {
1108 color:#333;
1109 font-size: 20px;
1110 margin: 20px 0 20px;
1111 padding:0;
1112}
1113h3 {
1114 color:#333;
1115 font-size: 18px;
1116}
1117h3, h4 {
1118 color:#333;
1119 line-height: 20px;
1120 margin: 10px 0;
1121}
1122h4 {
Scott Mainb7f96372013-02-07 16:56:43 -08001123 font-size: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001124}
1125h5 {
Scott Main98a2a712013-07-17 13:15:04 -07001126 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001127}
1128h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001129 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001130}
1131h6 {
Scott Main98a2a712013-07-17 13:15:04 -07001132 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001133}
1134hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001135 height: 1px;
1136 margin: 5px 0 20px;
1137 border: 0;
1138 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001139}
1140p, pre, table, form {
1141 margin: 0 0 15px;
1142}
1143small {
Scott Mainb7f96372013-02-07 16:56:43 -08001144 font-size: 11.5px;
1145 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001146}
1147ul, ol {
1148 margin: 0 0 15px 18px;
1149 padding: 0;
1150}
1151[dir='rtl'] ul, [dir='rtl'] ol {
1152 margin: 10px 30px 10px 10px;
1153}
1154ul ul, ul ol, ol ul, ol ol {
1155 margin-bottom: 0;
1156 margin-top: 0;
1157}
1158li {
Scott Main52948fc2012-09-18 11:27:59 -07001159 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001160}
1161dd {
1162 margin:0 0 10px 30px;
1163}
Scott Maina07be8e2013-03-06 12:12:21 -08001164dd p,
1165dd pre,
1166dd ul,
1167dd ol,
1168dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001169 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001170}
Scott Maindb3678b2012-10-23 14:13:41 -07001171li p,
1172li pre,
1173li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001174li ol,
1175li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001176 margin-top:5px;
1177 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001178}
Scott Main13cd8f12013-11-12 11:50:59 -08001179dl dd dl:first-child {
1180 margin-top:0;
1181}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001182pre strong, pre b, a strong, a b, a code {
1183 color: inherit;
1184}
1185pre, code {
1186 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001187 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001188}
1189code {
1190 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001191 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001192}
1193
1194legend {
1195 display: none;
1196}
1197a:link, a:visited {
1198 color: #258aaf;
1199 text-decoration: none;
1200}
1201a:focus, a:hover, a:active {
1202 color: #33B5E5;
1203 text-decoration: none;
1204}
1205strong, b {
1206 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001207 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001208}
1209table {
1210 border-collapse: collapse;
1211 border-spacing: 0;
1212 border:0;
1213 margin: .5em 1em 1em 0;
1214 width:100%; /* consistent table widths; within IE's quirks */
1215 background-color:#f7f7f7;
1216}
1217th, td {
1218 padding: 4px 12px;
1219 vertical-align: top;
1220 text-align: left;
1221}
1222td {
1223 background-color:inherit;
1224 border:solid 1px #DDD;
1225}
Scott Maineb410352013-01-14 19:03:40 -08001226td *:last-child {
1227 margin-bottom:0;
1228}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001229th {
1230 background-color: #999;
1231 color: #fff;
1232 border:solid 1px #DDD;
1233 font-weight: normal;
1234}
1235tr:first-of-type th:first-of-type:empty {
1236 visibility: hidden;
1237}
1238/* --------------------------------------------------------------------------
1239Footer
1240*/
1241.line {
1242 clear: both;
1243 background: #acbc00;
1244 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1245 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1246color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1247 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1248 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1249 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1250 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1251 height: 2px;
1252 margin-top: 150px;
1253 position: relative;
1254 z-index: 11;
1255}
1256#footer {
1257 font-size:11px;
1258 clear: both;
1259 color: #999;
1260 padding: 15px 0;
1261 margin-top:10px;
1262 width:auto;
1263}
1264#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001265 list-style: none;
1266 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001267}
1268#footer-local li {
1269 display: inline;
1270}
1271#footer-local li+li:before {
1272 content: '|';
1273 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001274 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001275}
1276#footer-global {
1277 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001278 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001279}
1280#footer-global {
1281 border-top: 1px solid #ebebeb;
1282 font-size: 11.5px;
1283 line-height: 1.8;
1284 list-style: none;
1285}
1286#footer-global ul {
1287 margin: 0;
1288}
1289#footer-global li {
1290 display: inline;
1291 font-weight: bold;
1292}
1293#footer-global li+li:before {
1294 content: '¬?';
1295 padding: 0 3px;
1296}
1297* html #footer-global li {
1298 margin: 0 13px 0 0;
1299}
1300* [dir='rtl'] #footer-global li {
1301 margin: 0 0 0 13px;
1302}
1303*+html #footer-global li {
1304 margin: 0 13px 0 0;
1305}
1306*+[dir='rtl'] #footer-global li {
1307 margin: 0 0 0 13px;
1308}
1309#footer-global li a {
1310 font-weight: normal;
1311}
1312.locales {
1313 margin: 10px 0 0 0px;
1314}
1315[dir='rtl'] .locales {
1316 background-position: right center;
1317 float: left;
1318 padding: 0 24px 0 0;
1319}
1320.locales form {
Scott Main98a2a712013-07-17 13:15:04 -07001321 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001322}
1323.locales select, .sites select {
1324 line-height: 3.08;
1325 margin: 0px 0;
1326 border: solid 1px #EBEBEB;
1327 -webkit-appearance: none;
1328 background: white url('../images/arrows-up-down.png') right center no-repeat;
1329 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001330 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001331 line-height: normal;
1332 padding: 5px;
1333 width: 230px;
1334}
1335}
1336
1337/* =============================================================================
1338 Print Only
1339 ========================================================================== */
1340@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001341 /* configure printed page */
1342 @page {
1343 margin: 0.75in 1in;
1344 widows: 4;
1345 orphans: 4;
1346 }
1347
1348 /* reset spacing metrics */
1349 html, body, .wrap {
1350 margin: 0 !important;
1351 padding: 0 !important;
1352 width: auto !important;
1353 }
1354
1355 /* leave enough space on the left for bullets */
1356 body {
1357 padding-left: 20px !important;
1358 }
1359 #doc-col {
1360 margin-left: 0;
1361 }
1362
1363 /* hide a bunch of non-content elements */
1364 #header, #footer, #nav-x, #side-nav,
1365 .training-nav-top, .training-nav-bottom,
1366 #doc-col .content-footer,
1367 .nav-x, .nav-y,
1368 .paging-links,
1369 a.totop {
1370 display: none !important;
1371 }
1372
1373 /* remove extra space above page titles */
1374 #doc-col .content-header {
1375 margin-top: 0;
1376 }
1377
1378 /* bump up spacing above subheadings */
1379 h2 {
1380 margin-top: 40px !important;
1381 }
1382
1383 /* print link URLs where possible and give links default text color */
1384 p a:after {
1385 content: " (" attr(href) ")";
1386 font-size: 80%;
1387 }
1388 p a {
1389 word-wrap: break-word;
1390 }
1391 a {
1392 color: inherit;
1393 }
1394
1395 /* syntax highlighting rules */
1396 .str { color: #060; }
1397 .kwd { color: #006; font-weight: bold; }
1398 .com { color: #600; font-style: italic; }
1399 .typ { color: #404; font-weight: bold; }
1400 .lit { color: #044; }
1401 .pun { color: #440; }
1402 .pln { color: #000; }
1403 .tag { color: #006; font-weight: bold; }
1404 .atn { color: #404; }
1405 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001406}
1407
1408/* =============================================================================
1409 Columns
1410 ========================================================================== */
1411
1412@media screen, projection, print {
1413.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001414 padding: 2.5em 0;
1415 border-top: solid 1px #ddd;
1416 border-bottom: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07001417 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001418}
1419.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001420 margin: 0 auto;
1421 width: 940px;
1422 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001423}
1424.cols {
1425 height: 1%;
1426 margin: 0 -1.533742331288343558282%;
1427 width: 103.06748466257669%}
1428*+html .cols {
1429 margin-bottom: 20px;
1430}
1431.cols:after {
1432 clear: both;
1433 content: ' ';
1434 display: block;
1435 height: 0;
1436 visibility: hidden;
1437}
1438.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1439.col-13, .col-14, .col-15, .col-16 {
1440 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001441 float: left;
1442 margin-left: 10px;
1443 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001444}
1445/*
1446* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1447.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1448 margin: 0;
1449 padding: 0 1.4% 20px;
1450}
1451[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1452[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1453[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1454 float: right;
1455}
1456*/
1457.col-1 { width: 40px }
1458.col-2 { width: 100px }
1459.col-3 { width: 160px }
1460.col-4 { width: 220px }
1461.col-5 { width: 280px }
1462.col-6 { width: 340px }
1463.col-7 { width: 400px }
1464.col-8 { width: 460px }
1465.col-9 { width: 520px }
1466.col-10 { width: 580px }
1467.col-11 { width: 640px }
1468.col-12 { width: 700px }
1469.col-13 { width: 760px }
1470.col-14 { width: 820px }
1471.col-15 { width: 880px }
1472.col-16 { width: 940px }
1473}
1474
1475.col-right {
1476 margin-right:0px;
1477}
1478
1479@media screen and (max-width:772px) {
1480.col-5, .col-6, .col-7 {
1481 clear: both;
1482 width: 97.0238096%}
1483}
1484
1485/* =============================================================================
1486 Layout
1487 ========================================================================== */
1488@media screen, projection, print {
1489
1490/* --------------------------------------------------------------------------
1491Header, Login, Nav-X, Search
1492*/
1493#header {
Scott Mainb7f96372013-02-07 16:56:43 -08001494 padding: 2.2em 0 0.2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001495}
1496#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001497 content: "";
1498 display: table;
1499 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001500}
1501.logo, .nav-x {
1502 float: left;
1503}
1504.nav-x {
1505 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001506 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001507}
1508.nav-x a {
1509 color: #333;
1510 font-size: 16px;
1511}
1512.design a.selected {
1513 color: #33b5e5;
1514}
1515.develop a.selected {
1516 color: #F80;
1517}
1518.distribute a.selected {
1519 color: #9C0;
1520}
1521
1522
1523
1524.nav-x li {
1525 display: inline;
1526 margin-right: 45px;
1527}
1528.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001529 float: right;
1530 position: relative;
1531 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001532}
1533.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001534 position: absolute;
1535 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001536}
1537.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001538 width: 220px;
1539 height: 1px;
1540 top: 24px;
1541 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001542}
Scott Main98a2a712013-07-17 13:15:04 -07001543.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001544 height: 5px;
1545 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001546}
Scott Mainb7f96372013-02-07 16:56:43 -08001547.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001548.search .right { top: 19px; right: 0 }
1549.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001550 float: left;
1551 margin-top: 2px;
1552 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001553}
1554.search .close,
1555#player-frame .close {
1556 position: absolute;
1557 right: 8px;
1558 bottom: 4px;
1559 width: 16px;
1560 height: 16px;
1561 margin: 0;
1562 text-indent: -1000em;
1563 background: url(../images/close.png) no-repeat 0 0;
1564 z-index:9999;
1565}
1566.search .close:hover, .search .close:focus,
1567#player-frame .close:hover, #player-frame .close:focus {
1568 background-position: -16px 0;
1569 cursor:pointer;
1570}
1571#player-frame .close {
1572 top: 6px;
1573}
1574.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001575 color: #999;
1576 font-size: 1em;
1577 width: inherit;
1578 border: none;
1579 margin: 0;
1580 padding:0 0 0 6px;
1581 z-index: 1500;
1582 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001583}
1584.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001585 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001586}
1587.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001588 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001589}
1590.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001591 color: #222;
1592 font-weight: bold;
1593 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001594}
1595/* Search Dropdown */
1596.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001597 padding: 15px;
1598 width: 192px;
1599 border: solid 1px #c5c5c5;
1600 background: #fff;
1601 position: absolute;
1602 top: 35px;
1603 left: 0;
1604 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1605 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1606 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001607}
1608.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001609 list-style-type: none;
1610 margin: 0;
1611 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001612}
1613.search-dropdown ul li {
Scott Main98a2a712013-07-17 13:15:04 -07001614 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001615}
1616.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001617 float: left;
1618 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001619}
1620.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001621 color: #222;
1622 margin: 0;
1623 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001624}
1625.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001626 color: #999;
1627 font-size: 11.5px;
1628 line-height: normal;
1629 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001630}
1631.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001632 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001633}
1634/* --------------------------------------------------------------------------
1635Buttons
1636*/
1637.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001638 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001639 -webkit-border-radius: 2px;
1640 -moz-border-radius: 2px;
1641 border-radius: 2px;
1642 cursor: pointer;
1643}
1644.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001645 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001646 background-color: #09c;
1647 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1648 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1649 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1650 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1651 background-image: -o-linear-gradient(top, #2faddb, #09c);
1652 background-image: linear-gradient(top, #2faddb, #09c);
1653 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1654 border: 1px solid #3990ab;
1655 color: #fff;
1656}
1657.button-secondary, a.button-secondary {
1658 background-color: #f3f3f3;
1659 border: 1px solid #dcdcdc;
1660 color: #444;
1661}
1662a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001663 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001664 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001665 min-width: 54px;
1666 outline: 0;
1667 padding: 8px 15px;
1668 text-align: center;
1669}
1670.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001671 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001672 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001673 min-width: 54px;
1674 outline: 0;
1675 padding: 0 15px;
1676 text-align: center;
1677}
1678.button:hover, a.button:hover {
1679 border-color: #09c;
1680 background-color: #4cadcb;
1681 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1682 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1683 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1684 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1685 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1686 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1687 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1688EndColorStr='#4cadcb',GradientType=0);
1689 color: #fff !important;
1690}
1691.button:active, a.button:active {
1692 background-color: #1e799a;
1693 background-image: none;
1694 border-color: #30b7e6;
1695}
Scott Maindb3678b2012-10-23 14:13:41 -07001696a.button.big.subtitle {
1697 line-height:18px;
1698}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001699.button-secondary:hover, a.button-secondary:hover {
1700 border-color: #dbdbdb;
1701 background-color: #f3f3f3;
1702 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1703 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1704 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1705 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1706 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1707 background-image: linear-gradient(top, #f9f9f9, #ececec);
1708 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1709EndColorStr='#ececec');
1710 color: #33B5E5 !important;
1711}
1712.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001713 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001714 background: #ebebeb; /* Old browsers */
1715 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1716 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001717url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1718Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1719eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1720CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1721eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1722YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1723CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1724CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1725CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1726CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1727R3JhZGllbnQ+
1728CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1729Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001730 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001731#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001732 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001733color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1734/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001735 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700173690%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001737 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001738100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001739 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001740100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001741 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001742100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001743 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001744endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001745 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1746 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Main98a2a712013-07-17 13:15:04 -07001747 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Mainb7f96372013-02-07 16:56:43 -08001748 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001749}
1750.button.big {
1751 font-size:20px;
1752 display:inline-block;
1753}
Scott Maindb3678b2012-10-23 14:13:41 -07001754.button.big span.small {
1755 font-size:14px;
1756}
1757.button-caption {
1758 margin-top:10px;
1759 font-size:12px;
1760 font-style:italic;
1761}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001762
1763.button.disabled,
1764.button.disabled:hover,
1765.button.disabled:active {
1766 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001767 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001768 border-color:#999;
1769 cursor:default;
1770}
1771
1772.training-nav-top a.button-secondary,
1773.training-nav-bottom a.button-secondary {
1774 display:block;
1775 float:left;
1776 margin:0;
1777 width:130px;
1778 text-transform:uppercase;
1779 font-weight:bold;
Scott Main98a2a712013-07-17 13:15:04 -07001780
Scott Maine4d8f1b2012-06-21 18:03:05 -07001781 background-color: #f3f3f3;
1782 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1783 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1784 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1785 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1786 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1787 background-image: linear-gradient(top, #f9f9f9, #ececec);
1788 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1789EndColorStr='#ececec');
1790 color: #33B5E5;
1791}
1792
1793.training-nav-top a.button-secondary:hover,
1794.training-nav-bottom a.button-secondary:hover {
1795 background-color: #09c;
1796 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1797 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1798 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1799 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1800 background-image: -o-linear-gradient(top, #2faddb, #09c);
1801 background-image: linear-gradient(top, #2faddb, #09c);
1802 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1803 border: 1px solid #3990ab;
1804 color: #fff !important;
1805}
1806
1807.training-nav-top a.button-secondary.last,
1808.training-nav-bottom a.button-secondary.last {
1809 border-left:0;
1810}
1811
1812.training-nav-top a.button-secondary.double-size,
1813.training-nav-bottom a.button-secondary.double-size {
1814 width:291px;
1815}
1816
1817.training-nav-top,
1818.training-nav-bottom {
1819 float:right;
1820 margin:0 0 0 20px;
1821}
1822
1823.training-nav-bottom {
1824 padding:0 0 20px;
1825}
1826
1827#tb-wrapper,
1828#qv-wrapper {
1829 float:right;
1830 clear:right;
Scott Maincef39242013-06-19 20:25:34 -07001831 margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maine4d8f1b2012-06-21 18:03:05 -07001832 padding:0 0 20px;
1833}
1834
Scott Maincef39242013-06-19 20:25:34 -07001835#tb-wrapper {
Scott Main07816042013-12-19 12:47:38 -08001836 margin:-29px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maincef39242013-06-19 20:25:34 -07001837}
1838
Scott Maine4d8f1b2012-06-21 18:03:05 -07001839#tb,
1840#qv {
1841 font-size:13px;
1842 line-height:18px;
1843 width:238px;
1844 border:1px solid #ccc;
1845 float:right;
1846}
1847
1848#tb {
1849 width:278px;
1850}
1851
1852#tb h2,
1853#qv h2 {
1854 margin:10px 15px;
1855 padding:0;
1856 text-transform:uppercase;
1857 border-bottom:1px solid gainsboro;
1858}
1859
1860#tb *,
1861#qv * {
1862 font-size:inherit;
1863}
1864
Scott Main8c0f5b32013-07-08 15:12:02 -07001865#tb .download-box,
1866#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001867 padding:0 0 0 15px;
1868}
1869
Scott Main8c0f5b32013-07-08 15:12:02 -07001870#tb .download-box .filename,
1871#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001872 font-size:11px;
1873 margin:4px 4px 10px;
1874 color:#666;
1875}
1876
1877
1878/* Dev guide quicknav */
1879
1880.sidebox-wrapper {
1881 float:right;
1882 clear:right;
1883 margin:0 0 0 20px;
1884 padding:0 0 20px;
1885}
1886
1887.sidebox {
1888 width:226px;
1889 font-size:13px;
1890 line-height:18px;
1891 border-left:4px solid #99CC00;
1892 float:right;
1893 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001894 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001895}
1896
1897.sidebox h2,
1898.sidebox h3,
1899.sidebox h4,
1900.sidebox h5 {
1901 font-weight:bold;
1902 margin:0 0 10px;
1903}
1904
1905.sidebox * {
1906 font-size:inherit;
1907}
1908
Scott Mainafc4db32013-11-20 16:53:12 -08001909.sidebox > *:last-child {
1910 margin-bottom:0;
1911}
1912
Scott Maine4d8f1b2012-06-21 18:03:05 -07001913#tb ol,
1914#tb ul,
1915#qv ul {
1916 margin:0 15px 10px 35px;
1917}
1918
1919#qv ol {
1920 list-style:none;
1921 margin:0 15px 15px;
1922 font-size:inherit;
1923 line-height:inherit;
1924}
1925
1926#tb ol ol,
1927#tb ul ul,
1928#qv ol ol,
1929#qv ul ul,
1930.sidebox ol ol,
1931.sidebox ul ul {
1932 margin-bottom:0;
1933}
1934
1935#qv ol ol {
1936 margin:3px 0 3px 15px;
1937}
1938
1939.sidebox p,
1940#qv p,
1941#tb p {
1942 margin: 0 0 10px;
1943}
1944
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001945/* related resources blocks in checklists */
1946
1947.rel-resources {
1948 margin:10px 0px;
1949 border:1px solid #ccc;
1950 background-color:rgba(0, 0, 0, 0.027451);
1951 border:1px solid #ccc;
1952 font-size:13px;
1953 color:#6f6f6f;
1954}
1955
1956.rel-resources ul {
1957padding: .5em 1em 0 1em;
1958}
1959
1960.rel-resources a {
1961font-weight:500;
1962}
1963
1964.rel-resources h3 {
1965 margin:4px 15px 0px 15px;
1966 font-size:13px;
1967 font-weight:600;
1968 text-transform:uppercase;
1969}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001970
1971/* --------------------------------------------------------------------------
1972Form
1973*/
1974.article form {
1975 margin: 0 0 20px;
1976}
1977.article form .form-required {
1978 color: #dd4b39;
1979}
1980.article form fieldset {
1981 margin: 0 0 20px;
1982 padding: 0;
1983}
1984.article form legend {
1985 display: block;
1986 line-height: 1.5;
1987 margin: 0;
1988 padding: 0;
1989}
1990/*
1991.article form ol, .article form ul {
1992 margin: 0 0 0 1em;
1993 padding: 0 0 0 1em;
1994}
1995[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1996 margin: 0 1em 0 0;
1997 padding: 0 1em 0 0;
1998}
1999.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
2000ul ul {
2001 list-style: none;
2002 margin: 0;
2003 padding: 0;
2004}
2005.article form li {
2006 margin: 0 0 20px;
2007}
2008.article form li li {
2009 margin: 0 0 5px;
2010}
2011*/
2012.article form label {
2013 display: block;
2014 margin: 0 0 5px;
2015 padding: 0;
2016}
2017.article form input[type='text'], .article form select, .article form textarea, .article form
2018.checkbox-group, .article form .radio-group {
2019 margin-bottom: 15px;
2020}
2021.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08002022 width: 13px;
2023 height: 13px;
2024 background: #fff;
2025 border: solid 1px #c6c6c6;
2026 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002027}
2028.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08002029 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07002030}
2031.article form select {
2032 border: solid 1px #ebebeb;
2033 border-top-color: #ddd;
2034 -webkit-appearance: none;
2035 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2036 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07002037 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002038 line-height: normal;
2039 padding: 5px;
2040 width: 130px;
2041}
Scott Main98a2a712013-07-17 13:15:04 -07002042
Scott Maine4d8f1b2012-06-21 18:03:05 -07002043.article form .browse .browse-msg {
Scott Main98a2a712013-07-17 13:15:04 -07002044 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002045}
2046.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08002047 height: auto;
2048 line-height: 25px;
2049 font-size: 11px;
2050 padding: 0 8px;
2051 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002052}
2053.article form input[type='text'], .article form textarea {
2054 border: 1px solid #ebebeb;
2055 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07002056 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002057 line-height: normal;
2058 padding: 6px 10px;
Scott Main98a2a712013-07-17 13:15:04 -07002059 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002060}
2061.article form textarea {
2062 height: 150px;
2063}
2064.article form input[type='text']:focus, .article form textarea:focus {
2065 border-color: #33B5E5;
2066 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2067 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2068 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2069 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2070 outline: 0;
2071}
2072.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2073 color: #999;
2074}
2075.article form input[type='text'][disabled], .article form textarea[disabled] {
2076 background-color: #ebebeb;
2077}
2078form .form-error input[type='text'], form .form-error textarea {
2079 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002080 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002081}
2082.aside {
2083 -moz-border-radius: 2px;
2084 -webkit-border-radius: 2px;
2085 border-radius: 2px;
2086 margin: 10px 0;
2087 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002088 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002089 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002090 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002091}
2092/*
2093.aside, .notification, .promo {
2094 -moz-border-radius: 2px;
2095 -webkit-border-radius: 2px;
2096 border-radius: 2px;
2097 margin: 10px 0;
2098 padding: 10px;
2099 position: relative;
2100}
2101.aside>:first-child, .notification>:first-child, .promo>:first-child {
2102 margin-top: 0;
2103}
2104.aside>:last-child, .notification>:last-child, .promo>:last-child {
2105 margin-bottom: 0;
2106}
2107.aside {
2108 background: #f9f9f9;
2109}
2110.notification {
2111 background: #fffbe4;
2112 border-color: #f8f6e6;
2113}
2114.promo {
2115 background: #f6f9ff;
2116 border-color: #eff2f9;
2117}
2118*/
Scott Maindb3678b2012-10-23 14:13:41 -07002119
2120/* SDK TOS styles */
2121
2122div.sdk-terms {
2123 white-space: pre-wrap;
2124 word-wrap: break-word;
2125 font-family: inherit;
2126 font-size: inherit;
2127 padding: 10px;
2128 height: 370px;
2129 width: 738px;
2130 border: 1px solid #444;
2131 background: transparent;
2132 overflow:auto;
2133 margin:0 0 10px;
2134}
2135
2136div.sdk-terms.fullsize {
2137 padding: 0;
2138 height: auto;
2139 width: auto;
2140 border:none;
2141}
2142
2143div.sdk-terms h3,
2144div.sdk-terms h2 {
2145 margin:0;
2146}
2147
2148div#sdk-terms-form {
2149 padding:0 0 0 10px;
2150}
2151
Scott Main11ac05b2012-11-15 14:57:44 -08002152div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002153 display:inline;
2154 margin:4px 4px 4px 0;
2155}
2156
2157
Scott Maine4d8f1b2012-06-21 18:03:05 -07002158/* --------------------------------------------------------------------------
2159Code Style
2160*/
2161pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002162 margin:0 0 1em 0;
2163 padding: 1em;
2164 overflow: auto;
2165 border: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07002166 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002167}
Scott Main70557ee2013-10-30 14:47:40 -07002168.str { color: #800; } /* Code string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002169.kwd { color: #008; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07002170.typ { color: #606; }
2171.lit { color: #066; }
2172.pun { color: #660; }
2173.pln { color: #000; }
2174.tag { color: #008; }
2175.atn { color: #828; }
Scott Main70557ee2013-10-30 14:47:40 -07002176.atv { color: #800; } /* XML string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002177.dec { color: #606; }
2178
2179/* --------------------------------------------------------------------------
2180Three-Pane
2181*/
2182/* Package Nav & Classes Nav */
2183.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002184 position: relative;
2185 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002186}
2187#packages-nav .js-pane,
2188#classes-nav .js-pane {
2189 overflow:visible;
2190}
2191#packages-nav {
2192 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002193 max-height: inherit;
2194 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002195 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002196}
2197#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002198 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002199 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002200}
2201#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002202 list-style-type: none;
2203 margin: 10px 0 20px 0;
Scott Main98a2a712013-07-17 13:15:04 -07002204 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002205}
2206#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002207 font-weight: bold;
2208 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002209}
2210#packages-nav li,
2211#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002212 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002213}
2214#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2215#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002216 padding: 0 0 0 4px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002217}
2218#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2219#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2220#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002221 color: #222;
Scott Main98a2a712013-07-17 13:15:04 -07002222 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002223}
2224#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2225#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002226 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002227}
2228#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2229a:visited,
2230#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2231a:visited,
2232#nav-tree li div.selected {
2233 font-weight: 500;
2234 color: #0099cc;
2235 background-color:#fff; }
2236 #packages-nav li.selected ul li a,
2237 #classes-nav li.selected ul li a {
2238 /* don't highlight child items */
2239 color: #555555; }
2240#nav-tree li div.selected a {
2241 font-weight: 500;
2242 color: #0099cc;
2243}
2244#nav-swap {
2245 height:30px;
2246 border-top:1px solid #ccc;
2247}
2248#nav-swap a {
2249 display:inline-block;
2250 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002251 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002252 font-size: 12px;
2253 padding: 5px 0 5px 5px;
2254}
2255
2256#nav-swap .fullscreen {
2257 float: right;
2258 width: 24px;
2259 height: 24px;
2260 text-indent: -1000em;
2261 padding:0;
2262 margin:3px 5px 0;
2263 background: url(../images/fullscreen.png) no-repeat -24px 0;
2264}
2265#nav-swap .fullscreen.disabled {
2266 background-position: 0 0;
2267}
Scott Main98a2a712013-07-17 13:15:04 -07002268#nav-swap .fullscreen:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002269#nav-swap .fullscreen:focus {
2270 cursor:pointer;
2271}
2272
2273
2274/* nav tree */
Scott Main42d6e582013-11-20 19:30:41 -08002275#side-nav, #swapper,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002276#nav-tree, #tree-list {
2277 overflow:hidden;
2278 margin-left:0;
2279}
2280
Scott Main42d6e582013-11-20 19:30:41 -08002281#devdoc-nav {
2282 overflow:visible !important; /* To keep the "to top" button visible */
2283}
2284
Scott Maine4d8f1b2012-06-21 18:03:05 -07002285#nav-tree ul {
2286 list-style:none;
2287 padding:0;
2288 margin:10px 0;
2289}
2290
2291#nav-tree ul li div {
2292 padding:0 0 0 4px;
2293}
2294
2295#side-nav #nav-tree ul li a,
2296#side-nav #nav-tree ul li span.no-children {
2297 padding: 0;
2298 margin: 0;
2299}
2300
2301#nav-tree .plus {
2302 margin: 0 3px 0 0;
2303}
2304
2305#nav-tree ul ul {
2306 list-style: none;
2307 margin: 0;
2308 padding: 0 0 0 0;
2309}
2310
2311#nav-tree ul li {
2312 margin: 0;
2313 padding: 0 0 0 0;
2314 white-space: nowrap;
2315}
2316
2317#nav-tree .children_ul {
2318 padding:0;
2319 margin:0;
2320}
2321#nav-tree .children_ul li div {
2322 padding:0 0 0 10px;
2323}
2324#nav-tree .children_ul .children_ul li div {
2325 padding:0 0 0 20px;
2326}
2327
2328#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002329 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002330 text-decoration: none;
2331}
2332
2333#nav-tree span.label {
2334 width: 100%;
2335}
2336
2337#nav-tree {
2338 overflow-x: auto;
2339 overflow-y: scroll;
2340 outline:0;
2341}
2342
2343
2344/* Content */
2345#doc-col {
2346 margin-right:0;
2347}
2348#doc-content-container {
Scott Main98a2a712013-07-17 13:15:04 -07002349 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002350}
2351#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002352 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002353}
2354#doc-header {
Scott Main98a2a712013-07-17 13:15:04 -07002355 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002356}
2357#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002358 line-height: 0;
2359 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002360}
2361#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002362 float: right;
2363 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002364}
2365#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002366 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002367}
2368#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002369 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002370}
2371#api-nav-header {
2372 height:19px; /* plus 16px padding = 35; same as #nav li */
2373 font-size:14px;
2374 padding: 8px 0;
2375 margin: 0;
2376 border-bottom: 1px solid #CCC;
2377 background:#e9e9e9;
2378 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2379
2380}
2381#api-nav-title {
2382 padding:0 5px;
2383 white-space:nowrap;
2384}
2385
2386#api-level-toggle {
2387 float:right;
2388 padding:0 5px;
2389}
2390
2391#api-level-toggle label {
2392 margin:0;
2393 vertical-align:top;
2394 line-height: 19px;
2395 font-size:13px;
2396 height: 19px;
2397}
2398
2399#api-level-toggle .select-wrapper {
2400 width: 35px;
2401 display: inline-block;
2402 overflow: hidden;
2403}
2404#api-level-toggle select {
2405 border: 0;
2406 appearance:none;
2407 -moz-appearance:none;
2408 -webkit-appearance: none;
2409 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002410 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002411 height: 19px;
2412 line-height: 19px;
2413 padding: 0;
2414 margin:1px 0 0 0;
2415 width:150%;
2416 font-size:13px;
2417 vertical-align:top;
2418 outline:0;
2419}
2420
2421
2422/* Toggle for revision notes and stuff */
2423div.toggle-content.closed .toggle-content-toggleme {
2424 display:none;
2425}
2426
2427#jd-content img.toggle-content-img {
2428 margin:0 5px 5px 0;
2429}
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002430
Scott Main220c3442012-07-16 15:40:17 -07002431div.toggle-content-toggleme {
2432 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002433}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002434
2435
2436/* API LEVEL FILTERED MEMBERS */
2437
2438.absent,
2439.absent a:link,
2440.absent a:visited,
2441.absent a:hover,
2442.absent * {
2443 color:#bbb !important;
2444 cursor:default !important;
2445 text-decoration:none !important;
2446}
2447#devdoc-nav li.absent.selected,
2448#devdoc-nav li.absent.selected *,
2449#devdoc-nav div.label.absent.selected,
2450#devdoc-nav div.label.absent.selected * {
2451 background-color:#eaeaea !important;
2452}
2453.absent h4.jd-details-title,
2454.absent h4.jd-details-title * {
2455 background-color:#f6f6f6 !important;
2456}
2457.absent img {
2458 opacity: .3;
2459 filter: alpha(opacity=30);
2460 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2461}
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471/* JQUERY RESIZABLE STYLES */
2472.ui-resizable { position: relative; }
2473.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2474.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2475/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2476body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2477.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2478border-bottom: solid 1px #ededed;
2479 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2480/*
Scott Main98a2a712013-07-17 13:15:04 -07002481.ui-resizable-e {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002482cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24831px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2484*/
2485
2486/* --------------------------------------------------------------------------
2487Lightbox
2488*/
Scott Main98a2a712013-07-17 13:15:04 -07002489.lightbox {
Scott Mainb7f96372013-02-07 16:56:43 -08002490 width: 769px;
2491 padding: 1.5em;
2492 margin: 0 auto;
2493 border: solid 1px #dcdcdc;
2494 background: #fff;
2495 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2496 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2497 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002498}
2499.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002500 float: left;
2501 width: 720px;
Scott Main98a2a712013-07-17 13:15:04 -07002502 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002503}
2504.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002505 float: right;
2506 width: 10px;
2507 height: 10px;
2508 margin: -10px -10px 10px 0;
2509 text-indent: -1000em;
2510 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002511}
2512.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002513 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002514}
2515
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002516/* --------------------------------------------------------------------------
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002517Styles for samples browser
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002518*/
2519
Scott Main498d7102013-08-21 15:47:38 -07002520#codesample-wrapper {
Scott Main70557ee2013-10-30 14:47:40 -07002521 width:100000px; /* super wide to contain floats, but doesn't cause scroll */
Scott Main498d7102013-08-21 15:47:38 -07002522 overflow:visible;
2523}
2524pre#codesample-block {
2525 float:left;
2526 overflow:visible;
2527 background:transparent;
2528 border:none;
2529}
Scott Mainf1435b72013-10-30 16:27:38 -07002530pre#codesample-block a.number {
2531 display:none;
2532}
Scott Main498d7102013-08-21 15:47:38 -07002533pre#codesample-block .code-line:hover {
2534 background:#e7e7e7;
2535}
2536pre#codesample-line-numbers {
2537 float:left;
2538 width:2em;
2539 background:transparent;
2540 border:none;
2541 border-right:1px solid #ccc;
2542 padding-left:0;
2543 font-family:monospace;
2544 text-align:right;
2545 -webkit-touch-callout: none;
2546 -webkit-user-select: none;
2547 -khtml-user-select: none;
2548 -moz-user-select: -moz-none;
2549 -ms-user-select: none;
2550 user-select: none;
2551}
2552pre#codesample-line-numbers a {
2553 color:#999;
2554}
2555pre#codesample-line-numbers.hidden {
2556 display:none;
2557}
2558pre#codesample-block span.code-line {
2559 width:100%;
2560 display:inline-block;
2561}
2562
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002563/*
2564Styles for displaying image or video resources in samples browser.
2565Resources are marked as no-display if they exceed the size limit.
2566*/
2567div#codesample-resource img, div#codesample-resource video {
2568 border: 1px solid #ececec;
2569}
2570
2571div#codesample-resource.noDisplay div {
2572 border: 1px solid #ececec;
2573 width:120px;
2574 margin-bottom:4px;
2575 padding:20px;
2576}
2577
2578div#codesample-resource .noDisplay-message:after {
2579 font-style:italic;
2580 font-size:12px;
2581 content: 'This resource is not available for browsing. To view it, please download the project.';
2582}
2583
2584/*
2585Styles for project structure (treeview) page
2586*/
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002587.structure-dir {
2588background-image:url(../../assets/images/folder.png);
2589background-repeat:no-repeat;
2590background-position:16px 2px;
2591 margin:.25em 0 0 0;
2592 padding:0 0 0 0;
2593}
2594
2595.structure-toggleme {
2596 margin:0 0 0 3em;
2597 padding:0 0 0 0;
2598 text-decoration:none;
2599}
2600
2601.structure-java{
2602background-image:url(../../assets/images/file-java.png);
2603background-repeat:no-repeat;
2604background-position:0px 2px;
2605 margin:.3em 0 0 0;
2606 padding:.3em 0 .3em 22px;
2607}
2608
2609.structure-file {
2610background-image:url(../../assets/images/file-generic.png);
2611background-repeat:no-repeat;
2612background-position:0px 2px;
2613 margin:.3em 0 0 0;
2614 padding:.3em 0 .3em 22px;
2615}
2616
2617.structure-xml {
2618background-image:url(../../assets/images/file-xml.png);
2619background-repeat:no-repeat;
2620background-position:0px 2px;
2621 margin:.3em 0 0 0;
2622 padding:.3em 0 .25em 22px;
2623}
2624
2625.structure-img {
2626background-image:url(../../assets/images/file-image.png);
2627background-repeat:no-repeat;
2628background-position:0px 2px;
2629 margin:.3em 0 0 0;
2630 padding:.3em 0 .25em 22px;
2631}
2632
2633.structure-manifest {
2634background-image:url(../../assets/images/file-manifest.png);
2635background-repeat:no-repeat;
2636 margin:.0 0 0 1.25em;
2637 padding:0 0 0 22px;
2638 text-decoration:none;
2639}
2640
2641#jd-content .structure-toggle-img {
2642 margin:.5em 0 0 0;
2643padding-right:2.1em;
2644}
2645
2646.dirInfo {
2647 margin-left:2em;
2648}
2649
2650.structure-dir a {
2651 text-decoration:none;
2652}
2653
2654.structure-manifest a {
2655 text-decoration: none;
2656}
2657.structure-file a {
2658 text-decoration: none;
2659}
2660
2661.sampleEmbed {
2662 background-color:rgb(249, 249, 249);
2663}
2664
2665.sampleEmbed ol.lineNumbers {
2666 list-style-type: decimal;
2667 padding-left:1em;
2668}
2669
2670.sampleEmbed ol.lineNumbers li {
2671border-left:1px solid #ddd;
2672border-right:1px solid #ddd;
2673color:gray;
2674background-color:#f7f7f7;
2675margin:0 0 0 24px;
2676padding: 2px 2px 2px 6px;
2677}
2678
2679.sampleEmbed ol.lineNumbers li:hover {
2680background: #efefef;
2681}
2682
Scott Main0ad622b2013-09-04 21:14:06 -07002683.samples-nav li a {
2684 overflow: hidden;
2685 text-overflow: ellipsis;
2686 white-space: nowrap;
2687}
2688
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002689/* --------------------------------------------------------------------------
2690Styles for raw formatted line numbers (not used with listformatted version)
2691div.sampleLine div.lineNumber {
2692 display: inline;
2693}
2694div.sampleLine div.lineCode {
2695 display: inline;
2696 padding-left:6px;
2697}
2698div.sampleLine {
2699 padding:0;
2700 margin:0;
2701}*/
2702
Scott Maine4d8f1b2012-06-21 18:03:05 -07002703/* --------------------------------------------------------------------------
Dirk Dougherty4c2dfcf2013-07-08 16:05:05 -07002704Butterbar
2705*/
2706#butterbar-wrapper {
2707 position:absolute;
2708 top:0;
2709 left:0;
2710 width:100%;
2711}
2712#butterbar {
2713 width:940px;
2714 margin:0 auto;
2715}
2716#butterbar-message {
2717 background-color:#f80;
2718 float:right;
2719 font-size:12px;
2720 font-weight:bold;
2721 padding:0 10px;
2722 border-radius: 0 0 5px 5px;
2723}
2724#butterbar-message a {color:#fff !important}
2725#butterbar-message a:hover {text-decoration:underline;}
2726
2727/* --------------------------------------------------------------------------
Scott Maine4d8f1b2012-06-21 18:03:05 -07002728Misc
2729*/
2730
2731
2732.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002733 content: "";
2734 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002735}
2736.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002737 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002738}
2739.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002740 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002741}
2742table.blank th, table.blank td {
2743 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002744 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002745}
2746.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002747 margin: 0.5em 0 2em 0;
2748 color: #000;
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002749 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002750}
2751
Scott Main25c89dd2013-10-07 14:17:55 -07002752.nolist, .nolist ul, .nolist ol {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002753 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002754 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002755}
Scott Main5747d382012-11-30 12:02:42 -08002756#tb .nolist {
2757 margin-left:15px;
2758}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002759
Scott Main8aa725e2013-04-25 10:00:32 -07002760dl.xml>dt {
2761 text-transform:uppercase;
2762}
2763dl.xml dl.attr {
2764 margin-top:0;
2765}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002766
2767pre.classic {
2768 background-color:transparent;
2769 border:none;
2770 padding:0;
2771}
2772
2773p.img-caption {
2774 margin: -10px 0 20px;
2775 font-size:13px;
2776 color:#666;
2777}
2778
Scott Main48dd7f22013-02-21 10:52:02 -08002779div.figure,
2780div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002781 float:right;
2782 clear:right;
2783 margin:10px 0 0 0;
2784 padding:0 0 0 20px;
2785 /* width must be defined w/ an inline style matching the image width */
2786}
2787
Scott Main48dd7f22013-02-21 10:52:02 -08002788div.figure-left {
2789 float:left;
2790 clear:left;
2791 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002792 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002793 /* width must be defined w/ an inline style matching the image width */
2794}
2795
2796img.frame {
2797 border:1px solid #DDD;
2798 padding:4px;
2799}
2800
Scott Maine4d8f1b2012-06-21 18:03:05 -07002801p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002802 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002803 font-size:13px;
2804 color:#666;
2805}
2806
Scott Main24bbcd52012-09-21 14:33:43 -07002807p.code-caption {
Scott Main98a2a712013-07-17 13:15:04 -07002808 margin-bottom: 4px;
Scott Maina07be8e2013-03-06 12:12:21 -08002809 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002810 color:#666;
2811}
2812
Scott Main98a2a712013-07-17 13:15:04 -07002813div.note,
2814div.caution,
Scott Main54d2a9b2012-07-24 14:54:32 -07002815div.warning {
2816 margin: 0 0 15px;
2817}
2818
Scott Main98a2a712013-07-17 13:15:04 -07002819p.note, div.note,
2820p.caution, div.caution,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002821p.warning, div.warning {
2822 padding: 0 0 0 10px;
2823 border-left: 4px solid;
2824}
2825
Scott Main24bbcd52012-09-21 14:33:43 -07002826p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002827 border-color: #258AAF;
2828}
2829
Scott Main24bbcd52012-09-21 14:33:43 -07002830p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002831 border-color: #FF8800;
2832}
2833
Scott Main24bbcd52012-09-21 14:33:43 -07002834p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002835 border-color: #ff4443;
2836}
2837
Scott Main412eaf22012-06-22 14:36:33 -07002838div.note.design {
2839 border-left: 4px solid #33B5E5;
2840}
2841
2842div.note.develop {
2843 border-left: 4px solid #F80;
2844}
2845
2846div.note.distribute {
2847 border-left: 4px solid #9C0;
2848}
2849
2850.note p, .caution p, .warning p {
2851 margin:0 0 5px;
2852}
2853
2854.note p:last-child, .caution p:last-child, .warning p:last-child {
2855 margin-bottom:0;
2856}
2857
Scott Main5b5ff1a2012-09-12 10:29:45 -07002858body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002859 display:block;
2860 float:right;
2861 width:280px;
2862 font-size:20px;
2863 font-style:italic;
2864 line-height:24px;
2865 color:#33B5E5;
2866 margin:0 0 20px 30px;
2867}
2868
Scott Maine4d8f1b2012-06-21 18:03:05 -07002869div.design-announce p {
2870 margin:0 0 10px;
2871}
2872
2873#devdoc-nav a.totop {
2874 display:block;
2875 top:0;
2876 width:inherit;
2877 background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2878 text-indent:-9999em;
2879}
2880#devdoc-nav a.totop {
2881 position:fixed;
2882 display:none;
2883}
2884#devdoc-nav a.totop:hover {
2885 background-color:#33B5E5;
2886}
2887
2888.content-footer a.totop {
2889 text-transform:uppercase;
2890 line-height:30px;
2891}
2892
Scott Maindb3678b2012-10-23 14:13:41 -07002893.expandable {
2894 height:34px;
2895 padding-left:20px;
2896 position:relative;
2897}
2898.expandable:before {
2899 content: '';
2900 background-image: url(../images/styles/disclosure_down.png);
2901 background-repeat:no-repeat;
2902 background-position: -12px -9px;
2903 width: 20px;
2904 height: 20px;
2905 display: inline-block;
2906 position: absolute;
2907 top: 0;
2908 left: 0; }
2909}
2910.expandable.expanded:before {
2911 background-image: url(../images/styles/disclosure_up.png);
2912}
2913
Scott Mainaaf76642013-06-19 18:04:30 -07002914/* notice box for cross links between Design/Develop docs */
Scott Main13cd8f12013-11-12 11:50:59 -08002915a.notice-developers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002916a.notice-developers,
Scott Main13cd8f12013-11-12 11:50:59 -08002917a.notice-designers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002918a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002919 float:right;
Scott Maine80ddbe2013-07-12 19:22:24 -07002920 clear:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002921 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002922 min-height:50px;
2923 margin:0 0 20px 20px;
2924 border:1px solid #ddd;
2925}
Scott Main13cd8f12013-11-12 11:50:59 -08002926a.notice-developers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002927a.notice-developers.wide,
Scott Main13cd8f12013-11-12 11:50:59 -08002928a.notice-designers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002929a.notice-designers.wide {
2930 width:278px;
2931}
Scott Main13cd8f12013-11-12 11:50:59 -08002932a.notice-developers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002933a.notice-developers div,
Scott Main13cd8f12013-11-12 11:50:59 -08002934a.notice-designers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002935a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002936 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002937 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2938 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002939 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002940}
Scott Mainaaf76642013-06-19 18:04:30 -07002941a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002942 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2943 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002944}
Scott Main13cd8f12013-11-12 11:50:59 -08002945a.notice-designers-video div {
2946 background:url('../images/styles/notice-designers-video@2x.png') no-repeat 10px 10px;
2947 background-size:40px 40px;
2948}
2949a.notice-developers-video div {
2950 background:url('../images/styles/notice-developers-video@2x.png') no-repeat 10px 10px;
2951 background-size:40px 40px;
2952}
2953a.notice-developers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002954a.notice-developers:hover,
Scott Main13cd8f12013-11-12 11:50:59 -08002955a.notice-designers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002956a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002957 background:#eee;
2958}
Scott Main13cd8f12013-11-12 11:50:59 -08002959a.notice-developers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002960a.notice-developers h3,
Scott Main13cd8f12013-11-12 11:50:59 -08002961a.notice-designers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002962a.notice-designers h3 {
Scott Main4e5b39d2013-11-13 16:49:22 -08002963 font-size:13px;
2964 line-height:18px;
2965 font-weight:bold;
Scott Maind2af6d22013-05-13 18:39:06 -07002966 text-transform:uppercase;
2967 color:#000 !important;
Scott Main4e5b39d2013-11-13 16:49:22 -08002968 margin:0 0 1px;
Scott Maind2af6d22013-05-13 18:39:06 -07002969}
Scott Main13cd8f12013-11-12 11:50:59 -08002970a.notice-developers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002971a.notice-developers p,
Scott Main13cd8f12013-11-12 11:50:59 -08002972a.notice-designers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002973a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002974 margin:0;
Scott Main4e5b39d2013-11-13 16:49:22 -08002975 line-height:14px;
Scott Main9bfcd732013-05-14 09:14:35 -07002976}
Scott Main13cd8f12013-11-12 11:50:59 -08002977a.notice-developers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002978a.notice-developers.left,
Scott Main13cd8f12013-11-12 11:50:59 -08002979a.notice-designers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002980a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002981 margin-left:0;
2982 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002983}
2984
2985
Scott Maind7026f72013-06-17 15:08:49 -07002986/* hide nested list items; companion to hideNestedLists() */
2987.hide-nested li ol,
2988.hide-nested li ul {
2989 display:none;
2990}
2991
2992a.header-toggle {
2993 display:block;
2994 float:right;
2995 text-transform:uppercase;
2996 font-size:.8em !important;
2997 font-weight:normal;
2998 margin-top:2px;
2999}
3000
3001
Dirk Doughertybec14292013-04-10 20:23:40 -07003002/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003003good/bad example containers
Dirk Doughertybec14292013-04-10 20:23:40 -07003004*/
Scott Maindb3678b2012-10-23 14:13:41 -07003005
Dirk Doughertybec14292013-04-10 20:23:40 -07003006div.example-block {
3007 background-repeat: no-repeat;
Scott Main98a2a712013-07-17 13:15:04 -07003008 background-position:10px 8px;
Dirk Doughertybec14292013-04-10 20:23:40 -07003009 background-color:#ccc;
3010 padding:4px;
3011 margin:.8em auto 1.5em 2em;
3012 width:260px;
3013 float:right;
3014}
3015/* red container */
3016.example-block.bad {
3017 background-image: url(/images/example-bad.png);
3018 background-color:#f4cccc;
3019}
3020/* green container */
3021.example-block.good {
3022 background-image: url(/images/example-good.png);
3023 background-color:#d9ead3;
3024}
3025/* container heading div */
3026#jd-content .example-block .heading {
3027 font-weight:bold;
3028 margin:6px 0 9px 36px;
3029 padding:6px auto;
3030}
3031/* container image (if any) */
3032#jd-content .example-block img {
3033 margin:0;
3034 padding:0px;
3035}
3036
3037.example-block table {
3038 margin:0;
3039}
Scott Maindb3678b2012-10-23 14:13:41 -07003040
Scott Maine4d8f1b2012-06-21 18:03:05 -07003041/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003042Dialog box for popup messages
Scott Maine4d8f1b2012-06-21 18:03:05 -07003043*/
3044
3045div.dialog {
3046 height:0;
3047 margin:0 auto;
3048}
3049
3050div.dialog>div {
3051 z-index:99;
3052 position:fixed;
3053 margin:70px 0;
3054 width: 391px;
3055 height: 200px;
3056 background: #F7F7F7;
3057-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3058-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3059box-shadow: 0 0 15px rgba(0,0,0,0.5);
3060}
3061/* IE6 can't position fixed */
3062* html div.dialog div { position:absolute; }
3063
3064
3065div#deprecatedSticker {
3066 display:none;
3067 z-index:99;
3068 position:fixed;
3069 right:15px;
3070 top:114px;
3071 margin:0;
3072 padding:1em;
3073 background:#FFF;
3074 border:1px solid #dddd00;
3075 box-shadow:-5px 5px 10px #ccc;
3076 -moz-box-shadow:-5px 5px 10px #ccc;
3077 -webkit-box-shadow:-5px 5px 10px #ccc;
3078}
3079
3080div#naMessage {
3081 display:none;
3082 width:555px;
3083 height:0;
3084 margin:0 auto;
3085}
3086
3087div#naMessage div {
3088 z-index:99;
3089 width:450px;
3090 position:fixed;
3091 margin:50px 0;
3092 padding:4em 4em 3em;
3093 background:#FFF;
3094 border:1px solid #999;
3095 box-shadow:-10px 10px 40px #888;
3096 -moz-box-shadow:-10px 10px 40px #888;
3097 -webkit-box-shadow:-10px 10px 40px #888;
3098}
3099/* IE6 can't position fixed */
3100* html div#naMessage div { position:absolute; }
3101
3102div#naMessage strong {
3103 font-size:1.1em;
3104}
3105
3106
3107/* --------------------------------------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003108Slideshow Controls & Next/Prev
Scott Maine4d8f1b2012-06-21 18:03:05 -07003109*/
Scott Main98a2a712013-07-17 13:15:04 -07003110.slideshow-next, .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08003111 width: 20px;
3112 height: 36px;
3113 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003114}
3115.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08003116 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003117}
3118.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003119 content: "";
3120 display: table;
3121 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003122}
3123a.slideshow-next, a.slideshow-next:visited {
3124
Scott Mainb7f96372013-02-07 16:56:43 -08003125 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003126
Scott Mainb7f96372013-02-07 16:56:43 -08003127 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003128
3129}
3130
3131a.slideshow-prev, a.slideshow-prev:visited {
3132
Scott Main98a2a712013-07-17 13:15:04 -07003133 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003134
Scott Mainb7f96372013-02-07 16:56:43 -08003135 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003136
3137}
3138
3139.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3140
Scott Main98a2a712013-07-17 13:15:04 -07003141 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003142
3143}
3144
3145.slideshow-next:active, .slideshow-prev:active {
3146
Scott Main98a2a712013-07-17 13:15:04 -07003147 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003148
3149}
3150.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08003151 width: 74px;
Scott Main98a2a712013-07-17 13:15:04 -07003152 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003153}
3154.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003155 display: inline-block;
3156 width: 12px;
3157 height: 12px;
3158 margin: 0 2px 20px 2px;
3159 background: #ccc;
3160 -webkit-border-radius: 50%;
3161 -moz-border-radius: 50%;
3162 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003163}
3164.slideshow-nav a:hover, .slideshow-nav a:focus {
3165
Scott Mainb7f96372013-02-07 16:56:43 -08003166 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003167}
3168
3169.slideshow-nav a:active {
3170
Scott Mainb7f96372013-02-07 16:56:43 -08003171 background: #1e799a;
Scott Main98a2a712013-07-17 13:15:04 -07003172 background: #ebebeb;
Scott Mainb7f96372013-02-07 16:56:43 -08003173 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3174 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3175 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07003176}
3177.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003178 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003179}
3180/* --------------------------------------------------------------------------
3181Tabs
3182*/
3183ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08003184 padding: 0;
Scott Main98a2a712013-07-17 13:15:04 -07003185 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003186}
3187ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003188 content: "";
3189 display: table;
3190 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003191}
3192ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08003193 list-style-type: none;
Scott Main98a2a712013-07-17 13:15:04 -07003194 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003195}
3196ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003197 display: block;
3198 height: 36px;
3199 line-height: 36px;
3200 padding: 0 15px;
3201 margin-right: 2px;
3202 color: #222;
3203 -moz-border-radius-topleft: 2px;
3204 -moz-border-radius-topright: 2px;
3205 -moz-border-radius-bottomright: px;
3206 -moz-border-radius-bottomleft: px;
3207 -webkit-border-radius: 2px 2px px px;
Scott Main98a2a712013-07-17 13:15:04 -07003208 border-radius: 2px 2px px px;
Scott Mainb7f96372013-02-07 16:56:43 -08003209 border-top: solid 1px #ebebeb;
3210 border-left: solid 1px #ebebeb;
3211 border-right: solid 1px #ebebeb;
3212 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003213 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3214 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3215 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3216 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3217 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3218 background-image: linear-gradient(top, #ffffff, #fafafa);
3219 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3220EndColorStr='#fafafa');
3221}
3222ul.tabs li a:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003223 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003224}
3225ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08003226 height: 37px;
3227 color: #33B5E5;
3228 background-color: #f7f7f7;
3229 background-image: none;
3230 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003231}
3232.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08003233 padding: 1.2em;
3234 margin: -1px 0 2em 0;
3235 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003236 -moz-border-radius: 2px;
3237 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08003238 border: solid 1px #ddd;
3239 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003240}
3241/* --------------------------------------------------------------------------
3242Feature Boxes
3243*/
3244.feature-box {
3245 width: 291px;
3246 height: 200px;
3247 position: relative;
3248 background: #F7F7F7;
3249}
3250.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003251 z-index: 100;
3252 position: absolute;
3253 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003254}
3255.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003256 width: 291px;
3257 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003258}
3259.dialog .box-border .top,
3260.dialog .box-border .bottom { width:391px; }
3261
Scott Main98a2a712013-07-17 13:15:04 -07003262.box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003263 width: 1px;
Scott Main98a2a712013-07-17 13:15:04 -07003264 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003265}
3266.box-border .top { top: 0; left: 0 }
3267.box-border .top .left { top: 1px; left: 0 }
3268.box-border .top .right { top: 1px; right: 0 }
3269.box-border .bottom .left { top: -8px; left: 0 }
3270.box-border .bottom { top: 200px; left: 0 }
3271.box-border .bottom .right { top: -8px; right: 0 }
3272
3273.feature-box h4,
3274.dialog h4 {
3275 margin: 15px 18px 10px;
3276 padding:0;
3277}
3278
3279.feature-box p,
3280.dialog p {
3281 margin: 10px 18px;
3282 padding:0;
3283}
3284.feature-box .link,
3285.dialog .link {
3286 border-top: 1px solid #dedede;
3287 bottom: 0;
3288 position: absolute;
3289 width: inherit;
3290}
3291.feature-box a, .feature-box h4,
3292.dialog a, .dialog h4 {
3293 -webkit-transition: color .4s ease;
3294 -moz-transition: color .4s ease;
3295 -o-transition: color .4s ease;
3296 transition: color .4s ease;
3297}
3298.feature-box:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003299 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003300}
3301.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Main98a2a712013-07-17 13:15:04 -07003302.left, .feature-box:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003303 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003304}
3305.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08003306 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003307}
3308/* --------------------------------------------------------------------------
3309Page-Specific Styles
3310*/
Scott Main98a2a712013-07-17 13:15:04 -07003311.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08003312 position: relative;
3313 float: left;
3314 width: 92px;
3315 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003316}
3317.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08003318 color: #fff;
3319 font-size: 11.5px;
3320 width: 82px;
3321 height: 82px;
3322 margin-top:-30px;
3323 line-height: 82px;
3324 text-align: center;
3325 border: solid 5px #fff;
3326 -webkit-border-radius: 50%;
3327 -moz-border-radius: 50%;
3328 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003329}
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344/* ########### REFERENCE DOCS ################## */
3345
3346#packages-nav h2,
3347#classes-nav h2 {
3348 font-size:18px;
3349 margin:0;
3350 padding:0 0 0 4px;
3351}
3352
3353#jd-header {
3354 padding: 0 0 5px;
3355 margin: 20px 0 10px;
3356 font-size:13px;
3357 border-bottom:solid 1px #ccc;
3358}
3359
3360#jd-header h1 {
3361 margin:0;
3362 padding:0;
3363}
3364
3365/* page-top-right container for reference pages (holds
3366links to summary tables) */
3367#api-info-block {
3368 font-size:13px;
3369 margin:20px 0 0;
3370 padding:0 10px 6px;
3371 font-weight:normal;
3372 float:right;
3373 text-align:right;
3374 color:#999;
3375 max-width:70%;
3376}
3377
3378#api-info-block div.api-level {
3379 font-weight:bold;
3380 font-size:inherit;
3381 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003382 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003383 padding:0;
3384 margin:0;
3385}
3386
3387/* inheritance table */
3388.jd-inheritance-table {
3389 border-spacing:0;
3390 margin:0;
3391 padding:0;
3392 font-size:13px;
3393 background-color:transparent;
3394}
3395.jd-inheritance-table tr td {
3396 border: none;
3397 margin: 0;
3398 padding: 0;
3399 background-color:transparent;
3400}
3401.jd-inheritance-table .jd-inheritance-space {
3402 font-weight:bold;
3403 width:1em;
3404}
3405.jd-inheritance-table .jd-inheritance-interface-cell {
3406 padding-left: 17px;
3407}
3408
3409
3410
3411.jd-sumtable a {
3412 text-decoration:none;
3413}
3414
3415.jd-sumtable a:hover {
3416 text-decoration:underline;
3417}
3418
3419/* the link inside a sumtable for "Show All/Hide All" */
3420.toggle-all {
3421 display:block;
3422 float:right;
3423 font-weight:normal;
3424 font-size:0.9em;
3425}
3426
3427/* adjustments for in/direct subclasses tables */
3428.jd-sumtable.jd-sumtable-subclasses {
3429 margin: 1em 0 0 0;
3430 max-width:968px;
3431 background-color:transparent;
3432 font-size:13px;
3433}
3434
3435/* extra space between end of method name and open-paren */
3436.sympad {
3437 margin-right: 2px;
3438}
3439
3440/* right alignment for the return type in sumtable */
3441.jd-sumtable .jd-typecol {
3442 text-align:right;
3443}
3444
3445/* adjustments for the expando table-in-table */
3446.jd-sumtable-expando {
3447 margin:.5em 0;
3448 padding:0;
3449}
3450
3451/* a div that holds a short description */
3452.jd-descrdiv {
3453 padding:3px 1em 0 1em;
3454 margin:0;
3455 border:0;
3456}
3457
3458#jd-content img.jd-expando-trigger-img {
3459 padding:0 4px 4px 0;
3460 margin:0;
3461}
3462
3463.jd-sumtable-subclasses div#subclasses-direct,
3464.jd-sumtable-subclasses div#subclasses-indirect {
3465 margin:0 0 0 13px;
3466}
3467
3468
3469
3470/********* MEMBER REF *************/
3471
3472
3473.jd-details {
3474/* border:1px solid #669999;
3475 padding:4px; */
3476 margin:0 0 1em;
3477}
3478
3479/* API reference: a container for the
3480.tagdata blocks that make up the detailed
3481description */
3482.jd-details-descr {
3483 padding:0;
3484 margin:.5em .25em;
3485}
3486
3487/* API reference: a block containing
3488a detailed description, a params table,
3489seealso list, etc */
3490.jd-tagdata {
3491 margin:.5em 1em;
3492}
3493
3494.jd-tagdata p {
3495 margin:0 0 1em 1em;
3496}
3497
3498/* API reference: adjustments to
3499the detailed description block */
3500.jd-tagdescr {
3501 margin:.25em 0 .75em 0;
3502}
3503
3504.jd-tagdescr ol,
3505.jd-tagdescr ul {
3506 margin:0 2.5em;
3507 padding:0;
3508}
3509
3510.jd-tagdescr table,
3511.jd-tagdescr img {
3512 margin:.25em 1em;
3513}
3514
3515.jd-tagdescr li {
3516margin:0 0 .25em 0;
3517padding:0;
3518}
3519
3520/* API reference: heading marking
3521the details section for constants,
3522attrs, methods, etc. */
3523h4.jd-details-title {
3524 font-size:1.15em;
3525 background-color: #E2E2E2;
3526 margin:1.5em 0 .6em;
3527 padding:3px 95px 3px 3px; /* room for api-level */
3528}
Scott Mainab4daf42012-11-30 11:27:17 -08003529body.google h4.jd-details-title {
3530 background-color: #FFF;
3531 padding-top:5px;
3532 border-top: 1px solid #ccc;
3533}
3534body.google table.jd-sumtable th {
3535 background-color: #FFF;
3536 color:#000;
3537}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003538
3539h4.jd-tagtitle {
3540 margin:0;
3541}
3542
3543h4 .normal {
3544 font-weight:normal;
3545}
3546
3547/* API reference: heading for "Parameters", "See Also", etc.,
3548in details sections */
3549h5.jd-tagtitle {
3550 margin:0 0 .25em 0;
3551 font-size:1em;
3552}
3553
3554.jd-tagtable {
3555 margin:0;
3556 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003557 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003558}
3559
3560.jd-tagtable td,
3561.jd-tagtable th {
3562 border:none;
3563 background-color:#fff;
3564 vertical-align:top;
3565 font-weight:normal;
3566 padding:2px 10px;
3567}
3568
3569.jd-tagtable th {
3570 font-style:italic;
3571}
3572
3573/* Inline api level indicator for methods */
3574div.api-level {
3575 font-size:.8em;
3576 font-weight:normal;
3577 color:#999;
3578 float:right;
3579 padding:0 8px 0;
3580 margin-top:-30px;
3581}
3582
3583table.jd-tagtable td,
3584table.jd-tagtable th {
3585 background-color:transparent;
3586}
3587
3588table.jd-tagtable th {
3589 color:inherit;
3590}
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614/* SEARCH FILTER */
3615
Scott Main0e76e7e2013-03-12 10:24:07 -07003616.menu-container {
3617 position:relative;
3618}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003619#search_autocomplete {
3620 font-weight:normal;
3621}
3622
Scott Main0e76e7e2013-03-12 10:24:07 -07003623.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003624 width: 193px;
3625 float: right;
3626}
Scott Main0e76e7e2013-03-12 10:24:07 -07003627.search_filtered_wrapper.docs {
3628 width:875px;
3629 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003630 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003631 top:26px;
3632 right:66px;
3633}
3634.suggest-card {
3635 position:relative;
3636 width:170px;
3637 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003638 padding:5px;
3639 border: solid 1px #C5C5C5;
3640 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003641 top: 15px;
3642 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003643 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3644 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3645 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3646}
Scott Main0e76e7e2013-03-12 10:24:07 -07003647.suggest-card.reference {
3648 position:absolute;
3649 z-index:999;
3650 min-width:171px; /* +padding and border makes this match input width */
3651 min-height:93px; /* add 3px because this has 1 not 4px top border */
3652 width:auto;
3653 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003654 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003655}
3656.suggest-card.develop {
3657 z-index:997;
3658 border-top: solid 4px #F80;
3659 float:right;
3660}
3661.suggest-card.design {
3662 z-index:996;
3663 border-top: solid 4px #33b5e5;
3664 float:right;
3665}
3666.suggest-card.distribute {
3667 z-index:995;
3668 border-top: solid 4px #9C0;
3669 float:right;
3670}
3671.child-card {
3672 width:100%;
3673}
3674.suggest-card.dummy {
3675 width:172px;
3676 float:right;
3677 border:0;
3678 background:transparent;
3679 -moz-box-shadow: none;
3680 -webkit-box-shadow: none;
3681 box-shadow: none;
3682}
3683
3684ul.search_filtered {
3685 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003686 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003687 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003688 padding: 0;
3689}
Scott Main0e76e7e2013-03-12 10:24:07 -07003690.search_filtered .jd-selected {
3691 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003692 cursor:pointer;
3693}
Scott Main0e76e7e2013-03-12 10:24:07 -07003694.search_filtered .jd-selected,
3695.search_filtered .jd-selected a {
3696 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003697}
3698
3699.no-display {
3700 display: none;
3701}
3702
Scott Main0e76e7e2013-03-12 10:24:07 -07003703.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003704 font-size: 0.81em;
3705 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003706 margin: 0 0 2px;
3707 padding: 0;
3708 line-height:1.5em;
3709}
3710
Scott Main0e76e7e2013-03-12 10:24:07 -07003711.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003712 padding:0 5px;
3713 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003714 display:inline-block;
3715 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003716}
3717
Scott Main0e76e7e2013-03-12 10:24:07 -07003718.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003719 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003720 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003721 border: none;
3722 margin: 8px 0 2px;
3723 padding:1px 5px;
3724 line-height:1.5em;
3725}
Scott Main0e76e7e2013-03-12 10:24:07 -07003726.search_filtered li.header.small {
3727 font-size:0.85em;
3728}
Scott Main7e447ed2013-02-19 17:22:37 -08003729
Scott Main98a2a712013-07-17 13:15:04 -07003730.suggest-card.reference
Scott Main0e76e7e2013-03-12 10:24:07 -07003731.search_filtered li.header {
3732 color:#aaa;
3733 font-size: 0.81em;
3734}
3735
3736.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003737 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003738}
3739
3740.show-item {
3741 display: table-row;
3742}
3743.hide-item {
3744 display: hidden;
3745}
3746
3747
3748
3749
3750
3751/* SEARCH RESULTS */
3752
Scott Maine4d8f1b2012-06-21 18:03:05 -07003753
3754#leftSearchControl .gsc-twiddle {
3755 background-image : none;
3756}
3757
3758#leftSearchControl td, #searchForm td {
3759 border: 0px solid #000;
3760 padding:0;
3761}
3762
3763#leftSearchControl .gsc-resultsHeader .gsc-title {
3764 padding-left : 0px;
3765 font-weight : bold;
3766 font-size : 13px;
3767 color:#006699;
3768 display : none;
3769}
3770
3771#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3772 display : none;
3773}
3774
3775#leftSearchControl .gsc-resultsRoot {
3776 padding-top : 6px;
3777}
3778
3779#leftSearchControl div.gs-visibleUrl-long {
3780 display : block;
3781 color:#006699;
3782}
3783
3784#leftSearchControl .gsc-webResult {
3785 padding:0 0 20px 0;
3786}
3787
3788.gsc-webResult div.gs-visibleUrl-short,
3789table.gsc-branding,
3790.gsc-clear-button {
3791 display : none;
3792}
3793
3794.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3795.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3796#leftSearchControl a,
3797#leftSearchControl a b {
3798 color:#006699;
3799}
3800
3801.gsc-resultsHeader {
3802 display: none;
3803}
3804
3805/* Disable built in search forms */
3806.gsc-control form.gsc-search-box {
3807 display : none;
3808}
3809table.gsc-search-box {
3810 margin:6px 0 0 0;
3811 border-collapse:collapse;
3812}
3813
3814td.gsc-input {
3815 padding:0 2px;
3816 width:100%;
3817 vertical-align:middle;
3818}
3819
3820input.gsc-input {
3821 border:1px solid #BCCDF0;
3822 width:99%;
3823 padding-left:2px;
3824 font-size:.95em;
3825}
3826
3827td.gsc-search-button {
3828 text-align: right;
3829 padding:0;
3830 vertical-align:top;
3831}
3832
3833
3834#searchResults {
3835 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3836(it doesn't) */
3837 height:auto;
3838}
3839
3840#searchResults .gsc-control {
3841 position:relative;
3842 width:auto;
3843 padding:0 0 10px;
3844}
3845
3846#searchResults .gsc-tabsArea {
3847 position:relative;
3848 white-space:nowrap;
3849 float:left;
3850 width:200px;
3851}
3852
3853#searchResults .gsc-above-wrapper-area {
3854 display:none;
3855}
3856
3857#searchResults .gsc-resultsbox-visible {
3858 float:left;
3859 width:720px;
3860 margin-left:20px;
3861}
3862
3863#searchResults .gsc-tabHeader {
3864 padding: 3px 6px;
3865 position:relative;
3866 width:auto;
3867 display:block;
3868}
3869
3870#searchResults h2#searchTitle {
3871 padding:0;
3872 margin:5px 0;
3873 border:none;
3874}
3875
3876#searchResults h2#searchTitle em {
3877 font-style:normal;
3878 color:#33B5E5;
3879}
3880
3881#searchResults .gsc-table-result {
3882 margin:5px 0 10px 0;
3883 background-color:transparent;
3884}
3885#searchResults .gs-web-image-box, .gs-promotion-image-box {
3886 width:120px;
3887}
3888#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3889 max-width:120px;
3890}
3891
3892#searchResults .gsc-table-result .gsc-thumbnail {
3893 padding:0 20px 0 0;
3894}
3895
3896#searchResults td {
3897 background-color:transparent;
3898}
3899
3900#searchResults .gsc-expansionArea {
3901 position:relative;
3902}
3903#searchResults .gsc-tabsArea .gsc-cursor-box {
3904 width:200px;
3905 padding:20px 0 0 1px;
3906}
3907#searchResults .gsc-cursor-page {
3908 display:inline-block;
3909 float:left;
3910 margin:-1px 0 0 -1px;
3911 padding:0;
3912 height:27px;
3913 width:27px;
3914 text-align:center;
3915 line-height:2;
3916}
3917
3918#searchResults .gsc-tabHeader.gsc-tabhInactive,
3919#searchResults .gsc-cursor-page {
3920 text-decoration:none;
3921 color:#258AAF;
3922 border: solid 1px #DADADA;
3923}
3924
3925#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3926#searchResults .gsc-cursor-page:hover {
3927 border-color: #DBDBDB;
3928 background-color: #F3F3F3;
3929 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3930 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3931 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3932 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3933 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3934 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3935 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3936EndColorStr='#ececec');
3937 color: #33B5E5;
3938}
3939
3940#searchResults .gsc-tabHeader.gsc-tabhActive,
3941#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3942#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3943#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3944 color:#fff;
3945 background-color: #09C;
3946 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3947 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3948 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3949 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3950 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3951 background-image: linear-gradient(top, #2FADDB, #09C);
3952 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3953 border: 1px solid #3990AB;
3954 z-index:100;
3955}
3956
3957}
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971/*********** PREVIOUSLY dac-styles.css ***************/
3972
3973
Scott Maine4d8f1b2012-06-21 18:03:05 -07003974#header {
3975 border-bottom:0;
3976}
3977
3978#header .wrap {
3979 max-width:940px;
3980 height:41px;
3981 border-bottom:1px solid;
3982 border-color: #ccc;
3983 position:relative;
3984}
3985
3986.about #header .wrap {
3987 border-color: #9933CC;
3988}
3989
3990.design #header .wrap {
3991 border-color: #33b5e5;
3992}
3993
3994.develop #header .wrap {
3995 border-color: #F80;
3996}
3997
3998.distribute #header .wrap {
3999 border-color: #9C0;
4000}
4001
4002.logo a {
4003 width:123px;
4004 float:left;
4005}
4006
4007#header .logo {
4008 margin-top: -6px;
4009 margin-left: 0px;
4010 margin-bottom:0px;
4011 width: 160px;
4012 padding-right:10px;
4013}
4014
4015.search {
4016 height:25px;
4017 margin-top: -3px;
4018 margin-bottom: 0px;
4019}
4020
4021
4022
4023/* Quicknav */
4024.btn-quicknav {
4025 width:20px;
4026 height:28px;
4027 float:left;
4028 margin-left:6px;
4029 padding-right:10px;
4030 position:relative;
4031 cursor:pointer;
4032 border-right:1px solid #CCC;
4033}
4034
4035.btn-quicknav a {
4036 zoom:1;
4037 position:absolute;
4038 top:13px;
4039 left:5px;
4040 display:block;
4041 text-indent:-9999em;
4042 width:10px;
4043 height:5px;
4044 background:url(../images/quicknav_arrow.png) no-repeat;
4045}
4046
4047.btn-quicknav a.arrow-active {
4048 background-position: 0 -5px;
4049 display:none;
4050}
4051
4052#header-wrap.quicknav a.arrow-inactive {
4053 display:none;
4054}
4055
4056.btn-quicknav.active a.arrow-active {
4057 display:block;
4058}
4059
4060.nav-x li {
4061 display:block;
4062 float:left;
4063 margin-right:45px;
4064 -webkit-transition: all 0.25s linear;
4065 -moz-transition: all 0.25s linear;
4066 -ms-transition: all 0.25s linear;
4067 -o-transition: all 0.25s linear;
4068 transition: all 0.25s linear;
4069}
4070
4071#header-wrap.quicknav .nav-x li {
4072 min-width:160px;
4073 margin-right:20px;
4074}
4075
4076#header-wrap.quicknav li.last {
4077 margin-right:0px;
4078}
4079
4080#quicknav {
Scott Main98a2a712013-07-17 13:15:04 -07004081 float:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004082 clear:both;
4083 margin-left:180px;
4084 margin-top:-30px;
4085 display:none;
4086 overflow:hidden;
4087}
4088
4089#header-wrap.quicknav #quicknav {
4090
4091}
4092
4093#quicknav ul {
4094 margin:10px 0;
4095 padding:0;
4096}
4097
4098#quicknav ul li.design {
4099 border-top:1px solid #33b5e5;
4100}
4101
4102#quicknav ul li.develop {
4103 border-top:1px solid #FF8800;
4104}
4105
4106#quicknav ul li.distribute {
4107 border-top:1px solid #99cc00;
4108}
4109
4110#quicknav ul li {
4111 display:block;
4112 float:left;
4113 margin:0 20px 0 0;
4114 min-width:140px;
4115}
4116
4117#quicknav ul li.last {
4118 margin-right:0px;
4119}
4120
4121#quicknav ul li ul li {
4122 float:none;
4123}
4124
4125#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07004126 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004127}
4128
4129#quicknav ul li li ul,
4130#quicknav ul li li ul li {
4131 margin:0;
4132}
4133
4134#quicknav ul li li ul li:before {
4135 content:"\21B3";
4136}
4137
4138#header-wrap {
4139 -webkit-transition: all 0.25s ease-out;
4140 -moz-transition: all 0.25s ease-out;
4141 -ms-transition: all 0.25s ease-out;
4142 -o-transition: all 0.25s ease-out;
4143 transition: all 0.25s ease-out;
4144
4145}
4146
4147#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07004148 height:196px;
Scott Main98a2a712013-07-17 13:15:04 -07004149
Scott Maine4d8f1b2012-06-21 18:03:05 -07004150}
4151
4152/* SEARCH AND MORE */
4153.search {
4154 position: absolute;
4155 width: 50px;
4156 height:28px;
4157 display: block;
4158 margin-top:-3px;
4159 margin-bottom:7px;
4160 overflow:hidden;
4161 z-index:100;
4162 right:54px;
4163 -webkit-transition: width 0.4s ease;
4164 -moz-transition: width 0.4s ease;
4165 -o-transition: width 0.4s ease;
4166 transition: width 0.4s ease;
4167}
4168
4169.search #search-btn {
4170 width:50px;
4171 height:28px;
4172 background:url(../images/icon_search.png) no-repeat;
4173 float:left;
4174}
4175
4176.search-inner {
4177 width:245px;
4178}
4179
4180.search:hover, .search.active {
4181 width:245px;
4182}
4183
4184.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004185 position: absolute;
4186 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07004187}
4188
4189.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08004190 width: 214px;
4191 height: 1px;
4192 top: 24px;
4193 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07004194}
4195
Scott Main98a2a712013-07-17 13:15:04 -07004196.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004197 height: 5px;
4198 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004199}
4200
4201.search .left {
4202 top: 22px;
4203 left: 56px;
4204 background-color:#CCC;
4205}
4206
4207.search .right {
4208 top: 22px;
4209 left: 238px;
4210 background-color:#CCC;
4211}
4212
4213.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08004214 margin-top: 2px;
4215 width: 162px;
4216 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004217}
4218
4219.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08004220 color: #2f2f2f;
4221 font-size: 0.95em;
Scott Main98a2a712013-07-17 13:15:04 -07004222 width: 178px;
Scott Mainb7f96372013-02-07 16:56:43 -08004223 border: none;
Scott Main98a2a712013-07-17 13:15:04 -07004224 margin-left: 6px;
4225 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004226 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08004227 background-color: transparent;
4228 border-bottom:1px solid #CCC;
4229 padding:0 0 0 4px;
4230 outline:none;
4231 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004232}
4233
4234.search:hover form input {
4235 border-bottom:1px solid #33B5E5;
4236}
4237
4238.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004239 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004240}
4241
4242.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08004243 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004244}
4245
4246.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08004247 color: #222;
4248 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07004249}
4250
4251.moremenu {
4252 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08004253 position: relative;
4254 width: 50px;
4255 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004256 display: block;
4257 margin-top:-3px;
4258 margin-bottom:7px;
4259 overflow:hidden;
4260 -webkit-transition: width 0.25s ease;
4261 -moz-transition: width 0.25s ease;
4262 -o-transition: width 0.25s ease;
4263 transition: width 0.25s ease;
4264}
4265
4266.moremenu #more-btn {
4267 width:40px;
4268 height:28px;
4269 background:url(../images/icon_more.png) no-repeat;
4270 border-left:1px solid #CCC;
4271 float:left;
4272 cursor:pointer;
4273}
4274
4275.moremenu:hover #more-btn {
4276 background-position:0 -28px;
4277}
4278
4279.morehover {
4280 position:absolute;
4281 right:6px;
4282 top:-9px;
4283 width:40px;
4284 height:35px;
4285 z-index:99;
4286 overflow:hidden;
4287
4288 -webkit-opacity:0;
4289 -moz-opacity:0;
4290 -o-opacity:0;
4291 opacity:0;
4292
4293 -webkit-transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004294 -moz-transform-origin:100% 0%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004295 -o-transform-origin:100% 0%;
4296 transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004297
Scott Maine4d8f1b2012-06-21 18:03:05 -07004298 -webkit-transition-property: -webkit-opacity;
4299 -webkit-transition-duration: .25s;
4300 -webkit-transition-timing-function:ease;
4301
Scott Main0e76e7e2013-03-12 10:24:07 -07004302 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004303 -moz-transition-duration: .25s;
4304 -moz-transition-timing-function:ease;
4305
Scott Main0e76e7e2013-03-12 10:24:07 -07004306 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004307 -o-transition-duration: .25s;
4308 -o-transition-timing-function:ease;
Scott Main98a2a712013-07-17 13:15:04 -07004309
Scott Main0e76e7e2013-03-12 10:24:07 -07004310 transition-property: opacity;
4311 transition-duration: .25s;
4312 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004313}
4314
Scott Maine05e6f92013-01-29 13:34:17 -08004315.morehover:hover,
4316.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004317 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07004318 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004319 width:268px;
4320 -webkit-transition-property:height, -webkit-opacity;
4321}
4322
4323.morehover .top {
4324 width:268px;
4325 height:39px;
4326 background:url(../images/more_top.png) no-repeat;
4327}
4328
4329.morehover .mid {
4330 width:228px;
4331 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004332 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004333}
4334
4335.morehover .mid .header {
4336 border-bottom:1px solid #ccc;
4337 font-weight:bold;
4338}
4339
4340.morehover .bottom {
4341 width:268px;
4342 height:6px;
4343 background:url(../images/more_bottom.png) no-repeat;
4344}
4345
4346.morehover ul {
4347 margin:10px 10px 20px 0;
4348}
4349
4350.morehover ul li {
4351 list-style:none;
4352}
4353
4354.morehover ul li.active a,
4355.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004356 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004357}
4358
4359.morehover ul li.active img {
4360 margin-right:4px;
4361}
4362
4363
4364
4365
4366/* MARQUEE */
4367.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004368 width:100%;
4369 overflow:hidden;
4370 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004371}
4372.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004373 position:absolute;
4374 top:50%;
4375 left:0px;
4376 margin-top:-36px;
4377 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004378}
4379.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004380 position:absolute;
4381 top:50%;
4382 margin-top:-36px;
4383 z-index:99;
4384 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004385}
4386
4387.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004388 position:absolute;
4389 bottom:20px;
4390 width:100%;
4391 text-align:center;
4392 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004393}
4394.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004395 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004396}
4397.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004398 display: inline-block;
4399 width:12px;
4400 height:12px;
4401 text-indent:-8000px;
4402 list-style:none;
4403 margin: 0 2px;
4404 border-radius:6px;
4405 background-color:#ccc;
4406 cursor:pointer;
Scott Main98a2a712013-07-17 13:15:04 -07004407 -webkit-transition:color .5s ease-in;
4408 -moz-transition:color .5s ease-in;
4409 -o-transition:color .5s ease-in;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004410 transition:color .5s ease-in;
4411}
4412.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004413 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004414}
4415.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004416 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004417}
4418.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004419 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004420}
4421.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004422 display:inline;
4423 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004424}
4425
4426
4427
4428
4429a.download-sdk {
4430 float:right;
4431 margin:-10px 0;
4432 height:30px;
4433 padding-top:4px;
4434 padding-bottom:0px;
4435}
4436
4437#nav-x {
4438 padding-top: 14px;
4439}
4440
Scott Main1d62fa82012-07-17 13:15:12 -07004441#nav-x .wrap {
4442 min-height:34px;
4443}
4444
Scott Maine4d8f1b2012-06-21 18:03:05 -07004445#nav-x .wrap,
4446#searchResults.wrap {
4447 max-width:940px;
4448 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004449}
4450
Scott Maina214d842012-07-16 17:14:40 -07004451#searchResults.wrap #leftSearchControl {
4452 min-height:700px
4453}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004454.nav-x {
4455 margin-left:0;
4456 margin-bottom:0;
4457}
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468/*
4469 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4470 */
4471
4472.jspContainer {
4473 overflow: hidden;
4474 position: relative;
4475}
4476
4477.jspPane {
4478 position: absolute;
Scott Main2d967c62013-03-11 09:21:07 -07004479 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004480}
4481
4482.jspVerticalBar {
4483 position: absolute;
4484 top: 0;
4485 right: 0;
4486 width: 4px;
4487 height: 100%;
4488 background: #f5f5f5;
4489}
4490
4491.jspHorizontalBar {
4492 position: absolute;
4493 bottom: 0;
4494 left: 0;
4495 width: 100%;
4496 height: 4px;
4497 background: #f5f5f5;
4498}
4499
4500.jspVerticalBar *,
4501.jspHorizontalBar * {
4502 margin: 0;
4503 padding: 0;
4504}
4505.jspCap {
4506 display: block;
4507}
4508
4509.jspVerticalBar .jspCap {
4510 height: 4px;
4511}
4512
4513.jspHorizontalBar .jspCap {
4514 width: 0;
4515 height: 100%;
4516}
4517
4518.jspHorizontalBar .jspCap {
4519 float: left;
4520}
4521
4522.jspTrack {
4523 position: relative;
4524}
4525
4526.jspDrag {
4527 background: #bbb;
4528 position: relative;
4529 top: 0;
4530 left: 0;
4531 cursor: pointer;
4532}
4533
4534.jspDrag:hover,
4535.jspDrag:active {
4536 border-color: #09c;
4537 background-color: #4cadcb;
4538 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4539 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4540 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4541 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4542 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4543 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Main98a2a712013-07-17 13:15:04 -07004544 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004545}
4546
4547.jspHorizontalBar .jspTrack,
4548.jspHorizontalBar .jspDrag {
4549 float: left;
4550 height: 100%;
4551}
4552
4553.jspArrow {
4554 background: #999;
4555 text-indent: -20000px;
4556 display: block;
4557 cursor: pointer;
4558}
4559
4560.jspArrow.jspDisabled {
4561 cursor: default;
4562 background: #ccc;
4563}
4564
4565.jspVerticalBar .jspArrow {
4566 height: 16px;
4567}
4568
4569.jspHorizontalBar .jspArrow {
4570 width: 16px;
4571 float: left;
4572 height: 100%;
4573}
4574
4575.jspVerticalBar .jspArrow:focus {
4576 outline: none;
4577}
4578
4579.jspCorner {
4580 float: left;
4581 height: 100%;
4582}
4583
4584/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4585* html .jspCorner {
4586 margin: 0 -3px 0 0;
4587}
4588/******* end of jscrollpane *********/
4589
4590
4591
4592
4593
4594/************ DEVELOP HOMEPAGE ******************/
4595
4596/* Slideshow */
4597.slideshow-develop {
4598 height: 300px;
4599 width: 940px;
4600 position: relative;
4601 overflow:hidden;
4602}
4603.slideshow-develop .frame {
4604 width: 940px;
4605 height: 300px;
4606}
4607.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004608 max-width:350px;
4609 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004610 margin:20px 0 0 90px;
4611 -webkit-transform: perspective(800px ) rotateY( 35deg );
4612 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4613 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4614 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4615}
4616.slideshow-develop img.play.no-shadow {
4617 box-shadow: none;
4618 -moz-box-shadow: none;
4619 -webkit-box-shadow: none;
4620}
4621.slideshow-develop img.play.no-transform {
4622 -webkit-transform: none;
4623}
4624.slideshow-develop a.slideshow-next {
4625 background: url(../images/arrow-right-develop.png);
4626}
4627.slideshow-develop a.slideshow-prev {
4628 background: url(../images/arrow-left-develop.png);
4629}
4630.slideshow-develop .content-right {
4631 float: left;
4632}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004633.slideshow-develop .content-right h2 {
4634 padding:0;
4635 margin-bottom:10px;
4636 border:none;
4637}
4638.slideshow-develop .item {
4639 height: 300px;
4640 width: 940px;
4641}
4642.slideshow-develop .pagination ul li.active {
4643 background-color: #F80;
4644}
4645.slideshow-develop .pagination ul li.active:hover {
4646 background-color: #F80;
4647}
Scott Main0e585702012-10-22 20:30:22 -07004648.slideshow-develop .item hr {
4649 margin:5px 0 10px;
4650}
4651.slideshow-develop .item p {
4652 margin:10px 0;
4653}
4654.slideshow-develop .item p.title-intro {
4655 position:absolute;
4656 margin:0;
4657}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004658
4659/* Feeds */
4660.feed ul {
4661 margin: 0;
4662}
4663.feed .feed-nav {
4664 height: 25px;
4665 border-bottom: 1px solid #CCC;
4666}
4667.feed .feed-nav li {
4668 list-style: none;
4669 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004670 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004671 margin-right: 25px;
4672 cursor: pointer;
4673}
4674.feed .feed-nav li.active {
4675 color: #000;
4676 border-bottom: 4px solid #F80;
4677}
4678.feed .feed-container {
4679 overflow: hidden;
4680 width: 460px;
4681}
4682.feed .feed-container .feed-frame {
4683 width: 1000px;
4684}
4685.feed .feed-container .feed-frame ul {
4686 float: left;
4687 width:460px;
4688}
4689.feed .feed-container .feed-frame ul ul {
4690 float: none;
4691 margin:10px 0 0 30px;
4692}
4693.feed .feed-container .feed-frame li {
4694 list-style: none;
4695 margin: 20px 0 20px 0;
4696 width: 460px;
4697 height:93px;
4698}
4699.feed .feed-container .feed-frame li.playlist {
4700 height:auto;
4701}
4702.feed .feed-container .feed-frame li.playlist a {
4703 height:93px;
4704 display:block;
4705}
4706.feed .feed-container .feed-frame li.more {
4707 height:20px;
4708 margin:10px 0 5px 5px;
4709}
4710.feed .feed-container .feed-frame li.more a {
4711 height:inherit;
4712}
4713.feed .feed-container .feed-frame li.playlist-video {
4714 list-style: none;
4715 margin: 0;
4716 width: 460px;
4717 height:55px;
4718 font-size:12px;
4719}
4720.feed .feed-container .feed-frame li.playlist-video a {
4721 height:45px;
4722 padding:5px;
4723}
4724.feed .feed-container .feed-frame li.playlist-video h5 {
4725 font-size:12px;
4726 line-height:13px;
4727 margin:0;
4728}
4729.feed .feed-container .feed-frame li.playlist-video p {
4730 margin:5px 0 0;
4731 line-height:15px;
4732}
4733.feed-container .feed-frame div.feed-image {
4734 float: left;
4735 border: 1px solid #999;
4736 margin:0 20px 0 0;
4737 width:122px;
4738 height:92px;
4739 background:url('../images/blog-default.png') no-repeat 0 0;
4740 background-size:180px;
4741}
4742#jd-content .feed .feed-container .feed-frame li img {
4743 float: left;
4744 border: 1px solid #999;
4745 margin:0 20px 0 0;
4746 width:122px;
4747 height:92px;
4748}
4749#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4750 width:inherit;
4751 height:inherit;
4752}
4753
4754.feed .feed-container .feed-frame li a,
4755.feed .feed-container .feed-frame li a:active {
4756 color:#555 !important;
4757}
4758
4759.feed .feed-container .feed-frame li a:hover,
4760.feed .feed-container .feed-frame li a:hover * {
4761 color:#7AA1B0 !important;
4762}
4763
4764/* Video player */
4765#player-wrapper {
4766 display:none;
4767 margin: -1px auto 0;
4768 position: relative;
4769 width: 940px;
4770 height: 0px;
4771}
4772#player-frame {
4773 background: #EFEFEF;
4774 border: 1px solid #CCC;
4775 padding: 0px 207px;
4776 z-index: 10; /* stay above marque, but below search suggestions */
4777 width: 525px;
4778 height: 330px;
4779 position: relative;
4780}
4781
4782
4783
4784/************ DISTRIBUTE HOMEPAGE ***************/
4785
4786.marquee {
4787 width: 760px;
4788}
4789.marquee .main-img {
4790 float: left;
4791 margin-top: 20px;
4792 width: 490px;
4793}
4794.marquee .copy {
4795 width: 270px;
4796 float: left;
4797 margin-top: 30px;
4798}
4799.distribute-features {
4800 margin: 0;
4801}
4802.distribute-features ul {
4803 margin: 0;
4804}
4805.distribute-features ul li {
4806 list-style: none;
4807 float: left;
4808 border-top: 1px solid #9C0;
4809 width: 220px;
4810 margin-right: 50px;
4811}
4812.distribute-features ul li.last {
4813 margin-right: 0px;
4814}
4815
Dirk Doughertye5862e82013-05-15 02:19:54 -07004816.distribute-features .distribute-link li a {
4817 color:red !important;
4818}
4819
4820.distribute-features .distribute-link li a,
4821.distribute-features .distribute-link li a:active {
4822 color:#555 !important;
4823}
4824
4825.distribute-features .distribute-link li a:hover,
4826.distribute-features .distribute-link li a:hover * {
4827 color:#7AA1B0 !important;
4828}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004829
Scott Main8fa53512012-11-30 20:16:42 -08004830
Scott Maine4d8f1b2012-06-21 18:03:05 -07004831/************ DEVELOP TOPIC CONTAINERS ************/
4832
4833.landing-banner,
4834.landing-docs {
Scott Mainafc4db32013-11-20 16:53:12 -08004835 margin:20px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004836}
Scott Mainafc4db32013-11-20 16:53:12 -08004837.landing-banner > div:first-child,
4838.landing-docs > div:first-child,
4839.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004840 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004841 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004842}
Scott Mainafc4db32013-11-20 16:53:12 -08004843.landing-banner.short > div {
4844 min-height:50px;
4845}
4846.landing-banner > div:last-child,
4847.landing-docs > div:last-child,
4848.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004849 margin-right:0;
4850}
4851
Scott Mainafc4db32013-11-20 16:53:12 -08004852.landing-banner > div > *:last-child {
4853 margin-bottom:0;
4854}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004855.landing-banner h1 {
4856 margin-top:0;
4857}
Scott Mainafc4db32013-11-20 16:53:12 -08004858.landing-docs,
4859.landing-banner {
4860 clear:both;
Scott Maine6850d22012-10-08 15:59:01 -07004861 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004862}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004863.landing-docs h3 {
4864 font-size:14px;
4865 line-height:21px;
4866 color:#555;
4867 text-transform:uppercase;
4868 border-bottom:1px solid #CCC;
4869 margin:0 0 20px;
4870}
4871.landing-docs a {
4872 color:#333 !important;
4873}
Robert Ly40e90992012-11-28 17:46:17 -08004874
Scott Maine4d8f1b2012-06-21 18:03:05 -07004875.landing-docs a:hover,
4876.landing-docs a:hover * {
4877 color:#7AA1B0 !important
4878}
4879
Robert Ly40e90992012-11-28 17:46:17 -08004880.landing-docs .normal-links a {
4881 color:#258aaf !important;
4882}
4883
Scott Maine4d8f1b2012-06-21 18:03:05 -07004884.plusone {
4885 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07004886}
Scott Main9edfa6d2012-08-14 15:04:40 -07004887
4888
4889
Scott Mainafc4db32013-11-20 16:53:12 -08004890.next-docs {
4891 border-top:1px solid #ccc;
4892 margin:40px 0 0;
4893 padding:5px 0 0;
4894 clear:left;
4895 overflow:hidden;
4896}
4897.next-docs div:first-child {
4898 margin-left:0;
4899}
4900.next-docs div:last-child {
4901 margin-right:0;
4902}
4903
4904.next-docs h2 {
4905 font-size:14px;
4906 line-height:21px;
4907 color:#555;
4908 text-transform:uppercase;
4909 border-bottom:none;
Scott Main9ee0fae2014-01-23 10:50:57 -08004910 margin:0 0 1em;
Scott Mainafc4db32013-11-20 16:53:12 -08004911 padding:5px 0 0;
4912}
4913
4914
4915
Scott Main9edfa6d2012-08-14 15:04:40 -07004916/************* HOME/LANDING PAGE *****************/
4917
4918.slideshow-home {
4919 height: 500px;
4920 width: 940px;
4921 border-bottom: 1px solid #CCC;
4922 position: relative;
4923 margin: 0;
4924}
4925.slideshow-home .frame {
4926 width: 940px;
4927 height: 500px;
4928}
4929.slideshow-home .content-left {
4930 float: left;
4931 text-align: center;
4932 vertical-align: center;
4933 margin: 0 0 0 35px;
4934}
4935.slideshow-home .content-right {
4936 margin: 80px 0 0 0;
4937}
4938.slideshow-home .content-right p {
4939 margin-bottom: 10px;
4940}
4941.slideshow-home .content-right p:last-child {
4942 margin-top: 15px;
4943}
4944.slideshow-home .content-right h1 {
4945 padding:0;
4946}
4947.slideshow-home .item {
4948 height: 500px;
4949 width: 940px;
4950}
4951.home-sections {
4952 padding: 30px 20px 20px;
4953 margin: 20px 0;
4954 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4955}
4956.home-sections ul {
4957 margin: 0;
4958}
4959.home-sections ul li {
4960 float: left;
4961 display: block;
4962 list-style: none;
4963 width: 170px;
4964 height: 35px;
4965 border: 1px solid #ccc;
4966 background: white;
4967 margin-right: 10px;
4968 border-radius: 1px;
4969 -webkit-border-radius: 1px;
4970 -moz-border-radius: 1px;
4971 box-shadow: 1px 1px 5px #EEE;
4972 -webkit-box-shadow: 1px 1px 5px #EEE;
4973 -moz-box-shadow: 1px 1px 5px #EEE;
4974 background: white;
4975}
4976.home-sections ul li:hover {
4977 background: #F9F9F9;
4978 border: 1px solid #CCC;
4979}
4980.home-sections ul li a,
4981.home-sections ul li a:hover {
4982 font-weight: bold;
4983 margin-top: 8px;
4984 line-height: 18px;
4985 float: left;
4986 width: 100%;
4987 text-align: center;
4988 color: #09c !important;
4989}
4990.home-sections ul li a {
4991 font-weight: bold;
4992 margin-top: 8px;
4993 line-height: 18px;
4994 float: left;
4995 width:100%;
4996 text-align:center;
4997}
4998.home-sections ul li img {
4999 float: left;
5000 margin: -8px 0 0 10px;
5001}
5002.home-sections ul li.last {
5003 margin-right: 0px;
5004}
Scott Mainf5089842012-08-14 16:31:07 -07005005.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07005006 margin-top: -40px;
5007}