blob: cba6c6c82890f679171fd1f3270935b1a56abdc0 [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;
Dirk Doughertyc3921652014-05-13 16:55:26 -0700101 top: 65px; /* sticky-header height + 20px gutter */
102}
Scott Main98a2a712013-07-17 13:15:04 -0700103
Scott Main6b2dc272012-09-11 14:27:34 -0700104#devdoc-nav span.small {
105 font-size:12px;
106 font-weight:normal;
107}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700108
109#content {
110 width: 760px;
111 float: left; }
112
113a:hover,
114acronym:hover {
115 color: #7aa1b0 !important; }
116
117a:focus,
118a:active {
119 color: #33b5e5 !important; }
Scott Main98a2a712013-07-17 13:15:04 -0700120
Scott Maind4cb7832012-11-28 11:10:09 -0800121a.external-link {
122 background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
123 padding-right:16px;
124}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700125
126img {
127 border: none; }
128#jd-content img {
129 margin-bottom:15px;
130}
131
132ul {
133 margin: 0;
134 padding: 0; }
135
136strong {
137 font-weight: 500; }
138
139em {
140 font-style: italic; }
141
Scott Maindb3678b2012-10-23 14:13:41 -0700142acronym,
143.tooltip-link {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700144 border-bottom: 1px dotted #555555;
145 cursor: help; }
146
Scott Maindb3678b2012-10-23 14:13:41 -0700147acronym:hover,
148.tooltip-link:hover {
149 color: #7aa1b0;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700150 border-bottom-color: #7aa1b0; }
151
152img.with-shadow,
153video.with-shadow {
154 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
155
156/* disclosures mixin */
157/* content layout */
158.layout-content-row {
159 display: inline-block;
160 margin-bottom: 10px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700161 * html .layout-content-row {
162 height: 1px; }
163
164.layout-content-col {
165 float: left;
166 margin-left: 20px; }
167 .layout-content-col:first-child {
168 margin-left: 0; }
169 .layout-content-col h3,
170 .layout-content-col h4 {
171 margin-top:0; }
172
173.layout-content-col.span-1 {
174 width: 40px; }
175
176.layout-content-col.span-2 {
177 width: 100px; }
178
179.layout-content-col.span-3 {
180 width: 160px; }
181
182.layout-content-col.span-4 {
183 width: 220px; }
184
185.layout-content-col.span-5 {
186 width: 280px; }
187
188.layout-content-col.span-6 {
189 width: 340px; }
190
191.layout-content-col.span-7 {
192 width: 400px; }
193
194.layout-content-col.span-8 {
195 width: 460px; }
196
197.layout-content-col.span-9 {
198 width: 520px; }
199
200.layout-content-col.span-10 {
201 width: 580px; }
202
203.layout-content-col.span-11 {
204 width: 640px; }
205
206.layout-content-col.span-12 {
207 width: 700px; }
208
209.layout-content-col.span-13 {
210 width: 760px; }
211
212.vspace.size-1 {
213 height: 10px; }
214
215.vspace.size-2 {
216 height: 20px; }
217
218.vspace.size-3 {
219 height: 30px; }
220
221.vspace.size-4 {
222 height: 40px; }
223
224.vspace.size-5 {
225 height: 50px; }
226
227.vspace.size-6 {
228 height: 60px; }
229
230.vspace.size-7 {
231 height: 70px; }
232
233.vspace.size-8 {
234 height: 80px; }
235
236.vspace.size-9 {
237 height: 90px; }
238
239.vspace.size-10 {
240 height: 100px; }
241
242.vspace.size-11 {
243 height: 110px; }
244
245.vspace.size-12 {
246 height: 120px; }
247
248.vspace.size-13 {
249 height: 130px; }
250
251.vspace.size-14 {
252 height: 140px; }
253
254.vspace.size-15 {
255 height: 150px; }
256
257.vspace.size-16 {
258 height: 160px; }
259
260/* nav */
261#nav {
262 /* section header divs */
263 /* expanded section header divs */
264 /* sublinks */ }
265 #nav li {
266 list-style-type: none;
267 font-size: 14px;
268 margin:0;
269 padding:0;
270 line-height: 15px; }
271 #nav a {
272 color: #555555;
Scott Mainab4daf42012-11-30 11:27:17 -0800273 text-decoration: none;
274 word-wrap:break-word; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700275 #nav .nav-section-header {
276 position: relative;
277 margin-bottom: 1px;
278 padding: 0 30px 0 0; }
279 #nav li.selected a, #nav li.selected > .nav-section-header > a {
280 color: #09C;
281 }
282 #nav li.selected ul li a {
283 /* don't highlight child items */
284 color: #555555; }
285 #nav .nav-section .nav-section .nav-section-header {
286 /* no white line between second level sections */
287 margin-bottom: 0; }
288 /* section header links */
289 #nav > li > div > a {
290 display: block;
291 color: #333333;
292 font-weight: 500;
293 padding: 10px 0 10px 10px; }
294 #nav .nav-section-header:after {
295 content: '';
296 background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
297 width: 34px;
298 height: 34px;
299 display: block;
300 position: absolute;
301 top: 0;
302 right: 0; }
Scott Mainad08f072013-08-20 16:49:57 -0700303 #nav .nav-section-header.empty {
304 padding:0; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700305 #nav .nav-section-header.empty:after {
306 display: none; }
307 /* nested nav headers */
308 #nav .nav-section .nav-section {
309 position: relative;
310 padding: 0;
311 margin: 0; }
312 #nav .nav-section li a {
313 /* first gen child (2nd level li) */
314 display:block;
315 font-weight: normal;
316 text-transform: none;
317 padding: 7px 5px 7px 10px;
318 }
319 #nav .nav-section li li a {
320 /* second gen child (3rd level li) */
321 padding: 5px 5px 5px 10px;
322 }
323 #nav li.expanded .nav-section-header {
324 background:#e9e9e9;
325 background: rgba(0, 0, 0, 0.05); }
326 #nav li.expanded li .nav-section-header {
327 background: transparent; }
328 #nav li.expanded li ul {
329 /* 3rd level ul */
Scott Main502c9392012-11-27 15:00:40 -0800330 padding:0 0 0 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700331 }
332 #nav li.expanded > .nav-section-header:after {
333 content: '';
334 background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
335 width: 34px;
336 height: 34px; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800337 #nav li.expanded li ul.tree-list-children {
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -0700338 padding: 0;
Scott Mainac71b2b2012-11-30 14:40:58 -0800339 }
340 #nav li.expanded li ul.tree-list-children .tree-list-children {
Scott Main98a2a712013-07-17 13:15:04 -0700341 padding:0 0 0 10px;
Scott Mainac71b2b2012-11-30 14:40:58 -0800342 }
343 #nav li span.tree-list-subtitle {
344 display:inline-block;
345 padding:5px 0 0 10px;
346 color:#555;
347 text-transform:uppercase;
348 font-size:12px;
349 }
350 #nav li span.tree-list-subtitle:before {
351 content: '—';
352 }
353 #nav li span.tree-list-subtitle:after {
354 content: '—';
355 }
Scott Mainb7b49712014-03-18 05:29:15 -0700356 #nav li span.tree-list-subtitle.package {
357 padding-top:15px;
358 cursor:default;
359 }
360 #nav li span.tree-list-subtitle.package:before {
361 content: '';
362 }
363 #nav li span.tree-list-subtitle.package:after {
364 content: '';
365 }
366 #nav li ul.tree-list-children.classes {
367 padding-left:10px;
368 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700369 #nav li ul {
370 display:none;
371 overflow: hidden;
372 margin: 0; }
373 #nav li ul.animate-height-in {
374 -webkit-transition: height 0.25s ease-in;
375 -moz-transition: height 0.25s ease-in;
376 transition: height 0.25s ease-in; }
377 #nav li ul.animate-height-out {
378 -webkit-transition: height 0.25s ease-out;
379 -moz-transition: height 0.25s ease-out;
380 transition: height 0.25s ease-out; }
381 #nav li ul li {
382 padding: 0; }
383 #nav li li li {
384 padding: 0; }
385 #nav li.expanded ul {
386 }
387 #nav li ul > li {
388 padding:0;
389 }
390 #nav li ul > li:last-child {
391 padding-bottom:5px;
392 }
Scott Mainac71b2b2012-11-30 14:40:58 -0800393 #nav li ul.tree-list-children > li:last-child {
394 padding-bottom:0;
395 }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700396 #nav li.expanded ul > li {
397 background:#efefef;
398 background: rgba(0, 0, 0, 0.03); }
399 #nav li.expanded ul > li li {
400 background:inherit; }
Scott Mainac71b2b2012-11-30 14:40:58 -0800401 #nav li ul.tree-list-children ul {
402 display:block; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700403
Scott Main70557ee2013-10-30 14:47:40 -0700404#nav.samples-nav li li li {
405 font-size:13px;
406}
407#nav.samples-nav li li li a {
408 padding-top:3px;
409 padding-bottom:3px;
410}
411#nav.samples-nav li li ul > li:last-child {
412 padding-bottom:3px;
413}
414
Scott Maine4d8f1b2012-06-21 18:03:05 -0700415.new,
416.new-child {
417 font-size: .78em;
418 font-weight: bold;
419 color: #ff3d3d;
420 vertical-align:top;
421 white-space:nowrap;
422}
423
424/* content header */
425.content-header {
426 height: 30px;
smain@google.com20ef3822014-06-13 16:05:28 -0700427 margin:36px 0 23px; /* same as h1 */
428 padding:0 0 10px;} /* same as h1 */
Scott Maine4d8f1b2012-06-21 18:03:05 -0700429.content-header.just-links {
430 margin-bottom:0;
431 padding-bottom:0;}
Scott Main98a2a712013-07-17 13:15:04 -0700432
Scott Maine4d8f1b2012-06-21 18:03:05 -0700433.content-header h1 {
smain@google.com20ef3822014-06-13 16:05:28 -0700434 margin:0;
435 padding:0;
436 width: 700px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700437}
Scott Main07816042013-12-19 12:47:38 -0800438.content-header > div:first-child {
smain@google.com20ef3822014-06-13 16:05:28 -0700439 height:1px; /* set fixed height for the header div to ensure the
Scott Main07816042013-12-19 12:47:38 -0800440 next/prev links align with toc on training classes */
441}
Scott Maine4d8f1b2012-06-21 18:03:05 -0700442
443.content-footer {
444 border-top: 1px solid #ccc;
445 margin-top: 10px;
446 padding-top:10px;
447 height: 30px; }
448
449.content-footer .col-9 {
450 margin-left:0;
451}
452.content-footer .col-4 {
453 margin-right:0;
454}
455.content-footer.wrap {
456 width:940px;
457}
458
459.paging-links {
460 position: relative; }
461 .paging-links a {
462 position: absolute; }
463 .paging-links a,
464 .training-nav-top a {
465 font-size: 14px;
466 line-height: 30px;
467 color: #555555;
468 text-decoration: none;
469 text-transform: uppercase; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700470 .paging-links .prev-page-link:before,
471 .training-nav-top .prev-page-link:before {
472 content: '';
473 background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
474 width: 10px;
475 height: 10px;
476 display: inline-block;
477 margin-right: 5px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700478 .training-nav-top .next-page-link,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700479 .training-nav-top .start-class-link,
480 .training-nav-top .start-course-link {
481 right: 10px; }
Scott Maina4888dc2012-10-02 23:25:21 -0700482 .paging-links .prev-page-link {
483 left: -15px; }
484 .paging-links .next-page-link {
485 right: 0px; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700486 .next-page-link:after,
487 .start-class-link:after,
488 .start-course-link:after,
Scott Main0b2db162013-05-15 01:15:50 -0700489 .next-class-link:after,
490 .go-link:after {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700491 content: '';
492 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
493 width: 10px;
494 height: 10px;
495 display: inline-block;
496 margin-left: 5px; }
Scott Main25c89dd2013-10-07 14:17:55 -0700497 .prev-page-link.inline:before {
498 content: none; }
499 .next-page-link.inline:after {
500 content: none; }
Scott Main98a2a712013-07-17 13:15:04 -0700501
502
Scott Maine4d8f1b2012-06-21 18:03:05 -0700503 .training-nav-top a {
504 display:block;
505 float:left;
Scott Mainf3d01042012-10-02 20:36:45 -0700506 width:122px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700507 height:28px;
Scott Mainf3d01042012-10-02 20:36:45 -0700508 padding: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700509 line-height:28px;
510 text-align:center;
511 border:1px solid #DADADA;
512 border-bottom:0;
513 }
Scott Main5a1123e2012-09-26 12:51:28 -0700514
Scott Maine4d8f1b2012-06-21 18:03:05 -0700515 .training-nav-top a.next-page-link {
516 border-left:0;
Scott Mainf3d01042012-10-02 20:36:45 -0700517 width:123px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700518 }
Scott Main98a2a712013-07-17 13:15:04 -0700519
Scott Main5a1123e2012-09-26 12:51:28 -0700520 .paging-links a.disabled,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700521 .training-nav-top a.disabled,
522 .content-footer a.disabled {
Scott Main5a1123e2012-09-26 12:51:28 -0700523 color:#bbb;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700524 }
Scott Main98a2a712013-07-17 13:15:04 -0700525
Scott Main5a1123e2012-09-26 12:51:28 -0700526 .paging-links a.disabled:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700527 .training-nav-top a.disabled:hover,
528 .content-footer a.disabled:hover {
529 cursor:default;
Scott Main5a1123e2012-09-26 12:51:28 -0700530 color:#bbb !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700531 }
Scott Main98a2a712013-07-17 13:15:04 -0700532
Scott Maine4d8f1b2012-06-21 18:03:05 -0700533 .training-nav-top a.start-class-link,
534 .training-nav-top a.start-course-link {
Scott Maina4888dc2012-10-02 23:25:21 -0700535 width:262px;
Scott Maine4d8f1b2012-06-21 18:03:05 -0700536 }
Scott Main98a2a712013-07-17 13:15:04 -0700537
Scott Main9ee0fae2014-01-23 10:50:57 -0800538 .paging-links a.start-class-link {
539 width:100%;
540 text-align:right;
541 }
542
Scott Main5a1123e2012-09-26 12:51:28 -0700543 /* list of classes on course landing page */
544 ol.class-list {
545 list-style:none;
546 margin-left:0;
547 }
548 ol.class-list>li {
549 margin:0 0 15px;
550 padding:5px 0 0;
551 overflow:hidden;
552 border-top:1px solid #ccc;
553 }
554 ol.class-list li a.title {
555 font-size:16px;
556 margin:0;
557 clear:left;
558 display:block;
559 height:32px;
560 padding:0 4px;
561 }
562 ol.class-list li a.title h2 {
563 color:inherit;
564 margin:0 0 10px;
565 display:block;
566 float:left;
567 width:675px;
568 }
569 ol.class-list li a.title span {
570 display:none;
571 float:left;
572 font-size:18px;
573 font-weight:bold;
574 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
575 width: 10px;
576 height: 32px;
577 }
578 ol.class-list li a.title:hover {
579 background:#ddd;
580 color:#258AAF !important;
581 }
582 ol.class-list li a.title:hover span {
583 display:block;
584 }
Scott Main98a2a712013-07-17 13:15:04 -0700585
Scott Main5a1123e2012-09-26 12:51:28 -0700586 #jd-content
587 ol.class-list li img {
588 float:left;
589 clear:left;
590 width:64px;
591 margin:0 20px 0 0;
592 }
593 ol.class-list li p.description {
594 float:left;
595 display:block;
596 width:250px;
597 margin:0;
598 }
599 ol.class-list li p.description.article {
600 width: 550px;
601 }
602 ol.class-list ol {
603 float:left;
604 width:320px;
605 margin:0 0 0 30px;
606 list-style:none;
607 margin:0 0 0 20px;
608 }
609 ol.class-list div.lessons li {
610 margin:0 0 6px;
611 line-height:16px;
612 }
Scott Main98a2a712013-07-17 13:15:04 -0700613
614
Scott Maine4d8f1b2012-06-21 18:03:05 -0700615 .hide {
616 display:none !important;
617 }
Scott Main98a2a712013-07-17 13:15:04 -0700618
Scott Maine4d8f1b2012-06-21 18:03:05 -0700619 .content-footer.next-class {
620 display:block;
621 border:0;
622 margin-top:0;
623 padding-top:0;
624 }
Scott Main98a2a712013-07-17 13:15:04 -0700625
Scott Maine4d8f1b2012-06-21 18:03:05 -0700626 .content-footer.next-class a.next-class-link {
627 display:block;
628 float:right;
629 text-transform:uppercase;
630 }
Scott Main98a2a712013-07-17 13:15:04 -0700631
632
633
Scott Mainbbffb4b2012-11-13 07:40:16 -0800634 /* inner-doc tabs w/ title */
Scott Main98a2a712013-07-17 13:15:04 -0700635
Scott Mainbbffb4b2012-11-13 07:40:16 -0800636div#title-tabs-wrapper {
637 border-bottom:1px solid #ccc;
638 margin:20px 0 30px;
639}
640h1.with-title-tabs {
641 display:inline-block;
642 margin:0 0 -1px 0;
643 padding:0 60px 0 0;
644 border-bottom:1px solid #F9F9F9;
645}
646ul#title-tabs {
647 list-style:none;
648 padding:0;
649 height:29px;
650 margin:0;
651 font-size:16px;
652 line-height:26px;
653 display:inline-block;
654 vertical-align:bottom;
655}
656ul#title-tabs li {
657 display:block;
658 float:left;
659 margin-right:40px;
660 border-bottom: 3px solid transparent;
661}
662ul#title-tabs li.selected {
663 border-bottom: 3px solid #93C;
664}
665ul#title-tabs li a {
666 color:#333;
667}
668ul#title-tabs li a:hover,
Scott Mainbbffb4b2012-11-13 07:40:16 -0800669ul#title-tabs li a:active {
670 color:#93C !important;
671}
672
673
Scott Maine4d8f1b2012-06-21 18:03:05 -0700674
675/* content body */
676@-webkit-keyframes glowheader {
677 from {
678 background-color: #33b5e5;
679 color: #000;
680 border-bottom-color: #000; }
681
682 to {
683 background-color: transparent;
684 color: #33b5e5;
685 border-bottom-color: #33b5e5; } }
686
687@-moz-keyframes glowheader {
688 from {
689 background-color: #33b5e5;
690 color: #000;
691 border-bottom-color: #000; }
692
693 to {
694 background-color: transparent;
695 color: #33b5e5;
696 border-bottom-color: #33b5e5; } }
697
698@keyframes glowheader {
699 from {
700 background-color: #33b5e5;
701 color: #000;
702 border-bottom-color: #000; }
703
704 to {
705 background-color: transparent;
706 color: #33b5e5;
707 border-bottom-color: #33b5e5; } }
708
Dirk Doughertyca1230c2014-05-14 20:00:03 -0700709h1:target,
Scott Maine4d8f1b2012-06-21 18:03:05 -0700710h2:target,
711h3:target {
712 -webkit-animation-name: glowheader;
713 -moz-animation-name: glowheader;
714 animation-name: glowheader;
715 -webkit-animation-duration: 0.7s;
716 -moz-animation-duration: 0.7s;
717 animation-duration: 0.7s;
718 -webkit-animation-timing-function: ease-out;
719 -moz-animation-timing-function: ease-out;
720 animation-timing-function: ease-out; }
721
722.design ol h4 {
723 margin-bottom:0;
724}
725.design ol {
726 counter-reset: item; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700727 .design ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700728 font-size: 14px;
729 line-height: 20px;
730 list-style-type: none;
731 position: relative; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700732 .design ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700733 content: counter(item) ". ";
734 counter-increment: item;
735 position: absolute;
736 left: -20px;
737 top: 0; }
738 .design ol li.value-1:before {
739 content: "1. "; }
740 .design ol li.value-2:before {
741 content: "2. "; }
742 .design ol li.value-3:before {
743 content: "3. "; }
744 .design ol li.value-4:before {
745 content: "4. "; }
746 .design ol li.value-5:before {
747 content: "5. "; }
748 .design ol li.value-6:before {
749 content: "6. "; }
750 .design ol li.value-7:before {
751 content: "7. "; }
752 .design ol li.value-8:before {
753 content: "8. "; }
754 .design ol li.value-9:before {
755 content: "9. "; }
756 .design ol li.value-10:before {
757 content: "10. "; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700758.design .with-callouts ol>li {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700759 list-style-position: inside;
760 margin-left: 0; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700761 .design .with-callouts ol>li:before {
Scott Maine4d8f1b2012-06-21 18:03:05 -0700762 display: inline;
763 left: -20px;
764 float: left;
765 width: 17px;
766 color: #33b5e5;
767 font-weight: 500; }
Scott Mainb9ae92b2012-07-19 11:01:27 -0700768.design .with-callouts ul>li {
769 list-style-position: outside; }
Scott Maine4d8f1b2012-06-21 18:03:05 -0700770
771/* special list items */
772li.no-bullet {
773 list-style-type: none !important; }
774li.no-bullet *{
775 margin:0; }
776
777.design li.with-icon {
778 position: relative;
779 margin-left: 20px;
780 min-height: 30px; }
781 .design li.with-icon p {
782 margin-left: 0 !important; }
783 .design li.with-icon:before {
784 position: absolute;
785 left: -40px;
786 top: 0;
787 content: '';
788 width: 30px;
789 height: 30px; }
790 .design li.with-icon.tablet:before {
791 background-image: url(../images/styles/ico_phone_tablet.png); }
792 .design li.with-icon.web:before {
793 background-image: url(../images/styles/ico_web.png); }
794 .design li.with-icon.action:before {
795 background-image: url(../images/styles/ico_action.png); }
796 .design li.with-icon.use:before {
797 background-image: url(../images/styles/ico_use.png); }
798
799/* figures and callouts */
800.figure {
801 position: relative; }
802 .figure.pad-below {
803 margin-bottom: 20px; }
804 .figure .figure-callout {
805 position: absolute;
806 color: #fff;
807 font-weight: 500;
808 font-size: 16px;
809 line-height: 23px;
810 text-align: center;
811 background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
812 padding-right: 2px;
813 width: 30px;
814 height: 29px;
815 z-index: 1000; }
816 .figure .figure-callout.top {
817 top: -9px; }
818 .figure .figure-callout.right {
819 right: -5px; }
820
821.figure-caption {
822 margin: 0 10px 20px 0;
823 font-size: 14px;
824 line-height: 20px;
825 font-style: italic; }
826
827/* rows of figures */
828.figure-row {
829 font-size: 0;
830 line-height: 0;
831 /* to prevent space between figures */ }
832 .figure-row .figure {
833 display: inline-block;
834 vertical-align: top; }
835 .figure-row .figure + .figure {
836 margin-left: 10px;
837 /* reintroduce space between figures */ }
838
839/* video containers */
840.framed-galaxynexus-land-span-13 {
841 background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
842scroll top left;
843 padding: 42px 122px 62px 126px;
844 overflow: hidden; }
845 .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
846.framed-galaxynexus-land-span-13 img {
847 width: 512px;
848 height: 286px; }
849
Robert Lyd78354d2012-11-01 17:09:52 -0700850
851.framed-galaxynexus-land-span-8{
852 background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
853scroll top left;
854 padding: 26px 68px 38px 72px;
855 overflow: hidden; }
856 .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
857.framed-galaxynexus-land-span-8 img {
858 width: 320px;
859 height: 180px; }
860
Scott Maine4d8f1b2012-06-21 18:03:05 -0700861.framed-galaxynexus-port-span-9 {
862 background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
863scroll top left;
864 padding: 95px 122px 107px 124px;
865 overflow: hidden; }
866 .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
867.framed-galaxynexus-port-span-9 img {
868 width: 274px;
869 height: 488px; }
870
871.framed-galaxynexus-port-span-5 {
872 background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
873scroll top left;
874 padding: 75px 31px 76px 33px;
875 overflow: hidden; }
876 .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
877.framed-galaxynexus-port-span-5 img {
878 width: 216px;
879 height: 384px; }
880
Scott Main27403b82013-07-10 16:36:05 -0700881.framed-nexus4-port-216 {
882 background: transparent url(../images/styles/device_nexus4_blank_port_432.png) no-repeat
883scroll top left;
884 background-size:240px 465px;
885 padding: 52px 12px 52px 12px;
886 overflow: hidden; }
887 .framed-nexus4-port-216, .framed-nexus4-port-216 video,
888 .framed-nexus4-port-216 img {
889 width: 216px;
890 height: 360px; }
Scott Mainb16376f2014-05-21 20:35:47 -0700891
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700892.framed-nexus5-port-span-5 {
893 background: transparent url(../images/styles/device_nexus5_blank_port_span5.png) no-repeat
894 scroll top left;
895 padding: 52px 33px 69px 31px;
896 overflow: hidden;
897}
Scott Main27403b82013-07-10 16:36:05 -0700898
Dirk Doughertyd5d3f802013-10-26 12:14:47 -0700899.framed-nexus5-port-span-5,
900.framed-nexus5-port-span-5 video,
901.framed-nexus5-port-span-5 img {
902 width: 216px;
903 height: 384px;
904}
Scott Main27403b82013-07-10 16:36:05 -0700905
Dirk Doughertyca1858a2013-10-29 16:25:00 -0700906.framed-nexus5-land-span-13 {
907 background: transparent url(../images/styles/device_nexus5_blank_land_span13.png) no-repeat scroll top left;
908 padding: 36px 119px 54px 108px;
909 overflow: hidden;
910}
911
912.framed-nexus5-land-span-13,
913.framed-nexus5-land-span-13 video,
914.framed-nexus5-land-span-13 img {
915 width: 533px;
916 height: 300px;
917}
918
919.framed-nexus5-port-span-5,
920.framed-nexus5-port-span-5 video,
921.framed-nexus5-port-span-5 img {
922 width: 216px;
923 height: 384px;
924}
925
Scott Maine4d8f1b2012-06-21 18:03:05 -0700926/* landing page disclosures */
927.landing-page-link {
928 text-decoration: none;
929 font-weight: 500;
930 color: #333333; }
931 .landing-page-link:after {
932 content: '';
933 background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
934 width: 10px;
935 height: 10px;
936 display: inline-block;
937 margin-left: 5px; }
938
939/* tooltips */
940.tooltip-box {
941 position: absolute;
942 background-color: rgba(0, 0, 0, 0.9);
943 border-radius: 2px;
944 font-size: 14px;
945 line-height: 20px;
946 color: #fff;
947 padding: 6px 10px;
948 max-width: 250px;
949 z-index: 10000; }
950 .tooltip-box.below:after {
951 position: absolute;
952 content: '';
953 line-height: 0;
954 display: block;
955 top: -10px;
956 left: 5px;
957 border: 5px solid transparent;
958 border-bottom-color: rgba(0, 0, 0, 0.9); }
959
960/* video note */
961.video-instructions {
962 margin-top: 10px;
963 margin-bottom: 10px; }
964 .video-instructions:before {
965 content: '';
966 background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
967 display: inline-block;
968 width: 12px;
969 height: 12px;
970 margin-right: 8px; }
971 .video-instructions:after {
972 content: 'Click device screen to replay movie.'; }
973
974/* download buttons */
975.download-button {
976 display: block;
977 margin-bottom: 5px;
978 text-decoration: none;
979 background-color: #33b5e5;
980 color: #fff !important;
981 font-weight: 500;
982 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
983 padding: 6px 12px;
984 border-radius: 2px; }
985 .download-button:hover, .download-button:focus {
986 background-color: #0099cc;
987 color: #fff !important; }
988 .download-button:active {
989 background-color: #006699; }
990
991/* UI tables and other things found in Writing style and Settings pattern */
992.ui-table {
993 width: 100%;
994 background-color: #282828;
995 color: #fff;
996 border-radius: 2px;
997 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
998 border-collapse: separate; }
999 .ui-table th,
1000 .ui-table td {
1001 padding: 5px 10px;
Scott Main98a2a712013-07-17 13:15:04 -07001002 background-color: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001003 border:0;}
1004 .ui-table thead th {
1005 font-weight: bold; }
1006 .ui-table tfoot td {
1007 border-top: 1px solid #494949;
1008 border-right: 1px solid #494949;
1009 text-align: center; }
1010 .ui-table tfoot td:last-child {
1011 border-right: 0; }
1012
1013.layout-with-list-item-margins {
1014 margin-left: 30px !important; }
1015
1016.emulate-content-left-padding {
1017 margin-left: 10px; }
1018
1019.do-dont-label {
1020 margin-bottom: 10px;
1021 padding-left: 20px;
1022 background: transparent none no-repeat scroll 0px 3px; }
1023 .do-dont-label.bad {
1024 background-image: url(../images/styles/ico_wrong.png); }
1025 .do-dont-label.good {
1026 background-image: url(../images/styles/ico_good.png); }
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07001027
Scott Maine4d8f1b2012-06-21 18:03:05 -07001028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046/***** PREVIOUSLY style.css ******************/
1047
1048
1049
1050
1051
1052@media screen, projection, print {
1053[dir='rtl'] {
1054 direction: rtl;
1055}
1056html {
1057 line-height: 20px;
1058}
1059pre, table, input, textarea, code {
1060 font-size: 1em;
1061}
1062address, abbr, cite {
1063 font-style: normal;
1064}
1065[dir='rtl'] th {
1066 text-align: right;
1067}
1068html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
1069html[lang^=zh] blockquote, html[lang^=zh] q {
1070 font-style: normal;
1071}
1072q {
1073 font-style: italic;
1074}
1075fieldset, iframe, img {
1076 border: 0;
1077}
Scott Main98a2a712013-07-17 13:15:04 -07001078img {
Scott Mainb7f96372013-02-07 16:56:43 -08001079 -ms-interpolation-mode: bicubic;
1080 vertical-align: middle;
1081 max-width: 100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001082}
1083q {
1084 quotes: none;
1085}
1086sup, sub {
1087 font-size: 11px;
1088 line-height: 0;
1089}
1090}
1091
1092@media screen, projection {
1093
1094table, fieldset {
1095 margin: 0;
1096}
1097h1 {
1098 color:#333;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001099 font-size: 34px;
smain@google.com20ef3822014-06-13 16:05:28 -07001100 margin: 36px 0 27px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001101 padding:0 0 10px;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001102 font-weight:300;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001103}
1104h1, h2 {
smain@google.com20ef3822014-06-13 16:05:28 -07001105 line-height: 30px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001106}
1107h1.short {
1108 margin-right:320px;
1109}
1110h1.short {
1111 margin-right:320px;
1112}
1113h1.super {
Scott Main98a2a712013-07-17 13:15:04 -07001114 font-size: 37px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001115}
1116h2 {
1117 color:#333;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001118 font-size: 26px;
1119 margin: 32px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001120 padding:0;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001121 font-weight:300;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001122}
1123h3 {
1124 color:#333;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001125 font-size: 21px;
1126 font-weight:400;
1127 margin:21px 0 14px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001128}
1129h3, h4 {
Dirk Doughertya6913b52014-06-11 17:28:38 -07001130 line-height: 21px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001131}
1132h4 {
Dirk Doughertya6913b52014-06-11 17:28:38 -07001133 font-size: 18px;
1134 margin: 12px 0;
1135 font-weight:500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001136}
1137h5 {
Scott Main98a2a712013-07-17 13:15:04 -07001138 font-size: 14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001139}
1140h5, h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001141 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001142}
1143h6 {
Scott Main98a2a712013-07-17 13:15:04 -07001144 font-size: 12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001145}
1146hr { /* applied to the bottom of h2 elements */
Scott Mainb7f96372013-02-07 16:56:43 -08001147 height: 1px;
Dirk Doughertya6913b52014-06-11 17:28:38 -07001148 margin: 3px 0 12px;
Scott Mainb7f96372013-02-07 16:56:43 -08001149 border: 0;
1150 background: #ccc;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001151}
1152p, pre, table, form {
1153 margin: 0 0 15px;
1154}
1155small {
Scott Mainb7f96372013-02-07 16:56:43 -08001156 font-size: 11.5px;
1157 color: #000;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001158}
1159ul, ol {
1160 margin: 0 0 15px 18px;
1161 padding: 0;
1162}
1163[dir='rtl'] ul, [dir='rtl'] ol {
1164 margin: 10px 30px 10px 10px;
1165}
1166ul ul, ul ol, ol ul, ol ol {
1167 margin-bottom: 0;
1168 margin-top: 0;
1169}
1170li {
Scott Main52948fc2012-09-18 11:27:59 -07001171 margin:0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001172}
1173dd {
1174 margin:0 0 10px 30px;
1175}
Scott Maina07be8e2013-03-06 12:12:21 -08001176dd p,
1177dd pre,
1178dd ul,
1179dd ol,
1180dd dl {
Scott Main24790db2013-03-19 14:38:59 -07001181 margin-top:10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001182}
Scott Maindb3678b2012-10-23 14:13:41 -07001183li p,
1184li pre,
1185li ul,
Scott Maina07be8e2013-03-06 12:12:21 -08001186li ol,
1187li dl {
Scott Maindb3678b2012-10-23 14:13:41 -07001188 margin-top:5px;
1189 margin-bottom:5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001190}
Scott Main13cd8f12013-11-12 11:50:59 -08001191dl dd dl:first-child {
1192 margin-top:0;
1193}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001194pre strong, pre b, a strong, a b, a code {
1195 color: inherit;
1196}
1197pre, code {
1198 color: #060;
Scott Maina07be8e2013-03-06 12:12:21 -08001199 font: 13px/1.5 monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001200}
1201code {
1202 font-weight:bold;
Scott Maina07be8e2013-03-06 12:12:21 -08001203 font: 13px/14px monospace;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001204}
1205
1206legend {
1207 display: none;
1208}
1209a:link, a:visited {
1210 color: #258aaf;
1211 text-decoration: none;
1212}
1213a:focus, a:hover, a:active {
1214 color: #33B5E5;
1215 text-decoration: none;
1216}
1217strong, b {
1218 font-weight:bold;
Scott Main9ada2262012-06-23 14:59:36 -07001219 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001220}
1221table {
1222 border-collapse: collapse;
1223 border-spacing: 0;
1224 border:0;
1225 margin: .5em 1em 1em 0;
1226 width:100%; /* consistent table widths; within IE's quirks */
1227 background-color:#f7f7f7;
1228}
1229th, td {
1230 padding: 4px 12px;
1231 vertical-align: top;
1232 text-align: left;
1233}
1234td {
1235 background-color:inherit;
1236 border:solid 1px #DDD;
1237}
Scott Maineb410352013-01-14 19:03:40 -08001238td *:last-child {
1239 margin-bottom:0;
1240}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001241th {
1242 background-color: #999;
1243 color: #fff;
1244 border:solid 1px #DDD;
1245 font-weight: normal;
1246}
1247tr:first-of-type th:first-of-type:empty {
1248 visibility: hidden;
1249}
Dirk Doughertya6913b52014-06-11 17:28:38 -07001250
Scott Maine4d8f1b2012-06-21 18:03:05 -07001251/* --------------------------------------------------------------------------
1252Footer
1253*/
1254.line {
1255 clear: both;
1256 background: #acbc00;
1257 background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1258 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
1259color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
1260 background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1261 background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1262 background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1263 background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
1264 height: 2px;
1265 margin-top: 150px;
1266 position: relative;
1267 z-index: 11;
1268}
1269#footer {
1270 font-size:11px;
1271 clear: both;
1272 color: #999;
1273 padding: 15px 0;
1274 margin-top:10px;
1275 width:auto;
1276}
1277#footer-local ul {
Scott Mainb7f96372013-02-07 16:56:43 -08001278 list-style: none;
1279 margin: 5px 0 30px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001280}
1281#footer-local li {
1282 display: inline;
1283}
1284#footer-local li+li:before {
1285 content: '|';
1286 padding: 0 3px;
Scott Mainb7f96372013-02-07 16:56:43 -08001287 color: #e5e5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001288}
1289#footer-global {
1290 padding: 10px 15px;
Scott Mainb7f96372013-02-07 16:56:43 -08001291 background: #f5f5f5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001292}
1293#footer-global {
1294 border-top: 1px solid #ebebeb;
1295 font-size: 11.5px;
1296 line-height: 1.8;
1297 list-style: none;
1298}
1299#footer-global ul {
1300 margin: 0;
1301}
1302#footer-global li {
1303 display: inline;
1304 font-weight: bold;
1305}
1306#footer-global li+li:before {
1307 content: '¬?';
1308 padding: 0 3px;
1309}
1310* html #footer-global li {
1311 margin: 0 13px 0 0;
1312}
1313* [dir='rtl'] #footer-global li {
1314 margin: 0 0 0 13px;
1315}
1316*+html #footer-global li {
1317 margin: 0 13px 0 0;
1318}
1319*+[dir='rtl'] #footer-global li {
1320 margin: 0 0 0 13px;
1321}
1322#footer-global li a {
1323 font-weight: normal;
1324}
1325.locales {
1326 margin: 10px 0 0 0px;
1327}
1328[dir='rtl'] .locales {
1329 background-position: right center;
1330 float: left;
1331 padding: 0 24px 0 0;
1332}
1333.locales form {
Scott Main98a2a712013-07-17 13:15:04 -07001334 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001335}
1336.locales select, .sites select {
1337 line-height: 3.08;
1338 margin: 0px 0;
1339 border: solid 1px #EBEBEB;
1340 -webkit-appearance: none;
1341 background: white url('../images/arrows-up-down.png') right center no-repeat;
1342 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07001343 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001344 line-height: normal;
1345 padding: 5px;
1346 width: 230px;
1347}
1348}
1349
1350/* =============================================================================
1351 Print Only
1352 ========================================================================== */
1353@media print {
Roman Nurik393830e2012-08-01 10:37:40 -07001354 /* configure printed page */
1355 @page {
1356 margin: 0.75in 1in;
1357 widows: 4;
1358 orphans: 4;
1359 }
1360
1361 /* reset spacing metrics */
1362 html, body, .wrap {
1363 margin: 0 !important;
1364 padding: 0 !important;
1365 width: auto !important;
1366 }
1367
1368 /* leave enough space on the left for bullets */
1369 body {
1370 padding-left: 20px !important;
1371 }
1372 #doc-col {
1373 margin-left: 0;
1374 }
1375
1376 /* hide a bunch of non-content elements */
1377 #header, #footer, #nav-x, #side-nav,
1378 .training-nav-top, .training-nav-bottom,
1379 #doc-col .content-footer,
1380 .nav-x, .nav-y,
Dirk Doughertyc3921652014-05-13 16:55:26 -07001381 .paging-links {
Roman Nurik393830e2012-08-01 10:37:40 -07001382 display: none !important;
1383 }
1384
1385 /* remove extra space above page titles */
1386 #doc-col .content-header {
1387 margin-top: 0;
1388 }
1389
1390 /* bump up spacing above subheadings */
1391 h2 {
1392 margin-top: 40px !important;
1393 }
1394
1395 /* print link URLs where possible and give links default text color */
1396 p a:after {
1397 content: " (" attr(href) ")";
1398 font-size: 80%;
1399 }
1400 p a {
1401 word-wrap: break-word;
1402 }
1403 a {
1404 color: inherit;
1405 }
1406
1407 /* syntax highlighting rules */
1408 .str { color: #060; }
1409 .kwd { color: #006; font-weight: bold; }
1410 .com { color: #600; font-style: italic; }
1411 .typ { color: #404; font-weight: bold; }
1412 .lit { color: #044; }
1413 .pun { color: #440; }
1414 .pln { color: #000; }
1415 .tag { color: #006; font-weight: bold; }
1416 .atn { color: #404; }
1417 .atv { color: #060; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001418}
1419
1420/* =============================================================================
1421 Columns
1422 ========================================================================== */
1423
1424@media screen, projection, print {
1425.full {
Scott Mainb7f96372013-02-07 16:56:43 -08001426 padding: 2.5em 0;
1427 border-top: solid 1px #ddd;
1428 border-bottom: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07001429 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001430}
1431.wrap {
Scott Mainb7f96372013-02-07 16:56:43 -08001432 margin: 0 auto;
1433 width: 940px;
1434 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001435}
1436.cols {
1437 height: 1%;
1438 margin: 0 -1.533742331288343558282%;
1439 width: 103.06748466257669%}
1440*+html .cols {
1441 margin-bottom: 20px;
1442}
1443.cols:after {
1444 clear: both;
1445 content: ' ';
1446 display: block;
1447 height: 0;
1448 visibility: hidden;
1449}
1450.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
1451.col-13, .col-14, .col-15, .col-16 {
1452 display: inline;
Scott Mainb7f96372013-02-07 16:56:43 -08001453 float: left;
1454 margin-left: 10px;
1455 margin-right: 10px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001456}
1457/*
1458* html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
1459.col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12 {
1460 margin: 0;
1461 padding: 0 1.4% 20px;
1462}
1463[dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
1464[dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
1465[dir='rtl'] .col-11, [dir='rtl'] .col-12 {
1466 float: right;
1467}
1468*/
1469.col-1 { width: 40px }
1470.col-2 { width: 100px }
1471.col-3 { width: 160px }
1472.col-4 { width: 220px }
1473.col-5 { width: 280px }
1474.col-6 { width: 340px }
1475.col-7 { width: 400px }
1476.col-8 { width: 460px }
1477.col-9 { width: 520px }
1478.col-10 { width: 580px }
1479.col-11 { width: 640px }
1480.col-12 { width: 700px }
1481.col-13 { width: 760px }
1482.col-14 { width: 820px }
1483.col-15 { width: 880px }
1484.col-16 { width: 940px }
1485}
1486
1487.col-right {
1488 margin-right:0px;
1489}
1490
1491@media screen and (max-width:772px) {
1492.col-5, .col-6, .col-7 {
1493 clear: both;
1494 width: 97.0238096%}
1495}
1496
1497/* =============================================================================
1498 Layout
1499 ========================================================================== */
1500@media screen, projection, print {
1501
1502/* --------------------------------------------------------------------------
1503Header, Login, Nav-X, Search
1504*/
1505#header {
Dirk Doughertyc3921652014-05-13 16:55:26 -07001506 margin: 0;
1507 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001508}
1509#header:before, #header:after {
Scott Mainb7f96372013-02-07 16:56:43 -08001510 content: "";
1511 display: table;
1512 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001513}
1514.logo, .nav-x {
1515 float: left;
1516}
1517.nav-x {
1518 margin-top: -2px;
Scott Mainb7f96372013-02-07 16:56:43 -08001519 list-style-type: none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001520}
1521.nav-x a {
1522 color: #333;
1523 font-size: 16px;
1524}
smain@google.com6040ffa2014-06-13 15:06:23 -07001525.about a.selected {
1526 color: #9933CC;
1527}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001528.design a.selected {
1529 color: #33b5e5;
1530}
1531.develop a.selected {
1532 color: #F80;
1533}
1534.distribute a.selected {
1535 color: #9C0;
1536}
1537
1538
1539
1540.nav-x li {
1541 display: inline;
1542 margin-right: 45px;
1543}
1544.search {
Scott Mainb7f96372013-02-07 16:56:43 -08001545 float: right;
1546 position: relative;
1547 width: 220px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001548}
1549.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001550 position: absolute;
1551 background-color: #a3a3a3;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001552}
1553.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08001554 width: 220px;
1555 height: 1px;
1556 top: 24px;
1557 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001558}
Scott Main98a2a712013-07-17 13:15:04 -07001559.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001560 height: 5px;
1561 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07001562}
Scott Mainb7f96372013-02-07 16:56:43 -08001563.search .left { top: 19px; left: 0 }
Scott Maine4d8f1b2012-06-21 18:03:05 -07001564.search .right { top: 19px; right: 0 }
1565.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08001566 float: left;
1567 margin-top: 2px;
1568 width: inherit;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001569}
1570.search .close,
1571#player-frame .close {
1572 position: absolute;
1573 right: 8px;
1574 bottom: 4px;
1575 width: 16px;
1576 height: 16px;
1577 margin: 0;
1578 text-indent: -1000em;
1579 background: url(../images/close.png) no-repeat 0 0;
1580 z-index:9999;
1581}
1582.search .close:hover, .search .close:focus,
1583#player-frame .close:hover, #player-frame .close:focus {
1584 background-position: -16px 0;
1585 cursor:pointer;
1586}
1587#player-frame .close {
1588 top: 6px;
1589}
1590.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08001591 color: #999;
1592 font-size: 1em;
1593 width: inherit;
1594 border: none;
1595 margin: 0;
1596 padding:0 0 0 6px;
1597 z-index: 1500;
1598 background-color: transparent
Scott Maine4d8f1b2012-06-21 18:03:05 -07001599}
1600.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08001601 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001602}
1603.search:hover .icon {
Scott Mainb7f96372013-02-07 16:56:43 -08001604 background-position: -8px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001605}
1606.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08001607 color: #222;
1608 font-weight: bold;
1609 outline:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001610}
1611/* Search Dropdown */
1612.search-dropdown {
Scott Mainb7f96372013-02-07 16:56:43 -08001613 padding: 15px;
1614 width: 192px;
1615 border: solid 1px #c5c5c5;
1616 background: #fff;
1617 position: absolute;
1618 top: 35px;
1619 left: 0;
1620 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1621 -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
1622 box-shadow: 0 0 10px rgba(0,0,0,0.2)
Scott Maine4d8f1b2012-06-21 18:03:05 -07001623}
1624.search-dropdown ul, .search-dropdown ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08001625 list-style-type: none;
1626 margin: 0;
1627 padding: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001628}
1629.search-dropdown ul li {
Scott Main98a2a712013-07-17 13:15:04 -07001630 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07001631}
1632.search-dropdown img {
Scott Mainb7f96372013-02-07 16:56:43 -08001633 float: left;
1634 margin: 0 10px 10px 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07001635}
1636.search-dropdown h6 {
Scott Mainb7f96372013-02-07 16:56:43 -08001637 color: #222;
1638 margin: 0;
1639 line-height: normal
Scott Maine4d8f1b2012-06-21 18:03:05 -07001640}
1641.search-dropdown .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001642 color: #999;
1643 font-size: 11.5px;
1644 line-height: normal;
1645 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001646}
1647.search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
Scott Mainb7f96372013-02-07 16:56:43 -08001648 color: #33b5e5
Scott Maine4d8f1b2012-06-21 18:03:05 -07001649}
1650/* --------------------------------------------------------------------------
1651Buttons
1652*/
1653.button, a.button, .button-secondary, a.button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08001654 border-image: initial;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001655 -webkit-border-radius: 2px;
1656 -moz-border-radius: 2px;
1657 border-radius: 2px;
1658 cursor: pointer;
1659}
1660.button, a.button {
Scott Mainab4daf42012-11-30 11:27:17 -08001661 display:inline-block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001662 background-color: #09c;
1663 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1664 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1665 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1666 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1667 background-image: -o-linear-gradient(top, #2faddb, #09c);
1668 background-image: linear-gradient(top, #2faddb, #09c);
1669 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
1670 border: 1px solid #3990ab;
1671 color: #fff;
1672}
1673.button-secondary, a.button-secondary {
1674 background-color: #f3f3f3;
1675 border: 1px solid #dcdcdc;
1676 color: #444;
1677}
1678a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001679 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001680 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001681 min-width: 54px;
1682 outline: 0;
1683 padding: 8px 15px;
1684 text-align: center;
1685}
1686.button, .button-secondary {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001687 margin-right: 16px;
Scott Mainb7f96372013-02-07 16:56:43 -08001688 font-weight: 400;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001689 min-width: 54px;
1690 outline: 0;
1691 padding: 0 15px;
1692 text-align: center;
1693}
1694.button:hover, a.button:hover {
1695 border-color: #09c;
1696 background-color: #4cadcb;
1697 background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
1698 background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
1699 background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
1700 background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
1701 background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
1702 background-image: linear-gradient(top, #5dbcd9, #4cadcb);
1703 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
1704EndColorStr='#4cadcb',GradientType=0);
1705 color: #fff !important;
1706}
1707.button:active, a.button:active {
1708 background-color: #1e799a;
1709 background-image: none;
1710 border-color: #30b7e6;
1711}
Scott Maindb3678b2012-10-23 14:13:41 -07001712a.button.big.subtitle {
1713 line-height:18px;
1714}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001715.button-secondary:hover, a.button-secondary:hover {
1716 border-color: #dbdbdb;
1717 background-color: #f3f3f3;
1718 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1719 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1720 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1721 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1722 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1723 background-image: linear-gradient(top, #f9f9f9, #ececec);
1724 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1725EndColorStr='#ececec');
1726 color: #33B5E5 !important;
1727}
1728.button-secondary:active, a.button-secondary:active {
Scott Maindb3678b2012-10-23 14:13:41 -07001729 border-color: #dadada;
Scott Mainb7f96372013-02-07 16:56:43 -08001730 background: #ebebeb; /* Old browsers */
1731 /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1732 background:
Scott Maine4d8f1b2012-06-21 18:03:05 -07001733url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
1734Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
1735eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
1736CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
1737eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
1738YiIgc3RvcC1vcGFjaXR5PSIxIi8+
1739CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1740CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
1741CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
1742CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
1743R3JhZGllbnQ+
1744CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
1745Lz4KPC9zdmc+);
Scott Mainb7f96372013-02-07 16:56:43 -08001746 background: -moz-linear-gradient(top, #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
Scott Maine4d8f1b2012-06-21 18:03:05 -07001747#ffffff 100%); /* FF3.6+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001748 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
Scott Maine4d8f1b2012-06-21 18:03:05 -07001749color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
1750/* Chrome,Safari4+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001751 background: -webkit-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
Scott Maine4d8f1b2012-06-21 18:03:05 -0700175290%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001753 background: -o-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001754100%); /* Opera 11.10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001755 background: -ms-linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001756100%); /* IE10+ */
Scott Mainb7f96372013-02-07 16:56:43 -08001757 background: linear-gradient(top, #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
Scott Maine4d8f1b2012-06-21 18:03:05 -07001758100%); /* W3C */
Scott Mainb7f96372013-02-07 16:56:43 -08001759 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
Scott Maine4d8f1b2012-06-21 18:03:05 -07001760endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
Scott Mainb7f96372013-02-07 16:56:43 -08001761 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
1762 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Main98a2a712013-07-17 13:15:04 -07001763 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Mainb7f96372013-02-07 16:56:43 -08001764 color: #258AAF !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001765}
1766.button.big {
1767 font-size:20px;
1768 display:inline-block;
1769}
Scott Maindb3678b2012-10-23 14:13:41 -07001770.button.big span.small {
1771 font-size:14px;
1772}
1773.button-caption {
1774 margin-top:10px;
1775 font-size:12px;
1776 font-style:italic;
1777}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001778
1779.button.disabled,
1780.button.disabled:hover,
1781.button.disabled:active {
1782 background:#ebebeb;
Scott Maindb3678b2012-10-23 14:13:41 -07001783 color:#999 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001784 border-color:#999;
1785 cursor:default;
1786}
1787
1788.training-nav-top a.button-secondary,
1789.training-nav-bottom a.button-secondary {
1790 display:block;
1791 float:left;
1792 margin:0;
1793 width:130px;
1794 text-transform:uppercase;
1795 font-weight:bold;
Scott Main98a2a712013-07-17 13:15:04 -07001796
Scott Maine4d8f1b2012-06-21 18:03:05 -07001797 background-color: #f3f3f3;
1798 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
1799 background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
1800 background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
1801 background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
1802 background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
1803 background-image: linear-gradient(top, #f9f9f9, #ececec);
1804 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
1805EndColorStr='#ececec');
1806 color: #33B5E5;
1807}
1808
1809.training-nav-top a.button-secondary:hover,
1810.training-nav-bottom a.button-secondary:hover {
1811 background-color: #09c;
1812 background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
1813 background-image: -webkit-linear-gradient(top, #2faddb, #09c);
1814 background-image: -moz-linear-gradient(top, #2faddb, #09c);
1815 background-image: -ms-linear-gradient(top, #2faddb, #09c);
1816 background-image: -o-linear-gradient(top, #2faddb, #09c);
1817 background-image: linear-gradient(top, #2faddb, #09c);
1818 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
1819 border: 1px solid #3990ab;
1820 color: #fff !important;
1821}
1822
1823.training-nav-top a.button-secondary.last,
1824.training-nav-bottom a.button-secondary.last {
1825 border-left:0;
1826}
1827
1828.training-nav-top a.button-secondary.double-size,
1829.training-nav-bottom a.button-secondary.double-size {
1830 width:291px;
1831}
1832
1833.training-nav-top,
1834.training-nav-bottom {
1835 float:right;
1836 margin:0 0 0 20px;
1837}
1838
smain@google.com20ef3822014-06-13 16:05:28 -07001839.training-nav-top {
1840 position:relative;
1841 top:73px;
1842}
1843
Scott Maine4d8f1b2012-06-21 18:03:05 -07001844.training-nav-bottom {
1845 padding:0 0 20px;
1846}
1847
1848#tb-wrapper,
1849#qv-wrapper {
1850 float:right;
1851 clear:right;
smain@google.com20ef3822014-06-13 16:05:28 -07001852 margin:6px 0 0 30px; /* negative top-margin to counter the content-header bottom margin */
Dirk Doughertyc3921652014-05-13 16:55:26 -07001853 padding:0 0 30px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001854}
1855
Scott Maincef39242013-06-19 20:25:34 -07001856#tb-wrapper {
smain@google.com20ef3822014-06-13 16:05:28 -07001857 margin:51px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
Scott Maincef39242013-06-19 20:25:34 -07001858}
1859
Scott Maine4d8f1b2012-06-21 18:03:05 -07001860#tb,
1861#qv {
1862 font-size:13px;
1863 line-height:18px;
1864 width:238px;
1865 border:1px solid #ccc;
1866 float:right;
1867}
1868
1869#tb {
1870 width:278px;
1871}
1872
1873#tb h2,
1874#qv h2 {
1875 margin:10px 15px;
1876 padding:0;
1877 text-transform:uppercase;
1878 border-bottom:1px solid gainsboro;
1879}
1880
1881#tb *,
1882#qv * {
1883 font-size:inherit;
1884}
1885
Scott Main8c0f5b32013-07-08 15:12:02 -07001886#tb .download-box,
1887#qv .download-box {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001888 padding:0 0 0 15px;
1889}
1890
Scott Main8c0f5b32013-07-08 15:12:02 -07001891#tb .download-box .filename,
1892#qv .download-box .filename {
Scott Maine4d8f1b2012-06-21 18:03:05 -07001893 font-size:11px;
1894 margin:4px 4px 10px;
1895 color:#666;
1896}
1897
1898
1899/* Dev guide quicknav */
1900
1901.sidebox-wrapper {
1902 float:right;
1903 clear:right;
1904 margin:0 0 0 20px;
1905 padding:0 0 20px;
1906}
1907
1908.sidebox {
1909 width:226px;
1910 font-size:13px;
1911 line-height:18px;
1912 border-left:4px solid #99CC00;
1913 float:right;
1914 padding:0 0 0 10px;
Scott Main24bbcd52012-09-21 14:33:43 -07001915 margin:0 0 1em 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001916}
1917
1918.sidebox h2,
1919.sidebox h3,
1920.sidebox h4,
1921.sidebox h5 {
1922 font-weight:bold;
1923 margin:0 0 10px;
Scott Main2c2c0532014-02-11 18:16:20 -08001924 line-height: 16px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07001925}
1926
1927.sidebox * {
1928 font-size:inherit;
1929}
1930
Scott Mainafc4db32013-11-20 16:53:12 -08001931.sidebox > *:last-child {
1932 margin-bottom:0;
1933}
1934
Scott Maine4d8f1b2012-06-21 18:03:05 -07001935#tb ol,
1936#tb ul,
1937#qv ul {
1938 margin:0 15px 10px 35px;
1939}
1940
1941#qv ol {
1942 list-style:none;
1943 margin:0 15px 15px;
1944 font-size:inherit;
1945 line-height:inherit;
1946}
1947
1948#tb ol ol,
1949#tb ul ul,
1950#qv ol ol,
1951#qv ul ul,
1952.sidebox ol ol,
1953.sidebox ul ul {
1954 margin-bottom:0;
1955}
1956
1957#qv ol ol {
1958 margin:3px 0 3px 15px;
1959}
1960
1961.sidebox p,
1962#qv p,
1963#tb p {
1964 margin: 0 0 10px;
1965}
1966
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001967/* related resources blocks in checklists */
1968
Dirk Dougherty2e3fb812014-06-01 21:28:20 -07001969/* related resources sections that have dynamic content */
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001970
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001971
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001972
Dirk Dougherty2e3fb812014-06-01 21:28:20 -07001973h3.rel-resources {
1974margin:1.25em auto;
Dirk Dougherty547d9e92013-04-15 18:13:47 -07001975}
Scott Maine4d8f1b2012-06-21 18:03:05 -07001976
1977/* --------------------------------------------------------------------------
1978Form
1979*/
1980.article form {
1981 margin: 0 0 20px;
1982}
1983.article form .form-required {
1984 color: #dd4b39;
1985}
1986.article form fieldset {
1987 margin: 0 0 20px;
1988 padding: 0;
1989}
1990.article form legend {
1991 display: block;
1992 line-height: 1.5;
1993 margin: 0;
1994 padding: 0;
1995}
1996/*
1997.article form ol, .article form ul {
1998 margin: 0 0 0 1em;
1999 padding: 0 0 0 1em;
2000}
2001[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
2002 margin: 0 1em 0 0;
2003 padding: 0 1em 0 0;
2004}
2005.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
2006ul ul {
2007 list-style: none;
2008 margin: 0;
2009 padding: 0;
2010}
2011.article form li {
2012 margin: 0 0 20px;
2013}
2014.article form li li {
2015 margin: 0 0 5px;
2016}
2017*/
2018.article form label {
2019 display: block;
2020 margin: 0 0 5px;
2021 padding: 0;
2022}
2023.article form input[type='text'], .article form select, .article form textarea, .article form
2024.checkbox-group, .article form .radio-group {
2025 margin-bottom: 15px;
2026}
2027.checkbox-group input {
Scott Mainb7f96372013-02-07 16:56:43 -08002028 width: 13px;
2029 height: 13px;
2030 background: #fff;
2031 border: solid 1px #c6c6c6;
2032 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002033}
2034.article form .checkbox-group, .article form .radio-group {
Scott Mainb7f96372013-02-07 16:56:43 -08002035 display: block
Scott Maine4d8f1b2012-06-21 18:03:05 -07002036}
2037.article form select {
2038 border: solid 1px #ebebeb;
2039 border-top-color: #ddd;
2040 -webkit-appearance: none;
2041 background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2042 height: 30px;
Scott Main9ada2262012-06-23 14:59:36 -07002043 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002044 line-height: normal;
2045 padding: 5px;
2046 width: 130px;
2047}
Scott Main98a2a712013-07-17 13:15:04 -07002048
Scott Maine4d8f1b2012-06-21 18:03:05 -07002049.article form .browse .browse-msg {
Scott Main98a2a712013-07-17 13:15:04 -07002050 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002051}
2052.article form .browse .button-secondary {
Scott Mainb7f96372013-02-07 16:56:43 -08002053 height: auto;
2054 line-height: 25px;
2055 font-size: 11px;
2056 padding: 0 8px;
2057 margin: 0 10px 15px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002058}
2059.article form input[type='text'], .article form textarea {
2060 border: 1px solid #ebebeb;
2061 border-top-color: #dcdcdc;
Scott Main9ada2262012-06-23 14:59:36 -07002062 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002063 line-height: normal;
2064 padding: 6px 10px;
Scott Main98a2a712013-07-17 13:15:04 -07002065 width: 300px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002066}
2067.article form textarea {
2068 height: 150px;
2069}
2070.article form input[type='text']:focus, .article form textarea:focus {
2071 border-color: #33B5E5;
2072 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2073 -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2074 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2075 box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2076 outline: 0;
2077}
2078.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2079 color: #999;
2080}
2081.article form input[type='text'][disabled], .article form textarea[disabled] {
2082 background-color: #ebebeb;
2083}
2084form .form-error input[type='text'], form .form-error textarea {
2085 border-color: #dd4b39;
Scott Mainb7f96372013-02-07 16:56:43 -08002086 margin-right: 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002087}
2088.aside {
2089 -moz-border-radius: 2px;
2090 -webkit-border-radius: 2px;
2091 border-radius: 2px;
2092 margin: 10px 0;
2093 padding: 20px;
Scott Mainb7f96372013-02-07 16:56:43 -08002094 color: #666;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002095 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08002096 background: #f9f9f9;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002097}
2098/*
2099.aside, .notification, .promo {
2100 -moz-border-radius: 2px;
2101 -webkit-border-radius: 2px;
2102 border-radius: 2px;
2103 margin: 10px 0;
2104 padding: 10px;
2105 position: relative;
2106}
2107.aside>:first-child, .notification>:first-child, .promo>:first-child {
2108 margin-top: 0;
2109}
2110.aside>:last-child, .notification>:last-child, .promo>:last-child {
2111 margin-bottom: 0;
2112}
2113.aside {
2114 background: #f9f9f9;
2115}
2116.notification {
2117 background: #fffbe4;
2118 border-color: #f8f6e6;
2119}
2120.promo {
2121 background: #f6f9ff;
2122 border-color: #eff2f9;
2123}
2124*/
Scott Maindb3678b2012-10-23 14:13:41 -07002125
2126/* SDK TOS styles */
2127
2128div.sdk-terms {
2129 white-space: pre-wrap;
2130 word-wrap: break-word;
2131 font-family: inherit;
2132 font-size: inherit;
2133 padding: 10px;
2134 height: 370px;
2135 width: 738px;
2136 border: 1px solid #444;
2137 background: transparent;
2138 overflow:auto;
2139 margin:0 0 10px;
2140}
2141
2142div.sdk-terms.fullsize {
2143 padding: 0;
2144 height: auto;
2145 width: auto;
2146 border:none;
2147}
2148
2149div.sdk-terms h3,
2150div.sdk-terms h2 {
2151 margin:0;
2152}
2153
2154div#sdk-terms-form {
2155 padding:0 0 0 10px;
2156}
2157
Scott Main11ac05b2012-11-15 14:57:44 -08002158div#sdk-terms-form input {
Scott Maindb3678b2012-10-23 14:13:41 -07002159 display:inline;
2160 margin:4px 4px 4px 0;
2161}
2162
2163
Scott Maine4d8f1b2012-06-21 18:03:05 -07002164/* --------------------------------------------------------------------------
2165Code Style
2166*/
2167pre {
Scott Maindb3678b2012-10-23 14:13:41 -07002168 margin:0 0 1em 0;
2169 padding: 1em;
2170 overflow: auto;
2171 border: solid 1px #ddd;
Scott Main98a2a712013-07-17 13:15:04 -07002172 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002173}
Scott Main70557ee2013-10-30 14:47:40 -07002174.str { color: #800; } /* Code string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002175.kwd { color: #008; }
Scott Maine4d8f1b2012-06-21 18:03:05 -07002176.typ { color: #606; }
2177.lit { color: #066; }
2178.pun { color: #660; }
2179.pln { color: #000; }
2180.tag { color: #008; }
2181.atn { color: #828; }
Scott Main70557ee2013-10-30 14:47:40 -07002182.atv { color: #800; } /* XML string */
Scott Maine4d8f1b2012-06-21 18:03:05 -07002183.dec { color: #606; }
2184
2185/* --------------------------------------------------------------------------
2186Three-Pane
2187*/
2188/* Package Nav & Classes Nav */
2189.three-pane {
Scott Mainb7f96372013-02-07 16:56:43 -08002190 position: relative;
2191 border-top: solid 1px #ebebeb;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002192}
2193#packages-nav .js-pane,
2194#classes-nav .js-pane {
2195 overflow:visible;
2196}
2197#packages-nav {
2198 height:270px;
Scott Mainb7f96372013-02-07 16:56:43 -08002199 max-height: inherit;
2200 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002201 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002202}
2203#classes-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08002204 overflow: hidden;
Scott Main98a2a712013-07-17 13:15:04 -07002205 position: relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002206}
2207#packages-nav ul, #classes-nav ul {
Scott Mainb7f96372013-02-07 16:56:43 -08002208 list-style-type: none;
2209 margin: 10px 0 20px 0;
Scott Main98a2a712013-07-17 13:15:04 -07002210 padding: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002211}
2212#classes-nav li {
Scott Mainb7f96372013-02-07 16:56:43 -08002213 font-weight: bold;
2214 margin: 5px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002215}
2216#packages-nav li,
2217#classes-nav li li {
Scott Mainb7f96372013-02-07 16:56:43 -08002218 margin: 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002219}
2220#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2221#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002222 padding: 0 0 0 4px;
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,
2226#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002227 color: #222;
Scott Main98a2a712013-07-17 13:15:04 -07002228 font-weight: normal;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002229}
2230#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2231#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002232 display: block;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002233}
2234#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2235a:visited,
2236#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2237a:visited,
2238#nav-tree li div.selected {
2239 font-weight: 500;
2240 color: #0099cc;
2241 background-color:#fff; }
2242 #packages-nav li.selected ul li a,
2243 #classes-nav li.selected ul li a {
2244 /* don't highlight child items */
2245 color: #555555; }
2246#nav-tree li div.selected a {
2247 font-weight: 500;
2248 color: #0099cc;
2249}
2250#nav-swap {
2251 height:30px;
2252 border-top:1px solid #ccc;
2253}
2254#nav-swap a {
2255 display:inline-block;
2256 height:100%;
Scott Main9ada2262012-06-23 14:59:36 -07002257 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002258 font-size: 12px;
2259 padding: 5px 0 5px 5px;
2260}
2261
2262#nav-swap .fullscreen {
2263 float: right;
2264 width: 24px;
2265 height: 24px;
2266 text-indent: -1000em;
2267 padding:0;
2268 margin:3px 5px 0;
2269 background: url(../images/fullscreen.png) no-repeat -24px 0;
2270}
2271#nav-swap .fullscreen.disabled {
2272 background-position: 0 0;
2273}
Scott Main98a2a712013-07-17 13:15:04 -07002274#nav-swap .fullscreen:hover,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002275#nav-swap .fullscreen:focus {
2276 cursor:pointer;
2277}
2278
2279
2280/* nav tree */
Scott Main42d6e582013-11-20 19:30:41 -08002281#side-nav, #swapper,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002282#nav-tree, #tree-list {
2283 overflow:hidden;
2284 margin-left:0;
2285}
2286
Scott Main42d6e582013-11-20 19:30:41 -08002287#devdoc-nav {
2288 overflow:visible !important; /* To keep the "to top" button visible */
2289}
2290
Scott Maine4d8f1b2012-06-21 18:03:05 -07002291#nav-tree ul {
2292 list-style:none;
2293 padding:0;
2294 margin:10px 0;
2295}
2296
2297#nav-tree ul li div {
2298 padding:0 0 0 4px;
2299}
2300
2301#side-nav #nav-tree ul li a,
2302#side-nav #nav-tree ul li span.no-children {
2303 padding: 0;
2304 margin: 0;
2305}
2306
2307#nav-tree .plus {
2308 margin: 0 3px 0 0;
2309}
2310
2311#nav-tree ul ul {
2312 list-style: none;
2313 margin: 0;
2314 padding: 0 0 0 0;
2315}
2316
2317#nav-tree ul li {
2318 margin: 0;
2319 padding: 0 0 0 0;
2320 white-space: nowrap;
2321}
2322
2323#nav-tree .children_ul {
2324 padding:0;
2325 margin:0;
2326}
2327#nav-tree .children_ul li div {
2328 padding:0 0 0 10px;
2329}
2330#nav-tree .children_ul .children_ul li div {
2331 padding:0 0 0 20px;
2332}
2333
2334#nav-tree a.nolink {
Scott Main9ada2262012-06-23 14:59:36 -07002335 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002336 text-decoration: none;
2337}
2338
2339#nav-tree span.label {
2340 width: 100%;
2341}
2342
2343#nav-tree {
2344 overflow-x: auto;
2345 overflow-y: scroll;
2346 outline:0;
2347}
2348
2349
2350/* Content */
2351#doc-col {
2352 margin-right:0;
2353}
2354#doc-content-container {
Scott Main98a2a712013-07-17 13:15:04 -07002355 margin-left: 291px
Scott Maine4d8f1b2012-06-21 18:03:05 -07002356}
2357#doc-header, #doc-content {
Scott Mainb7f96372013-02-07 16:56:43 -08002358 padding: 1em 2em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002359}
2360#doc-header {
Scott Main98a2a712013-07-17 13:15:04 -07002361 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002362}
2363#doc-header h1 {
Scott Mainb7f96372013-02-07 16:56:43 -08002364 line-height: 0;
2365 margin-bottom: 15px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002366}
2367#api-info-block {
Scott Mainb7f96372013-02-07 16:56:43 -08002368 float: right;
2369 font-weight: bold;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002370}
2371#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08002372 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002373}
2374#api-info-block a:hover, #api-info-block a:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002375 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002376}
2377#api-nav-header {
2378 height:19px; /* plus 16px padding = 35; same as #nav li */
2379 font-size:14px;
2380 padding: 8px 0;
2381 margin: 0;
2382 border-bottom: 1px solid #CCC;
2383 background:#e9e9e9;
2384 background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2385
2386}
2387#api-nav-title {
2388 padding:0 5px;
2389 white-space:nowrap;
2390}
2391
2392#api-level-toggle {
2393 float:right;
2394 padding:0 5px;
2395}
2396
2397#api-level-toggle label {
2398 margin:0;
2399 vertical-align:top;
2400 line-height: 19px;
2401 font-size:13px;
2402 height: 19px;
2403}
2404
2405#api-level-toggle .select-wrapper {
2406 width: 35px;
2407 display: inline-block;
2408 overflow: hidden;
2409}
2410#api-level-toggle select {
2411 border: 0;
2412 appearance:none;
2413 -moz-appearance:none;
2414 -webkit-appearance: none;
2415 background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
Scott Main9ada2262012-06-23 14:59:36 -07002416 color: #222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002417 height: 19px;
2418 line-height: 19px;
2419 padding: 0;
2420 margin:1px 0 0 0;
2421 width:150%;
2422 font-size:13px;
2423 vertical-align:top;
2424 outline:0;
2425}
2426
2427
2428/* Toggle for revision notes and stuff */
2429div.toggle-content.closed .toggle-content-toggleme {
2430 display:none;
2431}
2432
2433#jd-content img.toggle-content-img {
2434 margin:0 5px 5px 0;
2435}
Dirk Doughertyf5ffd4a2013-08-19 12:26:07 -07002436
Scott Main220c3442012-07-16 15:40:17 -07002437div.toggle-content-toggleme {
2438 padding:0 0 0 15px;
Scott Main03c972c2012-06-26 22:23:22 -07002439}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002440
2441
2442/* API LEVEL FILTERED MEMBERS */
2443
2444.absent,
2445.absent a:link,
2446.absent a:visited,
2447.absent a:hover,
2448.absent * {
2449 color:#bbb !important;
2450 cursor:default !important;
2451 text-decoration:none !important;
2452}
2453#devdoc-nav li.absent.selected,
2454#devdoc-nav li.absent.selected *,
2455#devdoc-nav div.label.absent.selected,
2456#devdoc-nav div.label.absent.selected * {
2457 background-color:#eaeaea !important;
2458}
2459.absent h4.jd-details-title,
2460.absent h4.jd-details-title * {
2461 background-color:#f6f6f6 !important;
2462}
2463.absent img {
2464 opacity: .3;
2465 filter: alpha(opacity=30);
2466 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2467}
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477/* JQUERY RESIZABLE STYLES */
2478.ui-resizable { position: relative; }
2479.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2480.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2481/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2482body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2483.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2484border-bottom: solid 1px #ededed;
2485 background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2486/*
Scott Main98a2a712013-07-17 13:15:04 -07002487.ui-resizable-e {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002488cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24891px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2490*/
2491
2492/* --------------------------------------------------------------------------
2493Lightbox
2494*/
Scott Main98a2a712013-07-17 13:15:04 -07002495.lightbox {
Scott Mainb7f96372013-02-07 16:56:43 -08002496 width: 769px;
2497 padding: 1.5em;
2498 margin: 0 auto;
2499 border: solid 1px #dcdcdc;
2500 background: #fff;
2501 -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2502 -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2503 box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
Scott Maine4d8f1b2012-06-21 18:03:05 -07002504}
2505.lightbox .header {
Scott Mainb7f96372013-02-07 16:56:43 -08002506 float: left;
2507 width: 720px;
Scott Main98a2a712013-07-17 13:15:04 -07002508 margin: -10px 20px 10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002509}
2510.lightbox .close {
Scott Mainb7f96372013-02-07 16:56:43 -08002511 float: right;
2512 width: 10px;
2513 height: 10px;
2514 margin: -10px -10px 10px 0;
2515 text-indent: -1000em;
2516 background: url(../images/close.png) no-repeat 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002517}
2518.lightbox .close:hover, .lightbox .close:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08002519 background-position: -10px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002520}
2521
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002522/* --------------------------------------------------------------------------
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002523Styles for samples browser
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002524*/
2525
Scott Main498d7102013-08-21 15:47:38 -07002526#codesample-wrapper {
Scott Main70557ee2013-10-30 14:47:40 -07002527 width:100000px; /* super wide to contain floats, but doesn't cause scroll */
Scott Main498d7102013-08-21 15:47:38 -07002528 overflow:visible;
2529}
2530pre#codesample-block {
2531 float:left;
2532 overflow:visible;
2533 background:transparent;
2534 border:none;
2535}
Scott Mainf1435b72013-10-30 16:27:38 -07002536pre#codesample-block a.number {
2537 display:none;
2538}
Scott Main498d7102013-08-21 15:47:38 -07002539pre#codesample-block .code-line:hover {
2540 background:#e7e7e7;
2541}
2542pre#codesample-line-numbers {
2543 float:left;
2544 width:2em;
2545 background:transparent;
2546 border:none;
2547 border-right:1px solid #ccc;
2548 padding-left:0;
2549 font-family:monospace;
2550 text-align:right;
2551 -webkit-touch-callout: none;
2552 -webkit-user-select: none;
2553 -khtml-user-select: none;
2554 -moz-user-select: -moz-none;
2555 -ms-user-select: none;
2556 user-select: none;
2557}
2558pre#codesample-line-numbers a {
2559 color:#999;
2560}
2561pre#codesample-line-numbers.hidden {
2562 display:none;
2563}
2564pre#codesample-block span.code-line {
2565 width:100%;
2566 display:inline-block;
2567}
2568
Dirk Doughertybb2b5532013-11-16 16:07:51 -08002569/*
2570Styles for displaying image or video resources in samples browser.
2571Resources are marked as no-display if they exceed the size limit.
2572*/
2573div#codesample-resource img, div#codesample-resource video {
2574 border: 1px solid #ececec;
2575}
2576
2577div#codesample-resource.noDisplay div {
2578 border: 1px solid #ececec;
2579 width:120px;
2580 margin-bottom:4px;
2581 padding:20px;
2582}
2583
2584div#codesample-resource .noDisplay-message:after {
2585 font-style:italic;
2586 font-size:12px;
2587 content: 'This resource is not available for browsing. To view it, please download the project.';
2588}
2589
2590/*
2591Styles for project structure (treeview) page
2592*/
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002593.structure-dir {
2594background-image:url(../../assets/images/folder.png);
2595background-repeat:no-repeat;
2596background-position:16px 2px;
2597 margin:.25em 0 0 0;
2598 padding:0 0 0 0;
2599}
2600
2601.structure-toggleme {
2602 margin:0 0 0 3em;
2603 padding:0 0 0 0;
2604 text-decoration:none;
2605}
2606
2607.structure-java{
2608background-image:url(../../assets/images/file-java.png);
2609background-repeat:no-repeat;
2610background-position:0px 2px;
2611 margin:.3em 0 0 0;
2612 padding:.3em 0 .3em 22px;
2613}
2614
2615.structure-file {
2616background-image:url(../../assets/images/file-generic.png);
2617background-repeat:no-repeat;
2618background-position:0px 2px;
2619 margin:.3em 0 0 0;
2620 padding:.3em 0 .3em 22px;
2621}
2622
2623.structure-xml {
2624background-image:url(../../assets/images/file-xml.png);
2625background-repeat:no-repeat;
2626background-position:0px 2px;
2627 margin:.3em 0 0 0;
2628 padding:.3em 0 .25em 22px;
2629}
2630
2631.structure-img {
2632background-image:url(../../assets/images/file-image.png);
2633background-repeat:no-repeat;
2634background-position:0px 2px;
2635 margin:.3em 0 0 0;
2636 padding:.3em 0 .25em 22px;
2637}
2638
2639.structure-manifest {
2640background-image:url(../../assets/images/file-manifest.png);
2641background-repeat:no-repeat;
2642 margin:.0 0 0 1.25em;
2643 padding:0 0 0 22px;
2644 text-decoration:none;
2645}
2646
2647#jd-content .structure-toggle-img {
2648 margin:.5em 0 0 0;
2649padding-right:2.1em;
2650}
2651
2652.dirInfo {
2653 margin-left:2em;
2654}
2655
2656.structure-dir a {
2657 text-decoration:none;
2658}
2659
2660.structure-manifest a {
2661 text-decoration: none;
2662}
2663.structure-file a {
2664 text-decoration: none;
2665}
2666
2667.sampleEmbed {
2668 background-color:rgb(249, 249, 249);
2669}
2670
2671.sampleEmbed ol.lineNumbers {
2672 list-style-type: decimal;
2673 padding-left:1em;
2674}
2675
2676.sampleEmbed ol.lineNumbers li {
2677border-left:1px solid #ddd;
2678border-right:1px solid #ddd;
2679color:gray;
2680background-color:#f7f7f7;
2681margin:0 0 0 24px;
2682padding: 2px 2px 2px 6px;
2683}
2684
2685.sampleEmbed ol.lineNumbers li:hover {
2686background: #efefef;
2687}
2688
Scott Main0ad622b2013-09-04 21:14:06 -07002689.samples-nav li a {
2690 overflow: hidden;
2691 text-overflow: ellipsis;
2692 white-space: nowrap;
2693}
2694
Dirk Dougherty4f7e5152010-09-16 10:43:40 -07002695/* --------------------------------------------------------------------------
2696Styles for raw formatted line numbers (not used with listformatted version)
2697div.sampleLine div.lineNumber {
2698 display: inline;
2699}
2700div.sampleLine div.lineCode {
2701 display: inline;
2702 padding-left:6px;
2703}
2704div.sampleLine {
2705 padding:0;
2706 margin:0;
2707}*/
2708
Scott Maine4d8f1b2012-06-21 18:03:05 -07002709/* --------------------------------------------------------------------------
Dirk Dougherty4c2dfcf2013-07-08 16:05:05 -07002710Butterbar
2711*/
2712#butterbar-wrapper {
2713 position:absolute;
2714 top:0;
2715 left:0;
2716 width:100%;
2717}
2718#butterbar {
2719 width:940px;
2720 margin:0 auto;
2721}
2722#butterbar-message {
2723 background-color:#f80;
2724 float:right;
2725 font-size:12px;
2726 font-weight:bold;
2727 padding:0 10px;
2728 border-radius: 0 0 5px 5px;
2729}
2730#butterbar-message a {color:#fff !important}
2731#butterbar-message a:hover {text-decoration:underline;}
2732
2733/* --------------------------------------------------------------------------
Scott Maine4d8f1b2012-06-21 18:03:05 -07002734Misc
2735*/
2736
2737
2738.clearfix:before, .clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002739 content: "";
2740 display: table
Scott Maine4d8f1b2012-06-21 18:03:05 -07002741}
2742.clearfix:after {
Scott Mainb7f96372013-02-07 16:56:43 -08002743 clear: both
Scott Maine4d8f1b2012-06-21 18:03:05 -07002744}
2745.clearfix {
Scott Mainb7f96372013-02-07 16:56:43 -08002746 *zoom: 1
Scott Maine4d8f1b2012-06-21 18:03:05 -07002747}
2748table.blank th, table.blank td {
2749 border: 0;
Scott Mainb7f96372013-02-07 16:56:43 -08002750 background: none
Scott Maine4d8f1b2012-06-21 18:03:05 -07002751}
2752.caption {
Scott Mainb7f96372013-02-07 16:56:43 -08002753 margin: 0.5em 0 2em 0;
2754 color: #000;
Scott Mainb16376f2014-05-21 20:35:47 -07002755 font-size: 11.5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002756}
2757
Scott Main25c89dd2013-10-07 14:17:55 -07002758.nolist, .nolist ul, .nolist ol {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002759 list-style:none;
Scott Main2ccbd3f2012-08-01 12:05:12 -07002760 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002761}
Scott Main5747d382012-11-30 12:02:42 -08002762#tb .nolist {
2763 margin-left:15px;
2764}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002765
Scott Main8aa725e2013-04-25 10:00:32 -07002766dl.xml>dt {
2767 text-transform:uppercase;
2768}
2769dl.xml dl.attr {
2770 margin-top:0;
2771}
Scott Maine4d8f1b2012-06-21 18:03:05 -07002772
2773pre.classic {
2774 background-color:transparent;
2775 border:none;
2776 padding:0;
2777}
2778
2779p.img-caption {
2780 margin: -10px 0 20px;
2781 font-size:13px;
2782 color:#666;
2783}
2784
Scott Main48dd7f22013-02-21 10:52:02 -08002785div.figure,
2786div.figure-right {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002787 float:right;
2788 clear:right;
2789 margin:10px 0 0 0;
2790 padding:0 0 0 20px;
2791 /* width must be defined w/ an inline style matching the image width */
2792}
2793
Scott Main48dd7f22013-02-21 10:52:02 -08002794div.figure-left {
2795 float:left;
2796 clear:left;
2797 margin:10px 0 0 0;
Scott Maind6cb8fa2013-02-21 13:05:03 -08002798 padding:0 20px 0 0;
Scott Main48dd7f22013-02-21 10:52:02 -08002799 /* width must be defined w/ an inline style matching the image width */
2800}
2801
2802img.frame {
2803 border:1px solid #DDD;
2804 padding:4px;
2805}
2806
Scott Maine4d8f1b2012-06-21 18:03:05 -07002807p.table-caption {
Scott Main24bbcd52012-09-21 14:33:43 -07002808 margin: 0 0 4px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07002809 font-size:13px;
2810 color:#666;
2811}
2812
Scott Main24bbcd52012-09-21 14:33:43 -07002813p.code-caption {
Scott Main98a2a712013-07-17 13:15:04 -07002814 margin-bottom: 4px;
Scott Maina07be8e2013-03-06 12:12:21 -08002815 font: 12px/1.5 monospace;
Scott Main24bbcd52012-09-21 14:33:43 -07002816 color:#666;
2817}
2818
Scott Main98a2a712013-07-17 13:15:04 -07002819div.note,
2820div.caution,
Scott Main54d2a9b2012-07-24 14:54:32 -07002821div.warning {
2822 margin: 0 0 15px;
2823}
2824
Scott Main98a2a712013-07-17 13:15:04 -07002825p.note, div.note,
2826p.caution, div.caution,
Scott Maine4d8f1b2012-06-21 18:03:05 -07002827p.warning, div.warning {
2828 padding: 0 0 0 10px;
2829 border-left: 4px solid;
2830}
2831
Scott Main24bbcd52012-09-21 14:33:43 -07002832p.note, div.note {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002833 border-color: #258AAF;
2834}
2835
Scott Main24bbcd52012-09-21 14:33:43 -07002836p.caution, div.caution {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002837 border-color: #FF8800;
2838}
2839
Scott Main24bbcd52012-09-21 14:33:43 -07002840p.warning, div.warning {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002841 border-color: #ff4443;
2842}
2843
Scott Main412eaf22012-06-22 14:36:33 -07002844div.note.design {
2845 border-left: 4px solid #33B5E5;
2846}
2847
2848div.note.develop {
2849 border-left: 4px solid #F80;
2850}
2851
2852div.note.distribute {
2853 border-left: 4px solid #9C0;
2854}
2855
2856.note p, .caution p, .warning p {
2857 margin:0 0 5px;
2858}
2859
2860.note p:last-child, .caution p:last-child, .warning p:last-child {
2861 margin-bottom:0;
2862}
2863
Scott Main5b5ff1a2012-09-12 10:29:45 -07002864body.about blockquote {
Scott Maine4d8f1b2012-06-21 18:03:05 -07002865 display:block;
2866 float:right;
2867 width:280px;
2868 font-size:20px;
2869 font-style:italic;
2870 line-height:24px;
2871 color:#33B5E5;
2872 margin:0 0 20px 30px;
2873}
2874
Scott Maine4d8f1b2012-06-21 18:03:05 -07002875div.design-announce p {
2876 margin:0 0 10px;
2877}
2878
Scott Maindb3678b2012-10-23 14:13:41 -07002879.expandable {
2880 height:34px;
2881 padding-left:20px;
2882 position:relative;
2883}
2884.expandable:before {
2885 content: '';
2886 background-image: url(../images/styles/disclosure_down.png);
2887 background-repeat:no-repeat;
2888 background-position: -12px -9px;
2889 width: 20px;
2890 height: 20px;
2891 display: inline-block;
2892 position: absolute;
2893 top: 0;
2894 left: 0; }
2895}
2896.expandable.expanded:before {
2897 background-image: url(../images/styles/disclosure_up.png);
2898}
2899
Scott Mainaaf76642013-06-19 18:04:30 -07002900/* notice box for cross links between Design/Develop docs */
Scott Main13cd8f12013-11-12 11:50:59 -08002901a.notice-developers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002902a.notice-developers,
Scott Main13cd8f12013-11-12 11:50:59 -08002903a.notice-designers-video,
Scott Mainaaf76642013-06-19 18:04:30 -07002904a.notice-designers {
Scott Maind2af6d22013-05-13 18:39:06 -07002905 float:right;
Scott Maine80ddbe2013-07-12 19:22:24 -07002906 clear:right;
Scott Mainaaf76642013-06-19 18:04:30 -07002907 width:238px;
Scott Maind2af6d22013-05-13 18:39:06 -07002908 min-height:50px;
2909 margin:0 0 20px 20px;
2910 border:1px solid #ddd;
2911}
Scott Main13cd8f12013-11-12 11:50:59 -08002912a.notice-developers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002913a.notice-developers.wide,
Scott Main13cd8f12013-11-12 11:50:59 -08002914a.notice-designers-video.wide,
Scott Main5eccda82013-07-30 14:56:45 -07002915a.notice-designers.wide {
2916 width:278px;
2917}
Scott Main13cd8f12013-11-12 11:50:59 -08002918a.notice-developers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002919a.notice-developers div,
Scott Main13cd8f12013-11-12 11:50:59 -08002920a.notice-designers-video div,
Scott Mainaaf76642013-06-19 18:04:30 -07002921a.notice-designers div {
Scott Main9bfcd732013-05-14 09:14:35 -07002922 min-height:40px;
Scott Maind19c2c82013-06-19 18:48:27 -07002923 background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2924 background-size:40px 40px;
Scott Main9bfcd732013-05-14 09:14:35 -07002925 padding:10px 10px 10px 60px;
Scott Maind2af6d22013-05-13 18:39:06 -07002926}
Scott Mainaaf76642013-06-19 18:04:30 -07002927a.notice-designers div {
Scott Maind19c2c82013-06-19 18:48:27 -07002928 background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2929 background-size:40px 40px;
Scott Mainaaf76642013-06-19 18:04:30 -07002930}
Scott Main13cd8f12013-11-12 11:50:59 -08002931a.notice-designers-video div {
2932 background:url('../images/styles/notice-designers-video@2x.png') no-repeat 10px 10px;
2933 background-size:40px 40px;
2934}
2935a.notice-developers-video div {
2936 background:url('../images/styles/notice-developers-video@2x.png') no-repeat 10px 10px;
2937 background-size:40px 40px;
2938}
2939a.notice-developers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002940a.notice-developers:hover,
Scott Main13cd8f12013-11-12 11:50:59 -08002941a.notice-designers-video:hover,
Scott Mainaaf76642013-06-19 18:04:30 -07002942a.notice-designers:hover {
Scott Maind2af6d22013-05-13 18:39:06 -07002943 background:#eee;
2944}
Scott Main13cd8f12013-11-12 11:50:59 -08002945a.notice-developers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002946a.notice-developers h3,
Scott Main13cd8f12013-11-12 11:50:59 -08002947a.notice-designers-video h3,
Scott Mainaaf76642013-06-19 18:04:30 -07002948a.notice-designers h3 {
Scott Main4e5b39d2013-11-13 16:49:22 -08002949 font-size:13px;
2950 line-height:18px;
2951 font-weight:bold;
Scott Maind2af6d22013-05-13 18:39:06 -07002952 text-transform:uppercase;
2953 color:#000 !important;
Scott Main4e5b39d2013-11-13 16:49:22 -08002954 margin:0 0 1px;
Scott Maind2af6d22013-05-13 18:39:06 -07002955}
Scott Main13cd8f12013-11-12 11:50:59 -08002956a.notice-developers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002957a.notice-developers p,
Scott Main13cd8f12013-11-12 11:50:59 -08002958a.notice-designers-video p,
Scott Mainaaf76642013-06-19 18:04:30 -07002959a.notice-designers p {
Scott Maind2af6d22013-05-13 18:39:06 -07002960 margin:0;
Scott Main4e5b39d2013-11-13 16:49:22 -08002961 line-height:14px;
Scott Main9bfcd732013-05-14 09:14:35 -07002962}
Scott Main13cd8f12013-11-12 11:50:59 -08002963a.notice-developers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002964a.notice-developers.left,
Scott Main13cd8f12013-11-12 11:50:59 -08002965a.notice-designers-video.left,
Scott Mainaaf76642013-06-19 18:04:30 -07002966a.notice-designers.left {
Scott Main9bfcd732013-05-14 09:14:35 -07002967 margin-left:0;
2968 float:left;
Scott Maind2af6d22013-05-13 18:39:06 -07002969}
2970
2971
Scott Maind7026f72013-06-17 15:08:49 -07002972/* hide nested list items; companion to hideNestedLists() */
2973.hide-nested li ol,
2974.hide-nested li ul {
2975 display:none;
2976}
2977
2978a.header-toggle {
2979 display:block;
2980 float:right;
2981 text-transform:uppercase;
2982 font-size:.8em !important;
2983 font-weight:normal;
2984 margin-top:2px;
2985}
2986
2987
Dirk Doughertybec14292013-04-10 20:23:40 -07002988/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07002989good/bad example containers
Dirk Doughertybec14292013-04-10 20:23:40 -07002990*/
Scott Maindb3678b2012-10-23 14:13:41 -07002991
Dirk Doughertybec14292013-04-10 20:23:40 -07002992div.example-block {
2993 background-repeat: no-repeat;
Scott Main98a2a712013-07-17 13:15:04 -07002994 background-position:10px 8px;
Dirk Doughertybec14292013-04-10 20:23:40 -07002995 background-color:#ccc;
2996 padding:4px;
2997 margin:.8em auto 1.5em 2em;
2998 width:260px;
2999 float:right;
3000}
3001/* red container */
3002.example-block.bad {
3003 background-image: url(/images/example-bad.png);
3004 background-color:#f4cccc;
3005}
3006/* green container */
3007.example-block.good {
3008 background-image: url(/images/example-good.png);
3009 background-color:#d9ead3;
3010}
3011/* container heading div */
3012#jd-content .example-block .heading {
3013 font-weight:bold;
3014 margin:6px 0 9px 36px;
3015 padding:6px auto;
3016}
3017/* container image (if any) */
3018#jd-content .example-block img {
3019 margin:0;
3020 padding:0px;
3021}
3022
3023.example-block table {
3024 margin:0;
3025}
Scott Maindb3678b2012-10-23 14:13:41 -07003026
Scott Maine4d8f1b2012-06-21 18:03:05 -07003027/* -----------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003028Dialog box for popup messages
Scott Maine4d8f1b2012-06-21 18:03:05 -07003029*/
3030
3031div.dialog {
3032 height:0;
3033 margin:0 auto;
3034}
3035
3036div.dialog>div {
3037 z-index:99;
3038 position:fixed;
3039 margin:70px 0;
3040 width: 391px;
3041 height: 200px;
3042 background: #F7F7F7;
3043-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3044-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3045box-shadow: 0 0 15px rgba(0,0,0,0.5);
3046}
3047/* IE6 can't position fixed */
3048* html div.dialog div { position:absolute; }
3049
3050
3051div#deprecatedSticker {
3052 display:none;
3053 z-index:99;
3054 position:fixed;
3055 right:15px;
3056 top:114px;
3057 margin:0;
3058 padding:1em;
3059 background:#FFF;
3060 border:1px solid #dddd00;
3061 box-shadow:-5px 5px 10px #ccc;
3062 -moz-box-shadow:-5px 5px 10px #ccc;
3063 -webkit-box-shadow:-5px 5px 10px #ccc;
3064}
3065
3066div#naMessage {
3067 display:none;
3068 width:555px;
3069 height:0;
3070 margin:0 auto;
3071}
3072
3073div#naMessage div {
3074 z-index:99;
3075 width:450px;
3076 position:fixed;
3077 margin:50px 0;
3078 padding:4em 4em 3em;
3079 background:#FFF;
3080 border:1px solid #999;
3081 box-shadow:-10px 10px 40px #888;
3082 -moz-box-shadow:-10px 10px 40px #888;
3083 -webkit-box-shadow:-10px 10px 40px #888;
3084}
3085/* IE6 can't position fixed */
3086* html div#naMessage div { position:absolute; }
3087
3088div#naMessage strong {
3089 font-size:1.1em;
3090}
3091
3092
3093/* --------------------------------------------------------------------------
Scott Main98a2a712013-07-17 13:15:04 -07003094Slideshow Controls & Next/Prev
Scott Maine4d8f1b2012-06-21 18:03:05 -07003095*/
Scott Main98a2a712013-07-17 13:15:04 -07003096.slideshow-next, .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08003097 width: 20px;
3098 height: 36px;
3099 text-indent: -1000em;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003100}
3101.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08003102 margin: 2em 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003103}
3104.slideshow-container:before, .slideshow-container:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003105 content: "";
3106 display: table;
3107 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003108}
3109a.slideshow-next, a.slideshow-next:visited {
3110
Scott Mainb7f96372013-02-07 16:56:43 -08003111 float: right;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003112
Scott Mainb7f96372013-02-07 16:56:43 -08003113 background: url(../images/arrow-right.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003114
3115}
3116
3117a.slideshow-prev, a.slideshow-prev:visited {
3118
Scott Main98a2a712013-07-17 13:15:04 -07003119 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003120
Scott Mainb7f96372013-02-07 16:56:43 -08003121 background: url(../images/arrow-left.png) no-repeat 0 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07003122
3123}
3124
3125.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3126
Scott Main98a2a712013-07-17 13:15:04 -07003127 background-position: 0 -36px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003128
3129}
3130
3131.slideshow-next:active, .slideshow-prev:active {
3132
Scott Main98a2a712013-07-17 13:15:04 -07003133 background-position: 0 -72px
Scott Maine4d8f1b2012-06-21 18:03:05 -07003134
3135}
3136.slideshow-nav {
Scott Mainb7f96372013-02-07 16:56:43 -08003137 width: 74px;
Scott Main98a2a712013-07-17 13:15:04 -07003138 margin: 0 auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003139}
3140.slideshow-nav a, .slideshow-nav a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003141 display: inline-block;
3142 width: 12px;
3143 height: 12px;
3144 margin: 0 2px 20px 2px;
3145 background: #ccc;
3146 -webkit-border-radius: 50%;
3147 -moz-border-radius: 50%;
3148 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003149}
3150.slideshow-nav a:hover, .slideshow-nav a:focus {
3151
Scott Mainb7f96372013-02-07 16:56:43 -08003152 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003153}
3154
3155.slideshow-nav a:active {
3156
Scott Mainb7f96372013-02-07 16:56:43 -08003157 background: #1e799a;
Scott Main98a2a712013-07-17 13:15:04 -07003158 background: #ebebeb;
Scott Mainb7f96372013-02-07 16:56:43 -08003159 -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3160 -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3161 box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
Scott Maine4d8f1b2012-06-21 18:03:05 -07003162}
3163.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003164 background: #33B5E5
Scott Maine4d8f1b2012-06-21 18:03:05 -07003165}
3166/* --------------------------------------------------------------------------
3167Tabs
3168*/
3169ul.tabs {
Scott Mainb7f96372013-02-07 16:56:43 -08003170 padding: 0;
Scott Main98a2a712013-07-17 13:15:04 -07003171 margin: 2em 0 0 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003172}
3173ul.tabs:before, ul.tabs:after {
Scott Mainb7f96372013-02-07 16:56:43 -08003174 content: "";
3175 display: table;
3176 clear: both;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003177}
3178ul.tabs li {
Scott Mainb7f96372013-02-07 16:56:43 -08003179 list-style-type: none;
Scott Main98a2a712013-07-17 13:15:04 -07003180 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003181}
3182ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
Scott Mainb7f96372013-02-07 16:56:43 -08003183 display: block;
3184 height: 36px;
3185 line-height: 36px;
3186 padding: 0 15px;
3187 margin-right: 2px;
3188 color: #222;
3189 -moz-border-radius-topleft: 2px;
3190 -moz-border-radius-topright: 2px;
3191 -moz-border-radius-bottomright: px;
3192 -moz-border-radius-bottomleft: px;
3193 -webkit-border-radius: 2px 2px px px;
Scott Main98a2a712013-07-17 13:15:04 -07003194 border-radius: 2px 2px px px;
Scott Mainb7f96372013-02-07 16:56:43 -08003195 border-top: solid 1px #ebebeb;
3196 border-left: solid 1px #ebebeb;
3197 border-right: solid 1px #ebebeb;
3198 background-color: #fff;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003199 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3200 background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3201 background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3202 background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3203 background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3204 background-image: linear-gradient(top, #ffffff, #fafafa);
3205 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3206EndColorStr='#fafafa');
3207}
3208ul.tabs li a:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003209 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003210}
3211ul.tabs li a.selected {
Scott Mainb7f96372013-02-07 16:56:43 -08003212 height: 37px;
3213 color: #33B5E5;
3214 background-color: #f7f7f7;
3215 background-image: none;
3216 border-color: #ddd;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003217}
3218.tab-content {
Scott Mainb7f96372013-02-07 16:56:43 -08003219 padding: 1.2em;
3220 margin: -1px 0 2em 0;
3221 -webkit-border-radius: 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003222 -moz-border-radius: 2px;
3223 border-radius: 2px;
Scott Mainb7f96372013-02-07 16:56:43 -08003224 border: solid 1px #ddd;
3225 background: #f7f7f7;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003226}
3227/* --------------------------------------------------------------------------
3228Feature Boxes
3229*/
3230.feature-box {
3231 width: 291px;
3232 height: 200px;
3233 position: relative;
3234 background: #F7F7F7;
3235}
3236.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003237 z-index: 100;
3238 position: absolute;
3239 background-color: #aaa;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003240}
3241.box-border .top, .box-border .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08003242 width: 291px;
3243 height: 1px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003244}
3245.dialog .box-border .top,
3246.dialog .box-border .bottom { width:391px; }
3247
Scott Main98a2a712013-07-17 13:15:04 -07003248.box-border .left, .box-border .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003249 width: 1px;
Scott Main98a2a712013-07-17 13:15:04 -07003250 height: 8px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003251}
3252.box-border .top { top: 0; left: 0 }
3253.box-border .top .left { top: 1px; left: 0 }
3254.box-border .top .right { top: 1px; right: 0 }
3255.box-border .bottom .left { top: -8px; left: 0 }
3256.box-border .bottom { top: 200px; left: 0 }
3257.box-border .bottom .right { top: -8px; right: 0 }
3258
3259.feature-box h4,
3260.dialog h4 {
3261 margin: 15px 18px 10px;
3262 padding:0;
3263}
3264
3265.feature-box p,
3266.dialog p {
3267 margin: 10px 18px;
3268 padding:0;
3269}
3270.feature-box .link,
3271.dialog .link {
3272 border-top: 1px solid #dedede;
3273 bottom: 0;
3274 position: absolute;
3275 width: inherit;
3276}
3277.feature-box a, .feature-box h4,
3278.dialog a, .dialog h4 {
3279 -webkit-transition: color .4s ease;
3280 -moz-transition: color .4s ease;
3281 -o-transition: color .4s ease;
3282 transition: color .4s ease;
3283}
3284.feature-box:hover {
Scott Main98a2a712013-07-17 13:15:04 -07003285 cursor: pointer;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003286}
3287.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
Scott Main98a2a712013-07-17 13:15:04 -07003288.left, .feature-box:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08003289 background-color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003290}
3291.feature-box:hover h4, .feature-box:hover a {
Scott Mainb7f96372013-02-07 16:56:43 -08003292 color: #33B5E5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003293}
3294/* --------------------------------------------------------------------------
3295Page-Specific Styles
3296*/
Scott Main98a2a712013-07-17 13:15:04 -07003297.colors {
Scott Mainb7f96372013-02-07 16:56:43 -08003298 position: relative;
3299 float: left;
3300 width: 92px;
3301 margin: 40px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003302}
3303.colors div {
Scott Mainb7f96372013-02-07 16:56:43 -08003304 color: #fff;
3305 font-size: 11.5px;
3306 width: 82px;
3307 height: 82px;
3308 margin-top:-30px;
3309 line-height: 82px;
3310 text-align: center;
3311 border: solid 5px #fff;
3312 -webkit-border-radius: 50%;
3313 -moz-border-radius: 50%;
3314 border-radius: 50%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003315}
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330/* ########### REFERENCE DOCS ################## */
3331
3332#packages-nav h2,
3333#classes-nav h2 {
3334 font-size:18px;
3335 margin:0;
3336 padding:0 0 0 4px;
3337}
3338
3339#jd-header {
Dirk Doughertya6913b52014-06-11 17:28:38 -07003340 padding: 0 0 12px;
3341 margin: 20px 0 12px;
3342 font-size:12px;
3343 padding-bottom:12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003344 border-bottom:solid 1px #ccc;
3345}
3346
3347#jd-header h1 {
3348 margin:0;
Dirk Doughertya6913b52014-06-11 17:28:38 -07003349 padding:0 0 6px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003350}
3351
Dirk Doughertya6913b52014-06-11 17:28:38 -07003352/* not sure if this is needed in the ref docs, disabling for now
3353.jd-descr h2 {
3354 margin:16px 0;
3355}
3356*/
3357
Scott Maine4d8f1b2012-06-21 18:03:05 -07003358/* page-top-right container for reference pages (holds
3359links to summary tables) */
3360#api-info-block {
Dirk Doughertya6913b52014-06-11 17:28:38 -07003361 font-size:12px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003362 margin:20px 0 0;
3363 padding:0 10px 6px;
3364 font-weight:normal;
3365 float:right;
3366 text-align:right;
3367 color:#999;
Dirk Doughertya6913b52014-06-11 17:28:38 -07003368 max-width:80%;
3369 font-size: 12px;
3370 line-height:14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003371}
3372
3373#api-info-block div.api-level {
3374 font-weight:bold;
3375 font-size:inherit;
3376 float:none;
Scott Main9ada2262012-06-23 14:59:36 -07003377 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003378 padding:0;
3379 margin:0;
3380}
3381
3382/* inheritance table */
3383.jd-inheritance-table {
3384 border-spacing:0;
3385 margin:0;
3386 padding:0;
Dirk Doughertya6913b52014-06-11 17:28:38 -07003387 font-size:12px;
3388 line-height:14px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003389 background-color:transparent;
3390}
3391.jd-inheritance-table tr td {
3392 border: none;
3393 margin: 0;
3394 padding: 0;
3395 background-color:transparent;
3396}
3397.jd-inheritance-table .jd-inheritance-space {
3398 font-weight:bold;
3399 width:1em;
3400}
3401.jd-inheritance-table .jd-inheritance-interface-cell {
3402 padding-left: 17px;
3403}
3404
3405
3406
3407.jd-sumtable a {
3408 text-decoration:none;
3409}
3410
3411.jd-sumtable a:hover {
3412 text-decoration:underline;
3413}
3414
3415/* the link inside a sumtable for "Show All/Hide All" */
3416.toggle-all {
3417 display:block;
3418 float:right;
3419 font-weight:normal;
3420 font-size:0.9em;
3421}
3422
3423/* adjustments for in/direct subclasses tables */
3424.jd-sumtable.jd-sumtable-subclasses {
3425 margin: 1em 0 0 0;
3426 max-width:968px;
3427 background-color:transparent;
3428 font-size:13px;
3429}
3430
3431/* extra space between end of method name and open-paren */
3432.sympad {
3433 margin-right: 2px;
3434}
3435
3436/* right alignment for the return type in sumtable */
3437.jd-sumtable .jd-typecol {
3438 text-align:right;
3439}
3440
3441/* adjustments for the expando table-in-table */
3442.jd-sumtable-expando {
3443 margin:.5em 0;
3444 padding:0;
3445}
3446
3447/* a div that holds a short description */
3448.jd-descrdiv {
3449 padding:3px 1em 0 1em;
3450 margin:0;
3451 border:0;
3452}
3453
3454#jd-content img.jd-expando-trigger-img {
3455 padding:0 4px 4px 0;
3456 margin:0;
3457}
3458
3459.jd-sumtable-subclasses div#subclasses-direct,
3460.jd-sumtable-subclasses div#subclasses-indirect {
3461 margin:0 0 0 13px;
3462}
3463
3464
3465
3466/********* MEMBER REF *************/
3467
3468
3469.jd-details {
3470/* border:1px solid #669999;
3471 padding:4px; */
3472 margin:0 0 1em;
3473}
3474
3475/* API reference: a container for the
3476.tagdata blocks that make up the detailed
3477description */
3478.jd-details-descr {
3479 padding:0;
3480 margin:.5em .25em;
3481}
3482
3483/* API reference: a block containing
3484a detailed description, a params table,
3485seealso list, etc */
3486.jd-tagdata {
3487 margin:.5em 1em;
3488}
3489
3490.jd-tagdata p {
3491 margin:0 0 1em 1em;
3492}
3493
3494/* API reference: adjustments to
3495the detailed description block */
3496.jd-tagdescr {
3497 margin:.25em 0 .75em 0;
3498}
3499
3500.jd-tagdescr ol,
3501.jd-tagdescr ul {
3502 margin:0 2.5em;
3503 padding:0;
3504}
3505
3506.jd-tagdescr table,
3507.jd-tagdescr img {
3508 margin:.25em 1em;
3509}
3510
3511.jd-tagdescr li {
3512margin:0 0 .25em 0;
3513padding:0;
3514}
3515
3516/* API reference: heading marking
3517the details section for constants,
3518attrs, methods, etc. */
3519h4.jd-details-title {
3520 font-size:1.15em;
3521 background-color: #E2E2E2;
3522 margin:1.5em 0 .6em;
3523 padding:3px 95px 3px 3px; /* room for api-level */
3524}
Scott Mainab4daf42012-11-30 11:27:17 -08003525body.google h4.jd-details-title {
3526 background-color: #FFF;
3527 padding-top:5px;
3528 border-top: 1px solid #ccc;
3529}
3530body.google table.jd-sumtable th {
3531 background-color: #FFF;
3532 color:#000;
3533}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003534
3535h4.jd-tagtitle {
3536 margin:0;
3537}
3538
3539h4 .normal {
3540 font-weight:normal;
3541}
3542
3543/* API reference: heading for "Parameters", "See Also", etc.,
3544in details sections */
3545h5.jd-tagtitle {
3546 margin:0 0 .25em 0;
3547 font-size:1em;
3548}
3549
3550.jd-tagtable {
3551 margin:0;
3552 background-color:transparent;
Scott Main03c972c2012-06-26 22:23:22 -07003553 width:auto;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003554}
3555
3556.jd-tagtable td,
3557.jd-tagtable th {
3558 border:none;
3559 background-color:#fff;
3560 vertical-align:top;
3561 font-weight:normal;
3562 padding:2px 10px;
3563}
3564
3565.jd-tagtable th {
3566 font-style:italic;
3567}
3568
3569/* Inline api level indicator for methods */
3570div.api-level {
3571 font-size:.8em;
3572 font-weight:normal;
3573 color:#999;
3574 float:right;
3575 padding:0 8px 0;
3576 margin-top:-30px;
3577}
3578
3579table.jd-tagtable td,
3580table.jd-tagtable th {
3581 background-color:transparent;
3582}
3583
3584table.jd-tagtable th {
3585 color:inherit;
3586}
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610/* SEARCH FILTER */
3611
Scott Main0e76e7e2013-03-12 10:24:07 -07003612.menu-container {
3613 position:relative;
3614}
Scott Maine4d8f1b2012-06-21 18:03:05 -07003615#search_autocomplete {
3616 font-weight:normal;
3617}
3618
Scott Main0e76e7e2013-03-12 10:24:07 -07003619.search_filtered_wrapper.reference {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003620 width: 193px;
3621 float: right;
3622}
Scott Main0e76e7e2013-03-12 10:24:07 -07003623.search_filtered_wrapper.docs {
3624 width:875px;
3625 float: left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003626 position:absolute;
Scott Main0e76e7e2013-03-12 10:24:07 -07003627 top:26px;
3628 right:66px;
3629}
3630.suggest-card {
3631 position:relative;
3632 width:170px;
3633 min-height:90px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003634 padding:5px;
3635 border: solid 1px #C5C5C5;
3636 background: white;
Scott Main0e76e7e2013-03-12 10:24:07 -07003637 top: 15px;
3638 margin-right:-5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003639 -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3640 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3641 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3642}
Scott Main0e76e7e2013-03-12 10:24:07 -07003643.suggest-card.reference {
3644 position:absolute;
3645 z-index:999;
3646 min-width:171px; /* +padding and border makes this match input width */
3647 min-height:93px; /* add 3px because this has 1 not 4px top border */
3648 width:auto;
3649 top:41px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003650 margin:0;
Scott Main0e76e7e2013-03-12 10:24:07 -07003651}
3652.suggest-card.develop {
3653 z-index:997;
3654 border-top: solid 4px #F80;
3655 float:right;
3656}
3657.suggest-card.design {
3658 z-index:996;
3659 border-top: solid 4px #33b5e5;
3660 float:right;
3661}
3662.suggest-card.distribute {
3663 z-index:995;
3664 border-top: solid 4px #9C0;
3665 float:right;
3666}
3667.child-card {
3668 width:100%;
3669}
3670.suggest-card.dummy {
3671 width:172px;
3672 float:right;
3673 border:0;
3674 background:transparent;
3675 -moz-box-shadow: none;
3676 -webkit-box-shadow: none;
3677 box-shadow: none;
3678}
3679
3680ul.search_filtered {
3681 min-width:100%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003682 list-style: none;
Scott Main0e76e7e2013-03-12 10:24:07 -07003683 margin: 0 0 5px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003684 padding: 0;
3685}
Scott Main0e76e7e2013-03-12 10:24:07 -07003686.search_filtered .jd-selected {
3687 background:#efefef;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003688 cursor:pointer;
3689}
Scott Main0e76e7e2013-03-12 10:24:07 -07003690.search_filtered .jd-selected,
3691.search_filtered .jd-selected a {
3692 color:#09C !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003693}
3694
3695.no-display {
3696 display: none;
3697}
3698
Scott Main0e76e7e2013-03-12 10:24:07 -07003699.search_filtered li.jd-autocomplete {
Scott Maine4d8f1b2012-06-21 18:03:05 -07003700 font-size: 0.81em;
3701 border: none;
Scott Main7e447ed2013-02-19 17:22:37 -08003702 margin: 0 0 2px;
3703 padding: 0;
3704 line-height:1.5em;
3705}
3706
Scott Main0e76e7e2013-03-12 10:24:07 -07003707.search_filtered li a {
Scott Main7e447ed2013-02-19 17:22:37 -08003708 padding:0 5px;
3709 color:#222 !important;
Scott Main0e76e7e2013-03-12 10:24:07 -07003710 display:inline-block;
3711 line-height:12px;
Scott Main7e447ed2013-02-19 17:22:37 -08003712}
3713
Scott Main0e76e7e2013-03-12 10:24:07 -07003714.search_filtered li.header {
Scott Main7e447ed2013-02-19 17:22:37 -08003715 font-weight:bold;
Scott Main0e76e7e2013-03-12 10:24:07 -07003716 color:#444;
Scott Main7e447ed2013-02-19 17:22:37 -08003717 border: none;
3718 margin: 8px 0 2px;
3719 padding:1px 5px;
3720 line-height:1.5em;
3721}
Scott Main0e76e7e2013-03-12 10:24:07 -07003722.search_filtered li.header.small {
3723 font-size:0.85em;
3724}
Scott Main7e447ed2013-02-19 17:22:37 -08003725
Scott Main98a2a712013-07-17 13:15:04 -07003726.suggest-card.reference
Scott Main0e76e7e2013-03-12 10:24:07 -07003727.search_filtered li.header {
3728 color:#aaa;
3729 font-size: 0.81em;
3730}
3731
3732.search_filtered li.header:first-child {
Scott Main7e447ed2013-02-19 17:22:37 -08003733 margin: 0 0 2px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07003734}
3735
3736.show-item {
3737 display: table-row;
3738}
3739.hide-item {
3740 display: hidden;
3741}
3742
3743
3744
3745
3746
3747/* SEARCH RESULTS */
3748
Scott Maine4d8f1b2012-06-21 18:03:05 -07003749
3750#leftSearchControl .gsc-twiddle {
3751 background-image : none;
3752}
3753
3754#leftSearchControl td, #searchForm td {
3755 border: 0px solid #000;
3756 padding:0;
3757}
3758
3759#leftSearchControl .gsc-resultsHeader .gsc-title {
3760 padding-left : 0px;
3761 font-weight : bold;
3762 font-size : 13px;
3763 color:#006699;
3764 display : none;
3765}
3766
3767#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3768 display : none;
3769}
3770
3771#leftSearchControl .gsc-resultsRoot {
3772 padding-top : 6px;
3773}
3774
3775#leftSearchControl div.gs-visibleUrl-long {
3776 display : block;
3777 color:#006699;
3778}
3779
3780#leftSearchControl .gsc-webResult {
3781 padding:0 0 20px 0;
3782}
3783
3784.gsc-webResult div.gs-visibleUrl-short,
3785table.gsc-branding,
3786.gsc-clear-button {
3787 display : none;
3788}
3789
3790.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3791.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3792#leftSearchControl a,
3793#leftSearchControl a b {
3794 color:#006699;
3795}
3796
3797.gsc-resultsHeader {
3798 display: none;
3799}
3800
3801/* Disable built in search forms */
3802.gsc-control form.gsc-search-box {
3803 display : none;
3804}
3805table.gsc-search-box {
3806 margin:6px 0 0 0;
3807 border-collapse:collapse;
3808}
3809
3810td.gsc-input {
3811 padding:0 2px;
3812 width:100%;
3813 vertical-align:middle;
3814}
3815
3816input.gsc-input {
3817 border:1px solid #BCCDF0;
3818 width:99%;
3819 padding-left:2px;
3820 font-size:.95em;
3821}
3822
3823td.gsc-search-button {
3824 text-align: right;
3825 padding:0;
3826 vertical-align:top;
3827}
3828
3829
3830#searchResults {
3831 overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3832(it doesn't) */
3833 height:auto;
3834}
3835
3836#searchResults .gsc-control {
3837 position:relative;
3838 width:auto;
3839 padding:0 0 10px;
3840}
3841
3842#searchResults .gsc-tabsArea {
3843 position:relative;
3844 white-space:nowrap;
3845 float:left;
3846 width:200px;
3847}
3848
3849#searchResults .gsc-above-wrapper-area {
3850 display:none;
3851}
3852
3853#searchResults .gsc-resultsbox-visible {
3854 float:left;
3855 width:720px;
3856 margin-left:20px;
3857}
3858
3859#searchResults .gsc-tabHeader {
3860 padding: 3px 6px;
3861 position:relative;
3862 width:auto;
3863 display:block;
3864}
3865
3866#searchResults h2#searchTitle {
3867 padding:0;
3868 margin:5px 0;
3869 border:none;
3870}
3871
3872#searchResults h2#searchTitle em {
3873 font-style:normal;
3874 color:#33B5E5;
3875}
3876
3877#searchResults .gsc-table-result {
3878 margin:5px 0 10px 0;
3879 background-color:transparent;
3880}
3881#searchResults .gs-web-image-box, .gs-promotion-image-box {
3882 width:120px;
3883}
3884#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3885 max-width:120px;
3886}
3887
3888#searchResults .gsc-table-result .gsc-thumbnail {
3889 padding:0 20px 0 0;
3890}
3891
3892#searchResults td {
3893 background-color:transparent;
3894}
3895
3896#searchResults .gsc-expansionArea {
3897 position:relative;
3898}
3899#searchResults .gsc-tabsArea .gsc-cursor-box {
3900 width:200px;
3901 padding:20px 0 0 1px;
3902}
3903#searchResults .gsc-cursor-page {
3904 display:inline-block;
3905 float:left;
3906 margin:-1px 0 0 -1px;
3907 padding:0;
3908 height:27px;
3909 width:27px;
3910 text-align:center;
3911 line-height:2;
3912}
3913
3914#searchResults .gsc-tabHeader.gsc-tabhInactive,
3915#searchResults .gsc-cursor-page {
3916 text-decoration:none;
3917 color:#258AAF;
3918 border: solid 1px #DADADA;
3919}
3920
3921#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3922#searchResults .gsc-cursor-page:hover {
3923 border-color: #DBDBDB;
3924 background-color: #F3F3F3;
3925 background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3926 background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3927 background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3928 background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3929 background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3930 background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3931 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3932EndColorStr='#ececec');
3933 color: #33B5E5;
3934}
3935
3936#searchResults .gsc-tabHeader.gsc-tabhActive,
3937#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3938#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3939#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3940 color:#fff;
3941 background-color: #09C;
3942 background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3943 background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3944 background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3945 background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3946 background-image: -o-linear-gradient(top, #2FADDB, #09C);
3947 background-image: linear-gradient(top, #2FADDB, #09C);
3948 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3949 border: 1px solid #3990AB;
3950 z-index:100;
3951}
3952
Dirk Doughertyc3921652014-05-13 16:55:26 -07003953
3954
3955
3956
3957/************ STICKY NAV BAR ******************/
3958
3959#header-wrapper {
3960 background: #f9f9f9;
3961 margin: 0 -10px 0 -10px;
3962 padding: 31px 10px 0px 10px;
3963 position: relative;
3964}
3965#header-wrapper #nav-x div.wrap {
3966 max-width: 940px;
3967 height: 38px;
3968}
3969#header-wrapper #nav-x ul.nav-x li {
3970 margin-right: 36px !important;
3971 margin-top: 5px;
3972 margin-bottom: 0px;
3973 height: 30px;
3974}
3975#header-wrapper #nav-x > div.wrap ul.nav-x li.active {
3976 color: #669900;
3977 border-bottom: 3px solid #669900;
3978}
3979#header-wrapper #nav-x > div.wrap ul.nav-x li.active a {
3980 color: #669900;
3981}
3982#header-wrapper #nav-x > div.wrap ul.nav-x a {
3983 font-size: 14.5px;
3984}
3985#header-wrapper .developer-console-btn {
3986 float: right;
3987 background: #fefefe;
3988 border-radius: 4px;
3989 padding: 8px 14px;
3990 box-shadow: 1px 1px 0px #7a7a7a;
3991 font-size: 14px;
3992 margin-top: -6px;
3993 cursor: pointer;
3994 color: #464646;
3995 margin-right: 20px;
3996}
3997/* not currently used */
3998#header-wrapper .shadow {
3999 width: 1034px;
4000 height: 4px;
4001 position: absolute;
4002 left: 50%;
4003 margin-left: -517px;
4004 bottom: -4px;
4005 background-image: url(../images/header-shadow.png);
4006}
4007
4008#context {
4009 clear: both;
4010 padding-top: 14px;
4011}
4012#context .breadcrumb {
4013 float: left;
4014 margin-bottom: 10px;
4015}
4016#context .util {
4017 float: right;
4018 margin-right: 20px;
4019}
4020
4021.breadcrumb {
4022 list-style: none;
4023 margin: 0;
4024 padding: 0;
4025 position: relative;
4026}
4027.breadcrumb li {
4028 float: left;
4029 padding: 0 20px 0 0;
4030 color: #000;
4031 white-space: nowrap;
4032}
4033.breadcrumb li a {
4034 color: #000;
4035}
4036.breadcrumb li:after {
4037 content: url(../images/breadcrumb.png);
4038 position: relative;
4039 top: 1px;
4040 left: 10px;
4041 width: 5px;
4042 height: 10px;
4043}
4044.breadcrumb li.current {
4045 font-weight: 700;
4046}
4047.breadcrumb li.current:after {
4048 display: none;
4049}
4050
4051/* Sticky Nav overrides */
4052.sticky-menu {
4053 position: fixed;
4054 width: 940px;
4055 height: 0px;
4056 z-index: 51;
4057 top: 12px;
4058}
4059#sticky-header {
4060 display: none;
4061 padding: 0 10px;
4062 position: fixed;
4063 background: #f9f9f9;
4064 top: 0px;
4065 left: 0px;
4066 right: 0px;
4067 height: 45px;
4068 box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
4069 border-bottom: 1px solid #a5c43a;
4070 z-index: 50;
4071}
4072#sticky-header.design {
4073 border-bottom: 1px solid #33b5e5;
4074}
4075#sticky-header.develop {
4076 border-bottom: 1px solid #F80;
4077}
4078#sticky-header.distribute {
4079 border-bottom: 1px solid #9C0;
4080}
4081#sticky-header.about {
4082 border-bottom: 1px solid #9933CC;
4083}
4084#sticky-header > div {
4085 overflow: hidden;
4086 *zoom: 1;
4087 width: 940px;
4088 margin: 0 auto;
4089 clear: both;
4090 padding-top: 9px;
4091}
4092#sticky-header > div .logo {
4093 float: left;
4094 width: 26px;
4095 height: 25px;
4096 background: url(../images/dac_logo.png);
Scott Mainc4264992014-05-20 10:11:17 -07004097 background-image: -webkit-image-set(url(../images/dac_logo.png) 1x, url(../images/dac_logo@2x.png) 2x);
Dirk Doughertyc3921652014-05-13 16:55:26 -07004098 z-index: 52;
4099 position: relative;
4100}
4101#sticky-header > div .top {
4102 float: left;
4103 width: 38px;
4104 height: 38px;
4105 position: relative;
4106 background: url(../images/styles/gototop.png);
4107 z-index: 52;
4108}
4109#sticky-header > div .breadcrumb {
4110 float: left;
4111 padding: 0 0 0 10px;
4112 border-left: 1px solid #d2d2d2;
4113 line-height: 24px;
4114 font-size: 14px;
4115 position: relative;
4116 top: 0px;
4117 z-index: 52;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004118}
4119
4120
Dirk Doughertyc3921652014-05-13 16:55:26 -07004121}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004122
4123
4124
4125
4126
4127
4128
4129/*********** PREVIOUSLY dac-styles.css ***************/
4130
4131
Scott Maine4d8f1b2012-06-21 18:03:05 -07004132#header {
4133 border-bottom:0;
4134}
4135
4136#header .wrap {
4137 max-width:940px;
4138 height:41px;
4139 border-bottom:1px solid;
4140 border-color: #ccc;
4141 position:relative;
4142}
4143
4144.about #header .wrap {
4145 border-color: #9933CC;
4146}
4147
4148.design #header .wrap {
4149 border-color: #33b5e5;
4150}
4151
4152.develop #header .wrap {
4153 border-color: #F80;
4154}
4155
4156.distribute #header .wrap {
4157 border-color: #9C0;
4158}
4159
4160.logo a {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004161 float:left;
4162}
4163
4164#header .logo {
4165 margin-top: -6px;
4166 margin-left: 0px;
4167 margin-bottom:0px;
4168 width: 160px;
4169 padding-right:10px;
4170}
4171
Scott Mainb7b49712014-03-18 05:29:15 -07004172
Dirk Doughertyc3921652014-05-13 16:55:26 -07004173#header-wrap .logo.wear-logo {
Scott Mainb7b49712014-03-18 05:29:15 -07004174 width:220px;
4175 margin:0;
Dirk Doughertyc3921652014-05-13 16:55:26 -07004176 padding:0;
4177 margin-bottom:22px;
Scott Mainb7b49712014-03-18 05:29:15 -07004178}
Dirk Doughertyc3921652014-05-13 16:55:26 -07004179#header-wrap .logo.wear-logo img {
Scott Mainb7b49712014-03-18 05:29:15 -07004180 padding:0 0 0 10px;
4181}
4182
Scott Maine4d8f1b2012-06-21 18:03:05 -07004183.search {
4184 height:25px;
4185 margin-top: -3px;
4186 margin-bottom: 0px;
4187}
4188
4189
4190
4191/* Quicknav */
4192.btn-quicknav {
4193 width:20px;
4194 height:28px;
4195 float:left;
4196 margin-left:6px;
4197 padding-right:10px;
4198 position:relative;
4199 cursor:pointer;
4200 border-right:1px solid #CCC;
4201}
4202
4203.btn-quicknav a {
4204 zoom:1;
4205 position:absolute;
4206 top:13px;
4207 left:5px;
4208 display:block;
4209 text-indent:-9999em;
4210 width:10px;
4211 height:5px;
4212 background:url(../images/quicknav_arrow.png) no-repeat;
4213}
4214
4215.btn-quicknav a.arrow-active {
4216 background-position: 0 -5px;
4217 display:none;
4218}
4219
4220#header-wrap.quicknav a.arrow-inactive {
4221 display:none;
4222}
4223
4224.btn-quicknav.active a.arrow-active {
4225 display:block;
4226}
4227
4228.nav-x li {
4229 display:block;
4230 float:left;
4231 margin-right:45px;
4232 -webkit-transition: all 0.25s linear;
4233 -moz-transition: all 0.25s linear;
4234 -ms-transition: all 0.25s linear;
4235 -o-transition: all 0.25s linear;
4236 transition: all 0.25s linear;
4237}
4238
4239#header-wrap.quicknav .nav-x li {
4240 min-width:160px;
4241 margin-right:20px;
4242}
4243
4244#header-wrap.quicknav li.last {
4245 margin-right:0px;
4246}
4247
4248#quicknav {
Scott Main98a2a712013-07-17 13:15:04 -07004249 float:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004250 clear:both;
smain@google.com20ef3822014-06-13 16:05:28 -07004251 margin-left:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004252 margin-top:-30px;
4253 display:none;
4254 overflow:hidden;
4255}
4256
4257#header-wrap.quicknav #quicknav {
4258
4259}
4260
4261#quicknav ul {
4262 margin:10px 0;
4263 padding:0;
4264}
4265
smain@google.com20ef3822014-06-13 16:05:28 -07004266#quicknav ul li.about {
4267 border-top:1px solid #9933CC;
4268}
4269
Scott Maine4d8f1b2012-06-21 18:03:05 -07004270#quicknav ul li.design {
4271 border-top:1px solid #33b5e5;
4272}
4273
4274#quicknav ul li.develop {
4275 border-top:1px solid #FF8800;
4276}
4277
4278#quicknav ul li.distribute {
4279 border-top:1px solid #99cc00;
4280}
4281
4282#quicknav ul li {
4283 display:block;
4284 float:left;
4285 margin:0 20px 0 0;
4286 min-width:140px;
4287}
4288
4289#quicknav ul li.last {
4290 margin-right:0px;
4291}
4292
4293#quicknav ul li ul li {
4294 float:none;
4295}
4296
4297#quicknav ul li ul li a {
Scott Main9ada2262012-06-23 14:59:36 -07004298 color:#222;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004299}
4300
4301#quicknav ul li li ul,
4302#quicknav ul li li ul li {
4303 margin:0;
4304}
4305
4306#quicknav ul li li ul li:before {
4307 content:"\21B3";
4308}
4309
4310#header-wrap {
4311 -webkit-transition: all 0.25s ease-out;
4312 -moz-transition: all 0.25s ease-out;
4313 -ms-transition: all 0.25s ease-out;
4314 -o-transition: all 0.25s ease-out;
4315 transition: all 0.25s ease-out;
4316
4317}
4318
4319#header-wrap.quicknav {
Dirk Dougherty8f206072012-10-08 13:14:17 -07004320 height:196px;
Scott Main98a2a712013-07-17 13:15:04 -07004321
Scott Maine4d8f1b2012-06-21 18:03:05 -07004322}
4323
4324/* SEARCH AND MORE */
4325.search {
4326 position: absolute;
4327 width: 50px;
4328 height:28px;
4329 display: block;
4330 margin-top:-3px;
4331 margin-bottom:7px;
4332 overflow:hidden;
4333 z-index:100;
4334 right:54px;
4335 -webkit-transition: width 0.4s ease;
4336 -moz-transition: width 0.4s ease;
4337 -o-transition: width 0.4s ease;
4338 transition: width 0.4s ease;
4339}
4340
4341.search #search-btn {
4342 width:50px;
4343 height:28px;
4344 background:url(../images/icon_search.png) no-repeat;
4345 float:left;
4346}
4347
4348.search-inner {
4349 width:245px;
4350}
4351
4352.search:hover, .search.active {
4353 width:245px;
4354}
4355
4356.search .bottom, .search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004357 position: absolute;
4358 background-color: #a2a2a2
Scott Maine4d8f1b2012-06-21 18:03:05 -07004359}
4360
4361.search .bottom {
Scott Mainb7f96372013-02-07 16:56:43 -08004362 width: 214px;
4363 height: 1px;
4364 top: 24px;
4365 left: 0
Scott Maine4d8f1b2012-06-21 18:03:05 -07004366}
4367
Scott Main98a2a712013-07-17 13:15:04 -07004368.search .left, .search .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004369 height: 5px;
4370 width: 1px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004371}
4372
4373.search .left {
4374 top: 22px;
4375 left: 56px;
4376 background-color:#CCC;
4377}
4378
4379.search .right {
4380 top: 22px;
4381 left: 238px;
4382 background-color:#CCC;
4383}
4384
4385.search form {
Scott Mainb7f96372013-02-07 16:56:43 -08004386 margin-top: 2px;
4387 width: 162px;
4388 float:left;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004389}
4390
4391.search form input {
Scott Mainb7f96372013-02-07 16:56:43 -08004392 color: #2f2f2f;
4393 font-size: 0.95em;
Scott Main98a2a712013-07-17 13:15:04 -07004394 width: 178px;
Scott Mainb7f96372013-02-07 16:56:43 -08004395 border: none;
Scott Main98a2a712013-07-17 13:15:04 -07004396 margin-left: 6px;
4397 z-index: 1500;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004398 position: relative;
Scott Mainb7f96372013-02-07 16:56:43 -08004399 background-color: transparent;
4400 border-bottom:1px solid #CCC;
4401 padding:0 0 0 4px;
4402 outline:none;
4403 height:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004404}
4405
4406.search:hover form input {
4407 border-bottom:1px solid #33B5E5;
4408}
4409
4410.search:hover .bottom, .search:hover .left, .search:hover .right {
Scott Mainb7f96372013-02-07 16:56:43 -08004411 background-color: #33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004412}
4413
4414.search:hover #search-btn {
Scott Mainb7f96372013-02-07 16:56:43 -08004415 background-position: 0 -28px
Scott Maine4d8f1b2012-06-21 18:03:05 -07004416}
4417
4418.search form input:focus {
Scott Mainb7f96372013-02-07 16:56:43 -08004419 color: #222;
4420 font-weight: bold
Scott Maine4d8f1b2012-06-21 18:03:05 -07004421}
4422
4423.moremenu {
4424 float: right;
Scott Mainb7f96372013-02-07 16:56:43 -08004425 position: relative;
4426 width: 50px;
4427 height:28px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004428 display: block;
4429 margin-top:-3px;
4430 margin-bottom:7px;
4431 overflow:hidden;
4432 -webkit-transition: width 0.25s ease;
4433 -moz-transition: width 0.25s ease;
4434 -o-transition: width 0.25s ease;
4435 transition: width 0.25s ease;
4436}
4437
4438.moremenu #more-btn {
4439 width:40px;
4440 height:28px;
4441 background:url(../images/icon_more.png) no-repeat;
4442 border-left:1px solid #CCC;
4443 float:left;
4444 cursor:pointer;
4445}
4446
4447.moremenu:hover #more-btn {
4448 background-position:0 -28px;
4449}
4450
4451.morehover {
4452 position:absolute;
4453 right:6px;
4454 top:-9px;
4455 width:40px;
4456 height:35px;
4457 z-index:99;
4458 overflow:hidden;
4459
4460 -webkit-opacity:0;
4461 -moz-opacity:0;
4462 -o-opacity:0;
4463 opacity:0;
4464
4465 -webkit-transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004466 -moz-transform-origin:100% 0%;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004467 -o-transform-origin:100% 0%;
4468 transform-origin:100% 0%;
Scott Main98a2a712013-07-17 13:15:04 -07004469
Scott Maine4d8f1b2012-06-21 18:03:05 -07004470 -webkit-transition-property: -webkit-opacity;
4471 -webkit-transition-duration: .25s;
4472 -webkit-transition-timing-function:ease;
4473
Scott Main0e76e7e2013-03-12 10:24:07 -07004474 -moz-transition-property: -moz-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004475 -moz-transition-duration: .25s;
4476 -moz-transition-timing-function:ease;
4477
Scott Main0e76e7e2013-03-12 10:24:07 -07004478 -o-transition-property: -o-opacity;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004479 -o-transition-duration: .25s;
4480 -o-transition-timing-function:ease;
Scott Main98a2a712013-07-17 13:15:04 -07004481
Scott Main0e76e7e2013-03-12 10:24:07 -07004482 transition-property: opacity;
4483 transition-duration: .25s;
4484 transition-timing-function:ease;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004485}
4486
Scott Maine05e6f92013-01-29 13:34:17 -08004487.morehover:hover,
4488.morehover.hover {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004489 opacity:1;
Scott Main55163c82012-07-18 16:18:25 -07004490 height:385px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004491 width:268px;
4492 -webkit-transition-property:height, -webkit-opacity;
4493}
4494
4495.morehover .top {
4496 width:268px;
4497 height:39px;
4498 background:url(../images/more_top.png) no-repeat;
4499}
4500
4501.morehover .mid {
4502 width:228px;
4503 background:url(../images/more_mid.png) repeat-y;
Scott Main55163c82012-07-18 16:18:25 -07004504 padding:10px 20px 0 20px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004505}
4506
4507.morehover .mid .header {
4508 border-bottom:1px solid #ccc;
4509 font-weight:bold;
4510}
4511
4512.morehover .bottom {
4513 width:268px;
4514 height:6px;
4515 background:url(../images/more_bottom.png) no-repeat;
4516}
4517
4518.morehover ul {
4519 margin:10px 10px 20px 0;
4520}
4521
4522.morehover ul li {
4523 list-style:none;
4524}
4525
4526.morehover ul li.active a,
4527.morehover ul li.active a:hover {
Scott Main9ada2262012-06-23 14:59:36 -07004528 color:#222 !important;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004529}
4530
4531.morehover ul li.active img {
4532 margin-right:4px;
4533}
4534
4535
4536
4537
4538/* MARQUEE */
4539.slideshow-container {
Scott Mainb7f96372013-02-07 16:56:43 -08004540 width:100%;
4541 overflow:hidden;
4542 position:relative;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004543}
4544.slideshow-container .slideshow-prev {
Scott Mainb7f96372013-02-07 16:56:43 -08004545 position:absolute;
4546 top:50%;
4547 left:0px;
4548 margin-top:-36px;
4549 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004550}
4551.slideshow-container .slideshow-next {
Scott Mainb7f96372013-02-07 16:56:43 -08004552 position:absolute;
4553 top:50%;
4554 margin-top:-36px;
4555 z-index:99;
4556 right:0px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004557}
4558
4559.slideshow-container .pagination {
Scott Mainb7f96372013-02-07 16:56:43 -08004560 position:absolute;
4561 bottom:20px;
4562 width:100%;
4563 text-align:center;
4564 z-index:99;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004565}
4566.slideshow-container .pagination ul {
Scott Mainb7f96372013-02-07 16:56:43 -08004567 margin:0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004568}
4569.slideshow-container .pagination ul li{
Scott Mainb7f96372013-02-07 16:56:43 -08004570 display: inline-block;
4571 width:12px;
4572 height:12px;
4573 text-indent:-8000px;
4574 list-style:none;
4575 margin: 0 2px;
4576 border-radius:6px;
4577 background-color:#ccc;
4578 cursor:pointer;
Scott Main98a2a712013-07-17 13:15:04 -07004579 -webkit-transition:color .5s ease-in;
4580 -moz-transition:color .5s ease-in;
4581 -o-transition:color .5s ease-in;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004582 transition:color .5s ease-in;
4583}
4584.slideshow-container .pagination ul li:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004585 background-color:#999;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004586}
4587.slideshow-container .pagination ul li.active {
Scott Mainb7f96372013-02-07 16:56:43 -08004588 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004589}
4590.slideshow-container .pagination ul li.active:hover {
Scott Mainb7f96372013-02-07 16:56:43 -08004591 background-color:#33b5e5;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004592}
4593.slideshow-container ul li {
Scott Mainb7f96372013-02-07 16:56:43 -08004594 display:inline;
4595 list-style:none;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004596}
4597
4598
Dirk Doughertya6913b52014-06-11 17:28:38 -07004599#landing h1 {
4600 margin:17px 0 20px 0 !important;
4601}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004602
4603a.download-sdk {
4604 float:right;
4605 margin:-10px 0;
4606 height:30px;
4607 padding-top:4px;
4608 padding-bottom:0px;
4609}
4610
4611#nav-x {
Dirk Doughertyc3921652014-05-13 16:55:26 -07004612 padding-top: 13px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004613}
4614
Scott Main1d62fa82012-07-17 13:15:12 -07004615#nav-x .wrap {
Dirk Doughertyc3921652014-05-13 16:55:26 -07004616 min-height:32px;
Scott Main1d62fa82012-07-17 13:15:12 -07004617}
4618
Scott Maine4d8f1b2012-06-21 18:03:05 -07004619#nav-x .wrap,
4620#searchResults.wrap {
4621 max-width:940px;
4622 border-bottom:1px solid #CCC;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004623}
4624
Scott Maina214d842012-07-16 17:14:40 -07004625#searchResults.wrap #leftSearchControl {
4626 min-height:700px
4627}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004628.nav-x {
4629 margin-left:0;
4630 margin-bottom:0;
4631}
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642/*
4643 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4644 */
4645
4646.jspContainer {
4647 overflow: hidden;
4648 position: relative;
4649}
4650
4651.jspPane {
4652 position: absolute;
Scott Main2d967c62013-03-11 09:21:07 -07004653 width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004654}
4655
4656.jspVerticalBar {
4657 position: absolute;
4658 top: 0;
4659 right: 0;
4660 width: 4px;
4661 height: 100%;
4662 background: #f5f5f5;
4663}
4664
4665.jspHorizontalBar {
4666 position: absolute;
4667 bottom: 0;
4668 left: 0;
4669 width: 100%;
4670 height: 4px;
4671 background: #f5f5f5;
4672}
4673
4674.jspVerticalBar *,
4675.jspHorizontalBar * {
4676 margin: 0;
4677 padding: 0;
4678}
4679.jspCap {
4680 display: block;
4681}
4682
4683.jspVerticalBar .jspCap {
4684 height: 4px;
4685}
4686
4687.jspHorizontalBar .jspCap {
4688 width: 0;
4689 height: 100%;
4690}
4691
4692.jspHorizontalBar .jspCap {
4693 float: left;
4694}
4695
4696.jspTrack {
4697 position: relative;
4698}
4699
4700.jspDrag {
4701 background: #bbb;
4702 position: relative;
4703 top: 0;
4704 left: 0;
4705 cursor: pointer;
4706}
4707
4708.jspDrag:hover,
4709.jspDrag:active {
4710 border-color: #09c;
4711 background-color: #4cadcb;
4712 background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4713 background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4714 background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4715 background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4716 background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4717 background-image: linear-gradient(left, #5dbcd9, #4cadcb);
Scott Main98a2a712013-07-17 13:15:04 -07004718 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
Scott Maine4d8f1b2012-06-21 18:03:05 -07004719}
4720
4721.jspHorizontalBar .jspTrack,
4722.jspHorizontalBar .jspDrag {
4723 float: left;
4724 height: 100%;
4725}
4726
4727.jspArrow {
4728 background: #999;
4729 text-indent: -20000px;
4730 display: block;
4731 cursor: pointer;
4732}
4733
4734.jspArrow.jspDisabled {
4735 cursor: default;
4736 background: #ccc;
4737}
4738
4739.jspVerticalBar .jspArrow {
4740 height: 16px;
4741}
4742
4743.jspHorizontalBar .jspArrow {
4744 width: 16px;
4745 float: left;
4746 height: 100%;
4747}
4748
4749.jspVerticalBar .jspArrow:focus {
4750 outline: none;
4751}
4752
4753.jspCorner {
4754 float: left;
4755 height: 100%;
4756}
4757
4758/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4759* html .jspCorner {
4760 margin: 0 -3px 0 0;
4761}
4762/******* end of jscrollpane *********/
4763
4764
4765
4766
4767
4768/************ DEVELOP HOMEPAGE ******************/
4769
4770/* Slideshow */
4771.slideshow-develop {
Dirk Doughertya6913b52014-06-11 17:28:38 -07004772 height: 316px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004773 width: 940px;
4774 position: relative;
4775 overflow:hidden;
4776}
4777.slideshow-develop .frame {
4778 width: 940px;
Dirk Doughertya6913b52014-06-11 17:28:38 -07004779 height: 316px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004780}
4781.slideshow-develop img.play {
Scott Main06cb5c72012-07-23 14:34:34 -07004782 max-width:350px;
4783 max-height:240px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004784 margin:20px 0 0 90px;
4785 -webkit-transform: perspective(800px ) rotateY( 35deg );
4786 box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4787 -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4788 -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4789}
4790.slideshow-develop img.play.no-shadow {
4791 box-shadow: none;
4792 -moz-box-shadow: none;
4793 -webkit-box-shadow: none;
4794}
4795.slideshow-develop img.play.no-transform {
4796 -webkit-transform: none;
4797}
4798.slideshow-develop a.slideshow-next {
4799 background: url(../images/arrow-right-develop.png);
4800}
4801.slideshow-develop a.slideshow-prev {
4802 background: url(../images/arrow-left-develop.png);
4803}
4804.slideshow-develop .content-right {
4805 float: left;
4806}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004807.slideshow-develop .content-right h2 {
4808 padding:0;
4809 margin-bottom:10px;
4810 border:none;
Dirk Doughertya6913b52014-06-11 17:28:38 -07004811 font-size:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004812}
4813.slideshow-develop .item {
4814 height: 300px;
4815 width: 940px;
4816}
4817.slideshow-develop .pagination ul li.active {
4818 background-color: #F80;
4819}
4820.slideshow-develop .pagination ul li.active:hover {
4821 background-color: #F80;
4822}
Scott Main0e585702012-10-22 20:30:22 -07004823.slideshow-develop .item hr {
4824 margin:5px 0 10px;
4825}
4826.slideshow-develop .item p {
4827 margin:10px 0;
4828}
4829.slideshow-develop .item p.title-intro {
4830 position:absolute;
4831 margin:0;
4832}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004833
4834/* Feeds */
4835.feed ul {
4836 margin: 0;
4837}
4838.feed .feed-nav {
4839 height: 25px;
4840 border-bottom: 1px solid #CCC;
4841}
4842.feed .feed-nav li {
4843 list-style: none;
4844 float: left;
Scott Main06cb5c72012-07-23 14:34:34 -07004845 height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
Scott Maine4d8f1b2012-06-21 18:03:05 -07004846 margin-right: 25px;
4847 cursor: pointer;
4848}
4849.feed .feed-nav li.active {
4850 color: #000;
4851 border-bottom: 4px solid #F80;
4852}
4853.feed .feed-container {
4854 overflow: hidden;
4855 width: 460px;
4856}
4857.feed .feed-container .feed-frame {
4858 width: 1000px;
4859}
4860.feed .feed-container .feed-frame ul {
4861 float: left;
4862 width:460px;
4863}
4864.feed .feed-container .feed-frame ul ul {
4865 float: none;
4866 margin:10px 0 0 30px;
4867}
4868.feed .feed-container .feed-frame li {
4869 list-style: none;
4870 margin: 20px 0 20px 0;
4871 width: 460px;
4872 height:93px;
4873}
4874.feed .feed-container .feed-frame li.playlist {
4875 height:auto;
4876}
4877.feed .feed-container .feed-frame li.playlist a {
4878 height:93px;
4879 display:block;
4880}
4881.feed .feed-container .feed-frame li.more {
4882 height:20px;
4883 margin:10px 0 5px 5px;
4884}
4885.feed .feed-container .feed-frame li.more a {
4886 height:inherit;
4887}
4888.feed .feed-container .feed-frame li.playlist-video {
4889 list-style: none;
4890 margin: 0;
4891 width: 460px;
4892 height:55px;
4893 font-size:12px;
4894}
4895.feed .feed-container .feed-frame li.playlist-video a {
4896 height:45px;
4897 padding:5px;
4898}
4899.feed .feed-container .feed-frame li.playlist-video h5 {
4900 font-size:12px;
4901 line-height:13px;
4902 margin:0;
4903}
4904.feed .feed-container .feed-frame li.playlist-video p {
4905 margin:5px 0 0;
4906 line-height:15px;
4907}
4908.feed-container .feed-frame div.feed-image {
4909 float: left;
4910 border: 1px solid #999;
4911 margin:0 20px 0 0;
4912 width:122px;
4913 height:92px;
4914 background:url('../images/blog-default.png') no-repeat 0 0;
4915 background-size:180px;
4916}
4917#jd-content .feed .feed-container .feed-frame li img {
4918 float: left;
4919 border: 1px solid #999;
4920 margin:0 20px 0 0;
4921 width:122px;
4922 height:92px;
4923}
4924#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4925 width:inherit;
4926 height:inherit;
4927}
4928
4929.feed .feed-container .feed-frame li a,
4930.feed .feed-container .feed-frame li a:active {
4931 color:#555 !important;
4932}
4933
4934.feed .feed-container .feed-frame li a:hover,
4935.feed .feed-container .feed-frame li a:hover * {
4936 color:#7AA1B0 !important;
4937}
4938
4939/* Video player */
4940#player-wrapper {
4941 display:none;
4942 margin: -1px auto 0;
4943 position: relative;
4944 width: 940px;
4945 height: 0px;
4946}
4947#player-frame {
4948 background: #EFEFEF;
4949 border: 1px solid #CCC;
4950 padding: 0px 207px;
4951 z-index: 10; /* stay above marque, but below search suggestions */
4952 width: 525px;
4953 height: 330px;
4954 position: relative;
4955}
4956
4957
4958
Scott Maine4d8f1b2012-06-21 18:03:05 -07004959/************ DEVELOP TOPIC CONTAINERS ************/
4960
4961.landing-banner,
4962.landing-docs {
Scott Mainafc4db32013-11-20 16:53:12 -08004963 margin:20px 0;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004964}
Scott Mainafc4db32013-11-20 16:53:12 -08004965.landing-banner > div:first-child,
4966.landing-docs > div:first-child,
4967.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004968 margin-left:0;
Scott Main0e71cee2012-08-07 13:59:43 -07004969 min-height:280px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004970}
Scott Mainafc4db32013-11-20 16:53:12 -08004971.landing-banner.short > div {
4972 min-height:50px;
4973}
4974.landing-banner > div:last-child,
4975.landing-docs > div:last-child,
4976.landing-docs > .col-12 {
Scott Maine4d8f1b2012-06-21 18:03:05 -07004977 margin-right:0;
4978}
4979
Scott Mainafc4db32013-11-20 16:53:12 -08004980.landing-banner > div > *:last-child {
4981 margin-bottom:0;
4982}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004983.landing-banner h1 {
Dirk Doughertya6913b52014-06-11 17:28:38 -07004984 margin-top:16px;
4985 padding-bottom:24px;
Scott Maine4d8f1b2012-06-21 18:03:05 -07004986}
Scott Mainafc4db32013-11-20 16:53:12 -08004987.landing-docs,
4988.landing-banner {
4989 clear:both;
Scott Maine6850d22012-10-08 15:59:01 -07004990 overflow:hidden;
Scott Main0e71cee2012-08-07 13:59:43 -07004991}
Scott Maine4d8f1b2012-06-21 18:03:05 -07004992.landing-docs h3 {
4993 font-size:14px;
4994 line-height:21px;
4995 color:#555;
4996 text-transform:uppercase;
4997 border-bottom:1px solid #CCC;
4998 margin:0 0 20px;
4999}
5000.landing-docs a {
5001 color:#333 !important;
5002}
Robert Ly40e90992012-11-28 17:46:17 -08005003
Scott Maine4d8f1b2012-06-21 18:03:05 -07005004.landing-docs a:hover,
5005.landing-docs a:hover * {
5006 color:#7AA1B0 !important
5007}
5008
Robert Ly40e90992012-11-28 17:46:17 -08005009.landing-docs .normal-links a {
5010 color:#258aaf !important;
5011}
5012
Scott Maine4d8f1b2012-06-21 18:03:05 -07005013.plusone {
5014 float:right;
Scott Mainb72b7b82012-07-19 11:03:41 -07005015}
Scott Main9edfa6d2012-08-14 15:04:40 -07005016
5017
5018
Scott Mainafc4db32013-11-20 16:53:12 -08005019.next-docs {
5020 border-top:1px solid #ccc;
5021 margin:40px 0 0;
5022 padding:5px 0 0;
5023 clear:left;
5024 overflow:hidden;
5025}
5026.next-docs div:first-child {
5027 margin-left:0;
5028}
5029.next-docs div:last-child {
5030 margin-right:0;
5031}
5032
5033.next-docs h2 {
5034 font-size:14px;
5035 line-height:21px;
5036 color:#555;
5037 text-transform:uppercase;
5038 border-bottom:none;
Scott Main9ee0fae2014-01-23 10:50:57 -08005039 margin:0 0 1em;
Scott Mainafc4db32013-11-20 16:53:12 -08005040 padding:5px 0 0;
5041}
5042
5043
5044
Scott Main9edfa6d2012-08-14 15:04:40 -07005045/************* HOME/LANDING PAGE *****************/
5046
5047.slideshow-home {
5048 height: 500px;
5049 width: 940px;
5050 border-bottom: 1px solid #CCC;
5051 position: relative;
5052 margin: 0;
5053}
5054.slideshow-home .frame {
5055 width: 940px;
5056 height: 500px;
5057}
5058.slideshow-home .content-left {
5059 float: left;
5060 text-align: center;
5061 vertical-align: center;
5062 margin: 0 0 0 35px;
5063}
5064.slideshow-home .content-right {
5065 margin: 80px 0 0 0;
5066}
5067.slideshow-home .content-right p {
5068 margin-bottom: 10px;
5069}
5070.slideshow-home .content-right p:last-child {
5071 margin-top: 15px;
5072}
5073.slideshow-home .content-right h1 {
5074 padding:0;
5075}
5076.slideshow-home .item {
5077 height: 500px;
5078 width: 940px;
5079}
5080.home-sections {
5081 padding: 30px 20px 20px;
5082 margin: 20px 0;
5083 background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
5084}
5085.home-sections ul {
5086 margin: 0;
5087}
5088.home-sections ul li {
5089 float: left;
5090 display: block;
5091 list-style: none;
5092 width: 170px;
5093 height: 35px;
5094 border: 1px solid #ccc;
5095 background: white;
5096 margin-right: 10px;
5097 border-radius: 1px;
5098 -webkit-border-radius: 1px;
5099 -moz-border-radius: 1px;
5100 box-shadow: 1px 1px 5px #EEE;
5101 -webkit-box-shadow: 1px 1px 5px #EEE;
5102 -moz-box-shadow: 1px 1px 5px #EEE;
5103 background: white;
5104}
5105.home-sections ul li:hover {
5106 background: #F9F9F9;
5107 border: 1px solid #CCC;
5108}
5109.home-sections ul li a,
5110.home-sections ul li a:hover {
5111 font-weight: bold;
5112 margin-top: 8px;
5113 line-height: 18px;
5114 float: left;
5115 width: 100%;
5116 text-align: center;
5117 color: #09c !important;
5118}
5119.home-sections ul li a {
5120 font-weight: bold;
5121 margin-top: 8px;
5122 line-height: 18px;
5123 float: left;
5124 width:100%;
5125 text-align:center;
5126}
5127.home-sections ul li img {
5128 float: left;
5129 margin: -8px 0 0 10px;
5130}
5131.home-sections ul li.last {
5132 margin-right: 0px;
5133}
Scott Mainf5089842012-08-14 16:31:07 -07005134.fullpage #footer {
Scott Main9edfa6d2012-08-14 15:04:40 -07005135 margin-top: -40px;
5136}
Dirk Doughertyc3921652014-05-13 16:55:26 -07005137
5138/************ DISTRIBUTE PAGES ******************/
5139
Dirk Doughertyc3921652014-05-13 16:55:26 -07005140.article-detail #body-content {
5141 padding-top: 10px;
5142}
5143
5144/* A container for grid sets with uppercase h3 and rule */
5145.dynamic-grid h3 {
5146 font-size:14px;
5147 line-height:21px;
5148 color:#555;
5149 text-transform:uppercase;
5150 border-bottom:1px solid #CCC;
5151 padding:8px 0 0 1px;
Dirk Dougherty2e3fb812014-06-01 21:28:20 -07005152 margin-bottom:14px;
Dirk Doughertyc3921652014-05-13 16:55:26 -07005153 clear:both;
5154}
5155
5156.top-right-float {
5157 float: right;
5158}
5159
5160.clearfloat {
5161 float: none;
5162 clear: both;
5163}
5164
5165.border-img {
5166 border: 1px solid #CCC;
5167}
5168
5169.center-img {
5170 margin: auto;
5171 text-align: center;
5172}
5173.center-img img {
5174 margin-bottom: 15px;
5175}
5176
5177.figure img, .border-img {
5178 margin-bottom: 15px;
5179}
5180
5181/************ RESOURCE CARDS ******************/
5182
5183/* Resource cards, 12, 13, 16-col */
5184
5185/* Basic card-styling with shadow */
5186.resource-card {
5187 border-radius: 1px;
5188 box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.12);
5189 background: #fefefe;
5190}
5191
5192/* Styling for background image including tinting and section icons in stacks */
5193.card-bg {
5194 display: block;
5195 position: absolute;
5196 vertical-align: top;
5197 width: 100%;
5198 left: 0;
5199 top: 0;
5200 background-size: cover;
5201 background-repeat: no-repeat;
5202 background-position: center;
5203 background-image: url(../images/resource-card-default-android.jpg);
5204}
5205.card-bg:after {
5206 content: "";
5207 display: block;
5208 height: 100%;
5209 width: 100%;
5210 opacity: 1;
5211 background: rgba(0, 0, 0, 0.2);
5212 -webkit-transition: opacity 0.5s;
5213 -moz-transition: opacity 0.5s;
5214 -o-transition: opacity 0.5s;
5215 transition: opacity 0.5s;
5216}
5217.card-bg .card-section-icon {
5218 position: absolute;
5219 top: 50%;
5220 width: 100%;
5221 margin-top: -35px;
5222 text-align: center;
5223 padding-top: 65px;
5224 z-index: 100;
5225}
5226.card-bg .card-section-icon .icon {
5227 position: absolute;
5228 left: 50%;
5229 margin-left: -28px;
5230 top: 0px;
5231 width: 56px;
5232 height: 56px;
5233 background-repeat: no-repeat;
5234 background-position: 50% 50%;
5235 background-image: url(../images/stack-icon.png);
5236}
5237.card-bg .card-section-icon .section {
5238 text-transform: uppercase;
5239 color: white;
5240 font-size: 14px;
5241}
5242
5243.card-info {
5244 position: absolute;
5245 -webkit-box-sizing: border-box;
5246 -moz-box-sizing: border-box;
5247 box-sizing: border-box;
5248 top: 0;
5249 right: 0;
5250 bottom: 0;
5251 left: 0;
5252 overflow: hidden;
5253 background: #fefefe;
5254 padding: 4px 12px 6px 12px;
5255}
5256.card-info .section {
5257 text-transform: uppercase;
5258 color: #898989;
5259 font-size: 12px;
5260 margin-bottom: 1px;
5261}
5262.card-info .title {
5263 color: #363636;
5264 white-space: nowrap;
5265 overflow: hidden;
5266 text-overflow: ellipsis;
5267 padding-bottom: 5px;
5268 margin-bottom: -2px;
5269 font-size: 16px;
5270}
5271.card-info .description {
5272 overflow: hidden;
5273}
5274.card-info .description .text {
5275 color: #464646;
5276 font: 13px/15px Roboto Condensed;
5277 overflow: hidden;
5278 width:100%;
5279}
5280.card-info .description .util {
5281 position: absolute;
5282 right: 5px;
5283 bottom: 70px; /*-2px;*/
5284 opacity: 0;
5285 -webkit-transition: opacity 0.5s;
5286 -moz-transition: opacity 0.5s;
5287 -o-transition: opacity 0.5s;
5288 transition: opacity 0.5s;
5289}
5290.card-info.empty-desc .title {
5291 white-space: normal;
5292 overflow: visible;
5293}
5294.card-info.empty-desc .description {
5295 display: none;
5296}
5297/* Truncate card summaries at bounding box and
5298 * and apply ellipsis at lower right */
5299.ellipsis {
5300 overflow: hidden;
5301 float:right;
5302 line-height: 15px;
5303 width:100%;
5304}
5305.resource-card-6x6 .card-info .description .teddddddxt {
5306 float:left;
5307 position:relative;
5308 margin-left:0;
5309}
5310.ellipsis:before {
5311 content:"";
5312 float: left;
5313 width: 5px;
5314 height:100%;
5315}
5316.ellipsis > *:first-child.text {
5317 float: right;
5318 width: 100% !important;
5319 margin-left: -5px;
5320}
5321.ellipsis:after {
5322 content: "\02026";
5323 height:17px;
5324 padding-bottom:4px;
5325
5326 box-sizing: content-box;
5327 -webkit-box-sizing: content-box;
5328 -moz-box-sizing: content-box;
5329
5330 float: right; position: relative;
5331 top: -16px; left: 100%;
5332 width: 4em; margin-left: -4em;
5333 padding-right: 5px;
5334
5335 background: -webkit-gradient(linear, left top, right top,
5336 from(rgba(255, 255, 255, 0)), to(white), color-stop(65%, white));
5337 background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5338 background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5339 background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5340 background: linear-gradient(to right, rgba(255, 255, 255, 0), white 65%, white);
5341}
5342.ellipsis:after {
5343 font-style: normal; color: #aaa;
5344 font-size:13px;
5345 text-align: right;
5346}
5347
5348/* Flow Layout */
5349.resource-flow-layout {
5350 display: inline-block;
5351}
5352.resource-flow-layout .resource-card, .resource-flow-layout .resource-card-stack {
5353 float: left;
5354 position: relative;
5355}
5356.resource-flow-layout .resource-card-stack > .resource-card {
5357 margin-right: 0px !important;
5358}
5359.resource-flow-layout:after {
5360 content: ".";
5361 display: block;
Dirk Doughertyca1230c2014-05-14 20:00:03 -07005362 height: 10;
5363 position:relative;
Dirk Doughertyc3921652014-05-13 16:55:26 -07005364 clear: both;
5365 visibility: hidden;
5366}
Dirk Doughertyc3921652014-05-13 16:55:26 -07005367.resource-card:hover {
5368 cursor: pointer;
5369}
5370.resource-card:hover .card-bg:after {
5371 opacity: 0;
5372}
5373/* disabled to make way for fade/ellipsis truncation,
Scott Mainb16376f2014-05-21 20:35:47 -07005374 and the plusone moves up.
Dirk Doughertyc3921652014-05-13 16:55:26 -07005375.resource-card:hover .card-info .description .text {
5376 padding-right: 70px;
5377} */
5378.resource-card:hover .card-info .description .util {
5379 opacity: 1;
5380}
5381
5382/* Carousel Layout */
5383/* Carousel styles for landing page */
5384.resource-carousel-layout {
5385 margin: 20px 0 20px 0;
5386 position: relative;
5387 overflow: hidden;
5388}
5389.resource-carousel-layout .slideshow-prev, .resource-carousel-layout .slideshow-next {
5390 display: none;
5391}
5392.resource-carousel-layout .pagination {
5393 bottom: 0px;
5394}
5395.resource-carousel-layout .frame li {
5396 position: relative;
5397}
5398.resource-carousel-layout .frame li .card-bg {
5399 height: 300px;
5400}
5401.resource-carousel-layout .frame li .card-info {
5402 padding: 7px 15px 0px 15px;
5403 top: 300px;
5404}
5405.resource-carousel-layout .frame li .card-info .section {
5406 font-size: 13px;
5407 margin-bottom: 7px;
5408}
5409.resource-carousel-layout .frame li .card-info .title {
5410 font-size: 25px;
5411 margin-bottom: 2px;
5412}
5413.resource-carousel-layout .frame li .card-info .description {
5414 font-family: 15px/16px Roboto Condensed, sans-serif;
5415}
5416.resource-carousel-layout .frame li .card-info .description .text {
5417 height: 40px;
5418}
5419.resource-carousel-layout .frame li .card-info .description .util {
5420 bottom:97px;
5421 right:4px;
5422}
5423
5424/* Stack Layout */
5425.resource-stack-layout {
5426 display: inline-block;
5427}
5428.resource-stack-layout .resource-card-stack {
5429 float: left;
5430 position: relative;
5431}
5432.resource-stack-layout .resource-card {
5433 margin-bottom: 20px;
5434 display: block;
5435 position: relative;
5436}
5437.resource-stack-layout .section-card-menu > .card-info .section, .resource-stack-layout .section-card > .card-info .title {
5438 /*text-transform: uppercase;*/
5439 color: #898989;
5440 font-size: 17px;
5441 line-height: 24px;
5442 margin-bottom: 6px;
5443}
5444.resource-stack-layout .section-card {
5445 height: 284px;
5446}
5447.resource-stack-layout .section-card > .card-bg {
5448 height: 192px;
5449}
5450.resource-stack-layout .section-card > .card-info {
5451 padding: 4px 12px 6px 12px;
5452 top: 192px;
5453}
5454.resource-stack-layout .section-card > .card-info .section {
5455 display: none;
5456}
5457.resource-stack-layout .section-card > .card-info .title {
5458 font-size: 17px;
5459 border-bottom: 1px solid #959595;
5460 padding-bottom: 0px;
5461}
5462.resource-stack-layout .section-card > .card-info .description {
5463 font-size: 13px;
5464 line-height: 15px;
5465}
5466.resource-stack-layout .section-card > .card-info .description .text {
5467 height: 30px;
5468}
5469.resource-stack-layout .related-card {
5470 height: 90px;
5471}
5472.resource-stack-layout .related-card > .card-bg {
5473 left: 0;
5474 top: 0;
5475 width: 90px;
5476 height: 100%;
5477 position: absolute;
5478 display: block;
5479}
5480.resource-stack-layout .related-card > .card-info {
5481 left: 90px;
5482 padding: 4px 12px 4px 12px;
5483}
5484.resource-stack-layout .related-card > .card-info .section {
5485 font-size: 12px;
5486 margin-bottom: 1px;
5487 display: none;
5488}
5489.resource-stack-layout .related-card > .card-info .title {
5490 font-size: 16px;
5491 margin-bottom: -2px;
5492 white-space: normal;
5493 overflow: visible;
5494 text-overflow: ellipsis;
5495}
5496.resource-stack-layout .related-card > .card-info .title:after {
5497 content: url(../images/link-out.png);
5498 display: block;
5499}
5500.resource-stack-layout .related-card > .card-info .description {
5501 display: none;
5502}
5503.resource-stack-layout .section-card-menu {
5504 /* Flexible height */
5505 display: block;
5506 height: auto;
5507 width: auto;
5508}
5509.resource-stack-layout .section-card-menu .card-bg {
5510 height: 155px;
5511 /* Flexible height */
5512 position: relative;
5513 display: inline-block;
5514 vertical-align: top;
5515}
5516.resource-stack-layout .section-card-menu .card-info {
5517 padding: 4px 12px 0px 12px;
5518 /* Flexible height */
5519 position: relative;
5520 left: auto;
5521 top: auto;
5522 right: auto;
5523 bottom: auto;
5524}
5525.resource-stack-layout .section-card-menu .card-info ul {
5526 list-style: none;
5527 margin: 0;
5528}
5529.resource-stack-layout .section-card-menu .card-info ul li {
5530 list-style: none;
5531 margin: 0;
5532 padding: 15px 0;
5533 border-top-width: 1px;
5534 border-top-style: solid;
5535 border-top-color: #959595;
5536}
5537.resource-stack-layout .section-card-menu .card-info ul li a, .resource-stack-layout .section-card-menu .card-info ul li a:focus, .resource-stack-layout .section-card-menu .card-info ul li a:link, .resource-stack-layout .section-card-menu .card-info ul li a:visited, .resource-stack-layout .section-card-menu .card-info ul li a:active, .resource-stack-layout .section-card-menu .card-info ul li a:hover {
5538 color: #363636 !important;
5539}
5540.resource-stack-layout .section-card-menu .card-info ul li:first-child {
5541 border-top: none;
5542}
5543.resource-stack-layout .section-card-menu .card-info ul li:hover .title:after {
5544 opacity: 1;
5545 -webkit-transition: opacity 0.5s;
5546 -moz-transition: opacity 0.5s;
5547 -o-transition: opacity 0.5s;
5548 transition: opacity 0.5s;
5549}
5550.resource-stack-layout .section-card-menu .card-info ul li:hover .description {
5551 max-height: 30px;
5552 opacity: 1;
5553 -webkit-transition: max-height 0.5s, opacity 1s;
5554 -moz-transition: max-height 0.5s, opacity 1s;
5555 -o-transition: max-height 0.5s, opacity 1s;
5556 transition: max-height 0.5s, opacity 1s;
5557}
5558.resource-stack-layout .section-card-menu .card-info .title {
5559 font-size: 16px;
5560 margin-bottom: -2px;
5561 position: relative;
5562}
5563.resource-stack-layout .section-card-menu .card-info .title:after {
5564 background: url(../images/stack-arrow-right.png);
5565 content: '';
5566 opacity: 0;
5567 -webkit-transition: opacity 0.25s;
5568 -moz-transition: opacity 0.25s;
5569 -o-transition: opacity 0.25s;
5570 transition: opacity 0.25s;
5571 position: absolute;
5572 right: 0px;
5573 top: 3px;
5574 width: 10px;
5575 height: 15px;
5576}
5577.resource-stack-layout .section-card-menu .card-info .title.more {
5578 text-transform: uppercase;
5579 color: #898989;
5580 display: inline-block;
5581}
5582.resource-stack-layout .section-card-menu .card-info .title.more:after {
5583 background: url(../images/stack-arrow-right.png);
5584 content: '';
5585 display: block;
5586 position: absolute;
5587 right: -20px;
5588 top: 3px;
5589 width: 10px;
5590 height: 15px;
5591}
5592.resource-stack-layout .section-card-menu .card-info .description {
5593 max-height: 0px;
5594 opacity: 0;
5595 overflow: hidden;
5596 font-size: 13px;
5597 line-height: 15px;
5598 /* Hover off */
5599 -webkit-transition: max-height 0.5s, opacity 0.5s;
5600 -moz-transition: max-height 0.5s, opacity 0.5s;
5601 -o-transition: max-height 0.5s, opacity 0.5s;
5602 transition: max-height 0.5s, opacity 0.5s;
5603}
5604.resource-stack-layout .section-card-menu .card-info .description .text {
5605 height: 30px;
5606}
5607.resource-stack-layout:after {
5608 content: ".";
5609 display: block;
5610 height: 0;
5611 clear: both;
5612 visibility: hidden;
5613}
5614
5615/* Generate the flow layout styles for a 3-column 16-col span */
5616.resource-flow-layout.col-16 {
5617 margin: 0 -14px 0 0;
5618 width: 954px;
5619}
5620.resource-flow-layout.col-16 .resource-card, .resource-flow-layout.col-16 .resource-card-stack {
5621 margin: 0 14px 20px 0;
5622}
5623.resource-flow-layout.col-16 .resource-card-row-stack-last {
5624 margin-bottom: 0px !important;
5625}
5626.resource-flow-layout.col-16 .resource-card-col-stack-last {
5627 margin-bottom: 0px !important;
5628}
5629.resource-flow-layout.col-16 .resource-card-3x6 {
5630 width: 145px;
5631 height: 284px;
5632}
5633.resource-flow-layout.col-16 .resource-card-3x12 {
5634 width: 145px;
5635 height: 588px;
5636}
5637.resource-flow-layout.col-16 .resource-card-3x18 {
5638 width: 145px;
5639 height: 892px;
5640}
5641.resource-flow-layout.col-16 .resource-card-6x6 {
5642 width: 304px;
5643 height: 284px;
5644}
5645.resource-flow-layout.col-16 .resource-card-6x12 {
5646 width: 304px;
5647 height: 588px;
5648}
5649.resource-flow-layout.col-16 .resource-card-6x18 {
5650 width: 304px;
5651 height: 892px;
5652}
5653.resource-flow-layout.col-16 .resource-card-9x6 {
5654 width: 463px;
5655 height: 284px;
5656}
5657.resource-flow-layout.col-16 .resource-card-9x12 {
5658 width: 463px;
5659 height: 588px;
5660}
5661.resource-flow-layout.col-16 .resource-card-9x18 {
5662 width: 463px;
5663 height: 892px;
5664}
5665.resource-flow-layout.col-16 .resource-card-12x6 {
5666 width: 622px;
5667 height: 284px;
5668}
5669.resource-flow-layout.col-16 .resource-card-12x12 {
5670 width: 622px;
5671 height: 588px;
5672}
5673.resource-flow-layout.col-16 .resource-card-12x18 {
5674 width: 622px;
5675 height: 892px;
5676}
5677.resource-flow-layout.col-16 .resource-card-15x6 {
5678 width: 781px;
5679 height: 284px;
5680}
5681.resource-flow-layout.col-16 .resource-card-15x12 {
5682 width: 781px;
5683 height: 588px;
5684}
5685.resource-flow-layout.col-16 .resource-card-15x18 {
5686 width: 781px;
5687 height: 892px;
5688}
5689.resource-flow-layout.col-16 .resource-card-18x6 {
5690 width: 940px;
5691 height: 284px;
5692}
5693.resource-flow-layout.col-16 .resource-card-18x12 {
5694 width: 940px;
5695 height: 420px;
5696}
5697.resource-flow-layout.col-16 .resource-card-18x18 {
5698 width: 940px;
5699 height: 892px;
5700}
5701.resource-flow-layout.col-16 .resource-card-3x2 {
5702 width: 145px;
5703 height: 95px;
5704}
5705.resource-flow-layout.col-16 .resource-card-3x2x3 {
5706 width: 145px;
5707 height: 90px;
5708 margin-bottom: 7px;
5709}
5710.resource-flow-layout.col-16 .resource-card-3x3 {
5711 width: 145px;
5712 height: 142px;
5713}
5714.resource-flow-layout.col-16 .resource-card-3x3x2 {
5715 width: 145px;
5716 height: 138px;
5717 margin-bottom: 8px;
5718}
5719.resource-flow-layout.col-16 .resource-card-6x2 {
5720 width: 304px;
5721 height: 95px;
5722}
5723.resource-flow-layout.col-16 .resource-card-6x2x3 {
5724 width: 304px;
5725 height: 90px;
5726 margin-bottom: 7px;
5727}
5728.resource-flow-layout.col-16 .resource-card-6x3 {
5729 width: 304px;
5730 height: 142px;
5731}
5732.resource-flow-layout.col-16 .resource-card-6x3x2 {
5733 width: 304px;
5734 height: 138px;
5735 margin-bottom: 8px;
5736}
5737.resource-flow-layout.col-16 .resource-card-9x2 {
5738 width: 463px;
5739 height: 95px;
5740}
5741.resource-flow-layout.col-16 .resource-card-9x2x3 {
5742 width: 463px;
5743 height: 90px;
5744 margin-bottom: 7px;
5745}
5746.resource-flow-layout.col-16 .resource-card-9x3 {
5747 width: 463px;
5748 height: 142px;
5749}
5750.resource-flow-layout.col-16 .resource-card-9x3x2 {
5751 width: 463px;
5752 height: 138px;
5753 margin-bottom: 8px;
5754}
5755.resource-flow-layout.col-16 .resource-card-12x2 {
5756 width: 622px;
5757 height: 95px;
5758}
5759.resource-flow-layout.col-16 .resource-card-12x2x3 {
5760 width: 622px;
5761 height: 90px;
5762 margin-bottom: 7px;
5763}
5764.resource-flow-layout.col-16 .resource-card-12x3 {
5765 width: 622px;
5766 height: 142px;
5767}
5768.resource-flow-layout.col-16 .resource-card-12x3x2 {
5769 width: 622px;
5770 height: 138px;
5771 margin-bottom: 8px;
5772}
5773.resource-flow-layout.col-16 .resource-card-15x2 {
5774 width: 781px;
5775 height: 95px;
5776}
5777.resource-flow-layout.col-16 .resource-card-15x2x3 {
5778 width: 781px;
5779 height: 90px;
5780 margin-bottom: 7px;
5781}
5782.resource-flow-layout.col-16 .resource-card-15x3 {
5783 width: 781px;
5784 height: 142px;
5785}
5786.resource-flow-layout.col-16 .resource-card-15x3x2 {
5787 width: 781px;
5788 height: 138px;
5789 margin-bottom: 8px;
5790}
5791.resource-flow-layout.col-16 .resource-card-18x2 {
5792 width: 940px;
5793 height: 95px;
5794}
5795.resource-flow-layout.col-16 .resource-card-18x2x3 {
5796 width: 940px;
5797 height: 90px;
5798 margin-bottom: 7px;
5799}
5800.resource-flow-layout.col-16 .resource-card-18x3 {
5801 width: 940px;
5802 height: 142px;
5803}
5804.resource-flow-layout.col-16 .resource-card-18x3x2 {
5805 width: 940px;
5806 height: 138px;
5807 margin-bottom: 8px;
5808}
5809
5810/* Generate the flow layout styles for a 3-column 16-col span */
5811.resource-flow-layout.col-12 {
5812 margin: 0 -14px 0 0;
5813 width: 714px;
5814}
5815
5816.resource-flow-layout.col-12 .resource-card, .resource-flow-layout.col-12 .resource-card-stack {
5817 margin: 0 14px 20px 0;
5818}
5819.resource-flow-layout.col-12 .resource-card-row-stack-last {
5820 margin-bottom: 0px !important;
5821}
5822.resource-flow-layout.col-12 .resource-card-col-stack-last {
5823 margin-bottom: 0px !important;
5824}
5825.resource-flow-layout.col-12 .resource-card-3x6 {
5826 width: 105px;
5827 height: 284px;
5828}
5829.resource-flow-layout.col-12 .resource-card-3x12 {
5830 width: 105px;
5831 height: 588px;
5832}
5833.resource-flow-layout.col-12 .resource-card-3x18 {
5834 width: 105px;
5835 height: 892px;
5836}
5837.resource-flow-layout.col-12 .resource-card-6x6 {
5838 width: 224px;
5839 height: 284px;
5840}
5841.resource-flow-layout.col-12 .resource-card-6x12 {
5842 width: 224px;
5843 height: 588px;
5844}
5845.resource-flow-layout.col-12 .resource-card-6x18 {
5846 width: 224px;
5847 height: 892px;
5848}
5849.resource-flow-layout.col-12 .resource-card-9x6 {
5850 width: 343px;
5851 height: 284px;
5852}
5853.resource-flow-layout.col-12 .resource-card-9x12 {
5854 width: 343px;
5855 height: 588px;
5856}
5857.resource-flow-layout.col-12 .resource-card-9x18 {
5858 width: 343px;
5859 height: 892px;
5860}
5861.resource-flow-layout.col-12 .resource-card-12x6 {
5862 width: 462px;
5863 height: 284px;
5864}
5865.resource-flow-layout.col-12 .resource-card-12x12 {
5866 width: 462px;
5867 height: 588px;
5868}
5869.resource-flow-layout.col-12 .resource-card-12x18 {
5870 width: 462px;
5871 height: 892px;
5872}
5873.resource-flow-layout.col-12 .resource-card-15x6 {
5874 width: 581px;
5875 height: 284px;
5876}
5877.resource-flow-layout.col-12 .resource-card-15x12 {
5878 width: 581px;
5879 height: 588px;
5880}
5881.resource-flow-layout.col-12 .resource-card-15x18 {
5882 width: 581px;
5883 height: 892px;
5884}
5885.resource-flow-layout.col-12 .resource-card-18x6 {
5886 width: 700px;
5887 height: 284px;
5888}
5889.resource-flow-layout.col-12 .resource-card-18x12 {
5890 width: 700px;
5891 height: 420px;
5892}
5893.resource-flow-layout.col-12 .resource-card-18x18 {
5894 width: 700px;
5895 height: 892px;
5896}
5897.resource-flow-layout.col-12 .resource-card-3x2 {
5898 width: 105px;
5899 height: 95px;
5900}
5901.resource-flow-layout.col-12 .resource-card-3x2x3 {
5902 width: 105px;
5903 height: 90px;
5904 margin-bottom: 7px;
5905}
5906.resource-flow-layout.col-12 .resource-card-3x3 {
5907 width: 105px;
5908 height: 142px;
5909}
5910.resource-flow-layout.col-12 .resource-card-3x3x2 {
5911 width: 105px;
5912 height: 138px;
5913 margin-bottom: 8px;
5914}
5915.resource-flow-layout.col-12 .resource-card-6x2 {
5916 width: 224px;
5917 height: 95px;
5918}
5919.resource-flow-layout.col-12 .resource-card-6x2x3 {
5920 width: 224px;
5921 height: 90px;
5922 margin-bottom: 7px;
5923}
5924.resource-flow-layout.col-12 .resource-card-6x3 {
5925 width: 224px;
5926 height: 142px;
5927}
5928.resource-flow-layout.col-12 .resource-card-6x3x2 {
5929 width: 224px;
5930 height: 138px;
5931 margin-bottom: 8px;
5932}
5933.resource-flow-layout.col-12 .resource-card-9x2 {
5934 width: 343px;
5935 height: 95px;
5936}
5937.resource-flow-layout.col-12 .resource-card-9x2x3 {
5938 width: 343px;
5939 height: 90px;
5940 margin-bottom: 7px;
5941}
5942.resource-flow-layout.col-12 .resource-card-9x3 {
5943 width: 343px;
5944 height: 142px;
5945}
5946.resource-flow-layout.col-12 .resource-card-9x3x2 {
5947 width: 343px;
5948 height: 138px;
5949 margin-bottom: 8px;
5950}
5951.resource-flow-layout.col-12 .resource-card-12x2 {
5952 width: 462px;
5953 height: 95px;
5954}
5955.resource-flow-layout.col-12 .resource-card-12x2x3 {
5956 width: 462px;
5957 height: 90px;
5958 margin-bottom: 7px;
5959}
5960.resource-flow-layout.col-12 .resource-card-12x3 {
5961 width: 462px;
5962 height: 142px;
5963}
5964.resource-flow-layout.col-12 .resource-card-12x3x2 {
5965 width: 462px;
5966 height: 138px;
5967 margin-bottom: 8px;
5968}
5969.resource-flow-layout.col-12 .resource-card-15x2 {
5970 width: 581px;
5971 height: 95px;
5972}
5973.resource-flow-layout.col-12 .resource-card-15x2x3 {
5974 width: 581px;
5975 height: 90px;
5976 margin-bottom: 7px;
5977}
5978.resource-flow-layout.col-12 .resource-card-15x3 {
5979 width: 581px;
5980 height: 142px;
5981}
5982.resource-flow-layout.col-12 .resource-card-15x3x2 {
5983 width: 581px;
5984 height: 138px;
5985 margin-bottom: 8px;
5986}
5987.resource-flow-layout.col-12 .resource-card-18x2 {
5988 width: 700px;
5989 height: 95px;
5990}
5991.resource-flow-layout.col-12 .resource-card-18x2x3 {
5992 width: 700px;
5993 height: 90px;
5994 margin-bottom: 7px;
5995}
5996.resource-flow-layout.col-12 .resource-card-18x3 {
5997 width: 700px;
5998 height: 142px;
5999}
6000.resource-flow-layout.col-12 .resource-card-18x3x2 {
6001 width: 700px;
6002 height: 138px;
6003 margin-bottom: 8px;
6004}
6005
6006/* Generate the flow layout styles for a 3-column 13-col span */
6007
6008.resource-flow-layout.col-13 {
6009 margin: 0 -14px 0 0;
6010 width: 774px;
6011}
6012.resource-flow-layout.col-13 .resource-card, .resource-flow-layout.col-13 .resource-card-stack {
6013 margin: 0 14px 20px 0;
6014}
6015.resource-flow-layout.col-13 .resource-card-row-stack-last {
6016 margin-bottom: 0px !important;
6017}
6018.resource-flow-layout.col-13 .resource-card-col-stack-last {
6019 margin-bottom: 0px !important;
6020}
6021.resource-flow-layout.col-13 .resource-card-3x6 {
6022 width: 115px;
6023 height: 284px;
6024}
6025.resource-flow-layout.col-13 .resource-card-3x12 {
6026 width: 115px;
6027 height: 588px;
6028}
6029.resource-flow-layout.col-13 .resource-card-3x18 {
6030 width: 115px;
6031 height: 892px;
6032}
6033.resource-flow-layout.col-13 .resource-card-6x6 {
6034 width: 244px;
6035 height: 284px;
6036}
6037.resource-flow-layout.col-13 .resource-card-6x12 {
6038 width: 244px;
6039 height: 588px;
6040}
6041.resource-flow-layout.col-13 .resource-card-6x18 {
6042 width: 244px;
6043 height: 892px;
6044}
6045.resource-flow-layout.col-13 .resource-card-9x6 {
6046 width: 373px;
6047 height: 284px;
6048}
6049.resource-flow-layout.col-13 .resource-card-9x12 {
6050 width: 373px;
6051 height: 588px;
6052}
6053.resource-flow-layout.col-13 .resource-card-9x18 {
6054 width: 373px;
6055 height: 892px;
6056}
6057.resource-flow-layout.col-13 .resource-card-12x6 {
6058 width: 502px;
6059 height: 284px;
6060}
6061.resource-flow-layout.col-13 .resource-card-12x12 {
6062 width: 502px;
6063 height: 588px;
6064}
6065.resource-flow-layout.col-13 .resource-card-12x18 {
6066 width: 502px;
6067 height: 892px;
6068}
6069.resource-flow-layout.col-13 .resource-card-15x6 {
6070 width: 631px;
6071 height: 284px;
6072}
6073.resource-flow-layout.col-13 .resource-card-15x12 {
6074 width: 631px;
6075 height: 588px;
6076}
6077.resource-flow-layout.col-13 .resource-card-15x18 {
6078 width: 631px;
6079 height: 892px;
6080}
6081.resource-flow-layout.col-13 .resource-card-18x6 {
6082 width: 760px;
6083 height: 284px;
6084}
6085.resource-flow-layout.col-13 .resource-card-18x12 {
6086 width: 760px;
6087 height: 420px;
6088}
6089.resource-flow-layout.col-13 .resource-card-18x18 {
6090 width: 760px;
6091 height: 892px;
6092}
6093.resource-flow-layout.col-13 .resource-card-3x2 {
6094 width: 115px;
6095 height: 95px;
6096}
6097.resource-flow-layout.col-13 .resource-card-3x2x3 {
6098 width: 115px;
6099 height: 90px;
6100 margin-bottom: 7px;
6101}
6102.resource-flow-layout.col-13 .resource-card-3x3 {
6103 width: 115px;
6104 height: 142px;
6105}
6106.resource-flow-layout.col-13 .resource-card-3x3x2 {
6107 width: 115px;
6108 height: 138px;
6109 margin-bottom: 8px;
6110}
6111.resource-flow-layout.col-13 .resource-card-6x2 {
6112 width: 244px;
6113 height: 95px;
6114}
6115.resource-flow-layout.col-13 .resource-card-6x2x3 {
6116 width: 244px;
6117 height: 90px;
6118 margin-bottom: 7px;
6119}
6120.resource-flow-layout.col-13 .resource-card-6x3 {
6121 width: 244px;
6122 height: 142px;
6123}
6124.resource-flow-layout.col-13 .resource-card-6x3x2 {
6125 width: 244px;
6126 height: 138px;
6127 margin-bottom: 8px;
6128}
6129.resource-flow-layout.col-13 .resource-card-9x2 {
6130 width: 373px;
6131 height: 95px;
6132}
6133.resource-flow-layout.col-13 .resource-card-9x2x3 {
6134 width: 373px;
6135 height: 90px;
6136 margin-bottom: 7px;
6137}
6138.resource-flow-layout.col-13 .resource-card-9x3 {
6139 width: 373px;
6140 height: 142px;
6141}
6142.resource-flow-layout.col-13 .resource-card-9x3x2 {
6143 width: 373px;
6144 height: 138px;
6145 margin-bottom: 8px;
6146}
6147.resource-flow-layout.col-13 .resource-card-12x2 {
6148 width: 502px;
6149 height: 95px;
6150}
6151.resource-flow-layout.col-13 .resource-card-12x2x3 {
6152 width: 502px;
6153 height: 90px;
6154 margin-bottom: 7px;
6155}
6156.resource-flow-layout.col-13 .resource-card-12x3 {
6157 width: 502px;
6158 height: 142px;
6159}
6160.resource-flow-layout.col-13 .resource-card-12x3x2 {
6161 width: 502px;
6162 height: 138px;
6163 margin-bottom: 8px;
6164}
6165.resource-flow-layout.col-13 .resource-card-15x2 {
6166 width: 631px;
6167 height: 95px;
6168}
6169.resource-flow-layout.col-13 .resource-card-15x2x3 {
6170 width: 631px;
6171 height: 90px;
6172 margin-bottom: 7px;
6173}
6174.resource-flow-layout.col-13 .resource-card-15x3 {
6175 width: 631px;
6176 height: 142px;
6177}
6178.resource-flow-layout.col-13 .resource-card-15x3x2 {
6179 width: 631px;
6180 height: 138px;
6181 margin-bottom: 8px;
6182}
6183.resource-flow-layout.col-13 .resource-card-18x2 {
6184 width: 760px;
6185 height: 95px;
6186}
6187.resource-flow-layout.col-13 .resource-card-18x2x3 {
6188 width: 760px;
6189 height: 90px;
6190 margin-bottom: 7px;
6191}
6192.resource-flow-layout.col-13 .resource-card-18x3 {
6193 width: 760px;
6194 height: 142px;
6195}
6196.resource-flow-layout.col-13 .resource-card-18x3x2 {
6197 width: 760px;
6198 height: 138px;
6199 margin-bottom: 8px;
6200}
6201
6202/*
6203 The following are styles for cards in the flowlayout above, styled by the number of rows they span
6204*/
6205/* Single row items, might be simpler to just apply a class */
6206.resource-card-3x6 > .card-bg, .resource-card-6x6 > .card-bg, .resource-card-9x6 > .card-bg, .resource-card-12x6 > .card-bg, .resource-card-15x6 > .card-bg, .resource-card-18x6 > .card-bg {
6207 height: 192px;
6208}
6209.resource-card-3x6 > .card-info, .resource-card-6x6 > .card-info, .resource-card-9x6 > .card-info, .resource-card-12x6 > .card-info, .resource-card-15x6 > .card-info, .resource-card-18x6 > .card-info {
6210 padding: 4px 12px 6px 12px;
6211 top: 192px;
6212}
6213.resource-card-3x6 > .card-info .section, .resource-card-6x6 > .card-info .section, .resource-card-9x6 > .card-info .section, .resource-card-12x6 > .card-info .section, .resource-card-15x6 > .card-info .section, .resource-card-18x6 > .card-info .section {
6214 font-size: 12px;
6215 margin-bottom: 1px;
6216}
6217.resource-card-3x6 > .card-info .title, .resource-card-6x6 > .card-info .title, .resource-card-9x6 > .card-info .title, .resource-card-12x6 > .card-info .title, .resource-card-15x6 > .card-info .title, .resource-card-18x6 > .card-info .title {
6218 font-size: 16px;
6219 margin-bottom: -2px;
6220}
6221.resource-card-3x6 > .card-info .description, .resource-card-6x6 > .card-info .description, .resource-card-9x6 > .card-info .description, .resource-card-12x6 > .card-info .description, .resource-card-15x6 > .card-info .description, .resource-card-18x6 > .card-info .description {
6222 font-size: 13px;
6223 line-height: 15px;
6224}
6225.resource-card-3x6 > .card-info .description .text, .resource-card-6x6 > .card-info .description .text, .resource-card-9x6 > .card-info .description .text, .resource-card-12x6 > .card-info .description .text, .resource-card-15x6 > .card-info .description .text, .resource-card-18x6 > .card-info .description .text {
6226 height: 30px;
6227}
6228
6229/* Double row items */
6230.resource-card-3x12 > .card-bg, .resource-card-6x12 > .card-bg, .resource-card-9x12 > .card-bg, .resource-card-12x12 > .card-bg, .resource-card-15x12 > .card-bg, .resource-card-18x12 > .card-bg {
6231 height: 320px;
6232}
6233.resource-card-3x12 > .card-info, .resource-card-6x12 > .card-info, .resource-card-9x12 > .card-info, .resource-card-12x12 > .card-info, .resource-card-15x12 > .card-info, .resource-card-18x12 > .card-info {
6234 padding: 4px 12px 6px 12px;
6235 top: 320px;
6236}
6237.resource-card-3x12 > .card-info .section, .resource-card-6x12 > .card-info .section, .resource-card-9x12 > .card-info .section, .resource-card-12x12 > .card-info .section, .resource-card-15x12 > .card-info .section, .resource-card-18x12 > .card-info .section {
6238 font-size: 12px;
6239 margin-bottom: 1px;
6240}
6241.resource-card-3x12 > .card-info .title, .resource-card-6x12 > .card-info .title, .resource-card-9x12 > .card-info .title, .resource-card-12x12 > .card-info .title, .resource-card-15x12 > .card-info .title, .resource-card-18x12 > .card-info .title {
6242 font-size: 16px;
6243 margin-bottom: -2px;
6244 white-space: normal;
6245}
6246.resource-card-3x12 > .card-info .description, .resource-card-6x12 > .card-info .description, .resource-card-9x12 > .card-info .description, .resource-card-12x12 > .card-info .description, .resource-card-15x12 > .card-info .description, .resource-card-18x12 > .card-info .description {
6247 font-size: 13px;
6248 line-height: 15px;
6249}
6250
6251/* 1/3 row items */
6252.resource-card-3x2 > .card-bg, .resource-card-6x2 > .card-bg, .resource-card-9x2 > .card-bg, .resource-card-12x2 > .card-bg, .resource-card-15x2 > .card-bg, .resource-card-18x2 > .card-bg {
6253 left: 0;
6254 top: 0;
6255 width: 90px;
6256 height: 100%;
6257 position: absolute;
6258 display: block;
6259}
6260.resource-card-3x2 > .card-info, .resource-card-6x2 > .card-info, .resource-card-9x2 > .card-info, .resource-card-12x2 > .card-info, .resource-card-15x2 > .card-info, .resource-card-18x2 > .card-info {
6261 left: 90px;
6262 padding: 4px 12px 4px 12px;
6263 height: 80px;
6264 overflow: hidden;
6265}
6266.resource-card-3x2 > .card-info .section, .resource-card-6x2 > .card-info .section, .resource-card-6x3 > .card-info .section, .resource-card-9x2 > .card-info .section, .resource-card-12x2 > .card-info .section, .resource-card-15x2 > .card-info .section, .resource-card-18x2 > .card-info .section {
6267 font-size: 12px;
6268 margin-bottom: 1px;
6269 /* display: none; */
6270}
6271.resource-card-3x2 > .card-info .title, .resource-card-6x2 > .card-info .title, .resource-card-9x2 > .card-info .title, .resource-card-12x2 > .card-info .title, .resource-card-15x2 > .card-info .title, .resource-card-18x2 > .card-info .title {
6272 font-size: 16px;
6273 margin-bottom: -2px;
6274 white-space: normal;
6275 overflow: visible;
6276 text-overflow: ellipsis;
6277}
6278.resource-card-3x2 > .card-info .title:after, .resource-card-6x2 > .card-info .title:after, .resource-card-9x2 > .card-info .title:after, .resource-card-12x2 > .card-info .title:after, .resource-card-15x2 > .card-info .title:after, .resource-card-18x2 > .card-info .title:after {
6279 /* content: url(../images/link-out.png); */
6280 display: block;
6281}
6282.resource-card-3x2 > .card-info .description, .resource-card-6x2 > .card-info .description, .resource-card-9x2 > .card-info .description, .resource-card-12x2 > .card-info .description, .resource-card-15x2 > .card-info .description, .resource-card-18x2 > .card-info .description {
6283 display: none;
6284}
6285
6286/* 1/2 row items */
6287.resource-card-3x3 > .card-bg, .resource-card-6x3 > .card-bg, .resource-card-9x3 > .card-bg, .resource-card-12x3 > .card-bg, .resource-card-15x3 > .card-bg, .resource-card-18x3 > .card-bg {
6288 left: 0;
6289 top: 0;
6290 width: 90px;
6291 height: 100%;
6292 position: absolute;
6293 display: block;
6294}
6295.resource-card-3x3 > .card-info, .resource-card-6x3 > .card-info, .resource-card-9x3 > .card-info, .resource-card-12x3 > .card-info, .resource-card-15x3 > .card-info, .resource-card-18x3 > .card-info {
6296 left: 90px;
6297 padding: 4px 12px 0px 12px;
6298}
6299.resource-card-3x3 > .card-info .section, .resource-card-6x3 > .card-info .section, .resource-card-9x3 > .card-info .section, .resource-card-12x3 > .card-info .section, .resource-card-15x3 > .card-info .section, .resource-card-18x3 > .card-info .section {
6300 font-size: 12px;
6301 margin-bottom: 1px;
6302 display: none;
6303}
6304.resource-card-3x3 > .card-info .title, .resource-card-6x3 > .card-info .title, .resource-card-9x3 > .card-info .title, .resource-card-12x3 > .card-info .title, .resource-card-15x3 > .card-info .title, .resource-card-18x3 > .card-info .title {
6305 font-size: 16px;
6306 margin-bottom: -2px;
6307 white-space: normal;
6308 overflow: visible;
6309}
6310.resource-card-3x3 > .card-info .description .text, .resource-card-6x3 > .card-info .description .text, .resource-card-9x3 > .card-info .description .text, .resource-card-12x3 > .card-info .description .text, .resource-card-15x3 > .card-info .description .text, .resource-card-18x3 > .card-info .description .text {
6311 font-size: 12px;
6312 line-height: 15px;
6313 padding-right: 0px !important;
6314 height: 80px;
6315}
6316.resource-card-3x3 > .card-info .description .util, .resource-card-6x3 > .card-info .description .util, .resource-card-9x3 > .card-info .description .util, .resource-card-12x3 > .card-info .description .util, .resource-card-15x3 > .card-info .description .util, .resource-card-18x3 > .card-info .description .util {
6317 display: none;
6318}
6319/* placement of plusone */
6320.resource-card-6x12 > .card-info .description .util, .resource-card-9x12 > .card-info .description .util, .resource-card-12x12 > .card-info .description .util, .resource-card-15x12 > .card-info .description .util {
6321 bottom:2px;
6322}
6323.resource-card-18x12 > .card-info .description .util {
6324 bottom:2px;
6325}
6326/* Overrides for col-16 6x6 cards linking to local content on landing pages.
6327 Suppresses "section" and puts the title above a hairline rule. */
6328.landing .card-info .section, .resource-flow-layout.col-16.landing .resource-card-9x6 .card-info .section {
6329 display:none;
6330}
6331.landing .card-info .title {
6332 color: #898989;
6333 font-size: 17px;
6334 line-height: 24px;
6335 margin-bottom: 6px;
6336 border-bottom: 1px solid #959595;
6337 padding-bottom: 0px;
6338}
6339.landing .card-info .description {
6340 font-size: 13px;
6341 line-height: 15px;
6342}
6343.landing .card-info .description .text {
6344height:30px;
6345}
6346.landing .resource-card-6x6 > .card-info .description .util, .landing .resource-card-9x6 > .card-info .description .util {
6347 bottom:2px;
6348}
6349/*
6350 Generate a resource stack layout for a 3 column widget spanning 16 grid cols
6351*/
6352.resource-stack-layout.col-16 {
6353 margin: 0 -14px 0 0;
6354 width: 954px;
6355}
6356.resource-stack-layout.col-16 .resource-card-stack {
6357 margin: 0 14px 0 0;
6358 width: 304px;
6359}
6360
6361/* Example of card menu tinting */
6362.resource-widget[data-section=distribute\/tools] .section-card-menu
6363.card-bg:after {
6364 background: rgba(126, 55, 148, 0.4) !important;
6365}
6366.resource-widget[data-section=distribute\/tools] .section-card-menu
6367.card-section-icon .icon {
6368 background-color: #7e3794 !important;
6369}
6370.resource-widget[data-section=distribute\/tools] .section-card-menu
6371.card-info ul li {
6372 border-top-color: #7e3794 !important;
6373}
6374
6375/* tinting for stacks */
6376
6377div.jd-descr > .resource-widget[data-section=distribute\/tools]
6378.section-card-menu .card-info ul li {
6379 border-top-color: #7e3794 !important;
Dirk Doughertya6913b52014-06-11 17:28:38 -07006380}