Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: polymer_0.5.4/bower_components/core-doc-viewer/elements/core-doc-page.css

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * @license 2 * @license
3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt 4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt
5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt 5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt
6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt 6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt
7 * Code distributed by Google as part of the polymer project is also 7 * Code distributed by Google as part of the polymer project is also
8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt 8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt
9 */ 9 */
10 10
11 :host { 11 :host {
12 display: block; 12 display: block;
13 font-family: Roboto;
13 } 14 }
14 15
15 #info > * { 16 #info > * {
16 margin-right: 20px; 17 margin-right: 20px;
17 } 18 }
18 19
19 core-icon { 20 core-icon {
20 margin-right: 5px; 21 margin-right: 5px;
21 } 22 }
22 23
23 .main { 24 .main {
24 padding: 0 72px; 25 padding: 0 72px;
25 max-width: 832px; 26 max-width: 832px;
26 margin: 0 auto; 27 margin: 0 auto;
27 } 28 }
28 29
29 marked-element { 30 marked-element {
30 display: block; 31 display: block;
31 } 32 }
32 33
33 h1 { 34 h1 {
34 color: #E91E63; 35 color: #E91E63;
35 font-size: 52px; 36 font-size: 52px;
36 line-height: 60px; 37 line-height: 60px;
37 font-weight: inherit; 38 font-weight: 300;
39 }
40
41 h3 {
42 font-weight: 500;
38 } 43 }
39 44
40 .box { 45 .box {
41 margin-bottom: 40px; 46 margin-bottom: 40px;
42 } 47 }
43 .box:not(.top) .details { 48 .box:not(.top) .details {
44 padding: 16px; 49 padding: 16px;
45 } 50 }
46 .box:not(.top) .details .params { 51 .box:not(.top) .details .params {
47 margin-top: 40px; 52 margin-top: 40px;
(...skipping 13 matching lines...) Expand all
61 background-color: transparent; 66 background-color: transparent;
62 margin: initial; 67 margin: initial;
63 font-size: 12px; 68 font-size: 12px;
64 } 69 }
65 70
66 .box code { 71 .box code {
67 color: currentcolor; 72 color: currentcolor;
68 font-weight: 500; 73 font-weight: 500;
69 } 74 }
70 75
76 .inheritance {
77 border-bottom: 1px solid #eee;
78 border-top: 1px solid #eee;
79 padding: 16px 0;
80 }
81
82 .inheritance h3 {
83 margin: 0 10px 0 0;
84 }
85
86 .inheritance .top > * {
87 margin-right: 7px;
88 }
89
90 .top b,
91 .top strong {
92 text-transform: uppercase;
93 font-size: 14px;
94 }
95
71 .top pre { 96 .top pre {
72 background-color: rgb(250, 250, 250); 97 background-color: rgb(250, 250, 250);
73 padding: 16px; 98 padding: 16px;
74 } 99 }
75 100
76 pre { 101 pre {
77 max-width: 832px; 102 max-width: 832px;
78 white-space: pre-wrap; 103 white-space: pre-wrap;
79 overflow: hidden; 104 overflow: hidden;
80 border: none; 105 border: none;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 } 163 }
139 pre .atn,pre .attribute-name,.prettyprint .atn,.prettyprint .attribute-name { 164 pre .atn,pre .attribute-name,.prettyprint .atn,.prettyprint .attribute-name {
140 color: #6b499f 165 color: #6b499f
141 } 166 }
142 pre .atv,pre .attribute-value,.prettyprint .atv,.prettyprint .attribute-value { 167 pre .atv,pre .attribute-value,.prettyprint .atv,.prettyprint .attribute-value {
143 color: #7986cb 168 color: #7986cb
144 } 169 }
145 pre .com,pre .comment,.prettyprint .com,.prettyprint .comment { 170 pre .com,pre .comment,.prettyprint .com,.prettyprint .comment {
146 color: #8a8a8a 171 color: #8a8a8a
147 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698