OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* | 6 /* |
7 * Site-wide styles. | 7 * Site-wide styles. |
8 */ | 8 */ |
9 | 9 |
10 .hidden { | 10 .hidden { |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 margin-left: 2em; | 657 margin-left: 2em; |
658 } | 658 } |
659 | 659 |
660 div.summary .subdued { | 660 div.summary .subdued { |
661 color: #7594B8; | 661 color: #7594B8; |
662 } | 662 } |
663 | 663 |
664 .optional { | 664 .optional { |
665 color: #7D7D7D; | 665 color: #7D7D7D; |
666 } | 666 } |
| 667 |
| 668 /* |
| 669 * Samples. |
| 670 */ |
| 671 |
| 672 #samples-controls { |
| 673 margin: 10px 0; |
| 674 background: #EEE; |
| 675 padding: 10px; |
| 676 border-radius: 10px; |
| 677 } |
| 678 |
| 679 #samples-controls #search_input { |
| 680 width: 30em; |
| 681 } |
| 682 |
| 683 #samples-controls .label { |
| 684 font-weight: bold; |
| 685 } |
| 686 |
| 687 #samples-controls td { |
| 688 border: none; |
| 689 } |
| 690 |
| 691 #samples-controls td.label { |
| 692 min-width: 150px; |
| 693 text-align: right; |
| 694 vertical-align: top; |
| 695 padding-right: 10px; |
| 696 } |
| 697 |
| 698 #samples-controls .sample { |
| 699 position: relative; |
| 700 padding-left: 80px; |
| 701 } |
| 702 |
| 703 #samples-controls img.icon { |
| 704 position: absolute; |
| 705 width: 64px; |
| 706 height: 64px; |
| 707 left: 0; |
| 708 top: 40px; |
| 709 } |
OLD | NEW |