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

Unified Diff: polymer_1.0.4/bower_components/iron-component-page/iron-component-page.css

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: polymer_1.0.4/bower_components/iron-component-page/iron-component-page.css
diff --git a/polymer_1.0.4/bower_components/iron-component-page/iron-component-page.css b/polymer_1.0.4/bower_components/iron-component-page/iron-component-page.css
new file mode 100644
index 0000000000000000000000000000000000000000..4c2c7c71738008eec18df79b7e4aa9a2a5d6ff42
--- /dev/null
+++ b/polymer_1.0.4/bower_components/iron-component-page/iron-component-page.css
@@ -0,0 +1,155 @@
+/**
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+
+*/
+:host {
+ font-family: 'Roboto', 'Noto', sans-serif;
+ @apply(--layout-fit);
+ @apply(--layout);
+ @apply(--layout-vertical);
+ overflow: hidden;
+ background: var(--paper-grey-50);
+}
+
+p {
+ max-width: 20em;
+}
+
+paper-header-panel {
+ @apply(--layout-flex);
+ background: var(--paper-grey-50);
+}
+
+paper-toolbar {
+ --paper-toolbar-background: var(--paper-grey-50);
+ --paper-toolbar-color: var(--paper-grey-800);
+ flex-shrink: 0;
+}
+
+:host > paper-header-panel {
+ opacity: 0;
+ transition: opacity 0.5s;
+}
+
+:host(.loaded) > paper-header-panel {
+ opacity: 1.0;
+}
+
+#content {
+ display: block;
+ background: var(--paper-grey-50);
+}
+
+paper-toolbar a {
+ margin: 0 10px;
+ cursor: pointer;
+}
+
+paper-toolbar a:last-child {
+ margin-right: 0;
+}
+
+paper-toolbar a, paper-toolbar a iron-icon {
+ font-weight: normal;
+ color: var(--paper-grey-500);
+}
+
+paper-toolbar iron-icon {
+ margin: -2px 5px 0 0;
+}
+
+paper-toolbar a:hover, paper-toolbar a:hover iron-icon, paper-toolbar a.iron-selected, paper-toolbar a.iron-selected iron-icon {
+ color: var(--paper-grey-800);
+}
+
+#demo {
+ @apply(--layout-fit);
+}
+
+#nodocs {
+ background: var(--paper-grey-50);
+ font-size: 24px;
+ font-weight: 400;
+ color: var(--paper-grey-400);
+}
+
+#demo {
+ border: 0;
+ background: transparent;
+ width: 100%;
+ height: 100%;
+ overflow-x: none;
+ overflow-y: auto;
+}
+
+#view > * {
+ display: none;
+}
+
+#view > .iron-selected {
+ display: block;
+}
+
+#docs {
+ padding: 20px;
+ max-width: 48em;
+ margin: 0 auto;
+}
+
+#active {
+ font-size: 20px;
+ font-family: Roboto, Noto;
+ border: 0;
+ background: transparent;
+}
+
+paper-toolbar a {
+ font-size: 14px;
+ text-transform: uppercase;
+ cursor: pointer;
+}
+
+#cart-icon {
+ margin-left: 10px;
+ cursor: pointer;
+}
+
+#catalog-heading {
+ margin: 4px 0 18px;
+}
+
+#catalog-heading h2 {
+ color: var(--paper-grey-800);
+ @apply(--paper-font-title);
+ margin: 0;
+}
+
+#catalog-heading .version {
+ color: var(--paper-grey-500);
+ font-size: 18px;
+ line-height: 24px;
+ font-weight: 400;
+}
+#catalog-heading .version:before {
+ content: "(";
+}
+#catalog-heading .version:after {
+ content: ")";
+}
+
+[catalog-only] {
+ display: none;
+}
+
+:host([_catalog]) [catalog-only] {
+ display: block;
+}
+:host([_catalog]) [catalog-hidden] {
+ display: none;
+}

Powered by Google App Engine
This is Rietveld 408576698