| Index: third_party/polymer/v0_8/components-chromium/iron-icons/demo/index.html
|
| diff --git a/third_party/polymer/v0_8/components-chromium/iron-icons/demo/index.html b/third_party/polymer/v0_8/components-chromium/iron-icons/demo/index.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..56bbcd742765672c2cb578f41d4227878488e604
|
| --- /dev/null
|
| +++ b/third_party/polymer/v0_8/components-chromium/iron-icons/demo/index.html
|
| @@ -0,0 +1,118 @@
|
| +<!doctype html>
|
| +<!--
|
| +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
|
| +-->
|
| +
|
| +<html>
|
| +<head>
|
| +
|
| + <title>iron-icons</title>
|
| +
|
| + <!-- polyfill WebComponents, if needed -->
|
| + <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
|
| +
|
| + <!-- load layout classes -->
|
| + <link rel="import" href="../../paper-styles/classes/layout.html">
|
| +
|
| + <!-- load default iconset -->
|
| + <link rel="import" href="../iron-icons.html">
|
| +
|
| + <!-- load the rest -->
|
| + <link rel="import" href="../av-icons.html">
|
| + <link rel="import" href="../communication-icons.html">
|
| + <link rel="import" href="../device-icons.html">
|
| + <link rel="import" href="../editor-icons.html">
|
| + <link rel="import" href="../hardware-icons.html">
|
| + <link rel="import" href="../image-icons.html">
|
| + <link rel="import" href="../maps-icons.html">
|
| + <link rel="import" href="../notification-icons.html">
|
| + <link rel="import" href="../social-icons.html">
|
| +
|
| + <style>
|
| +
|
| + body {
|
| + font-family: sans-serif;
|
| + }
|
| +
|
| + h2 {
|
| + text-transform: capitalize;
|
| + }
|
| +
|
| + iron-icon {
|
| + transition: all 0.2s;
|
| + -webkit-transition: all 0.2s;
|
| + }
|
| +
|
| + iron-icon:hover {
|
| + fill: #fb8c00;
|
| + }
|
| +
|
| + .set {
|
| + padding: 1em 0;
|
| + border-bottom: 1px solid silver;
|
| + }
|
| +
|
| + .set:nth-of-type(4n-3) {
|
| + color: #656565;
|
| + }
|
| +
|
| + .set:nth-of-type(4n-2) {
|
| + color: #FDD835;
|
| + }
|
| +
|
| + .set:nth-of-type(4n-1) {
|
| + color: #0D904F;
|
| + }
|
| +
|
| + .set:nth-of-type(4n) {
|
| + color: #3B78E7;
|
| + }
|
| +
|
| + .container {
|
| + min-width: 20em;
|
| + padding: 1em 0.5em;
|
| + }
|
| +
|
| + .container > div {
|
| + margin-top: 0.5em;
|
| + color: black;
|
| + font-size: 0.8em;
|
| + }
|
| +
|
| + </style>
|
| +
|
| +</head>
|
| +<body>
|
| +
|
| + <template is="x-autobind">
|
| +
|
| + <iron-meta type="iconset" list="{{iconsets}}"></iron-meta>
|
| +
|
| + <template is="x-repeat" items="{{iconsets}}">
|
| +
|
| + <h2>{{item.name}}</h2>
|
| +
|
| + <div class="set horizontal wrap layout">
|
| +
|
| + <template is="x-repeat" items="{{item.iconNames}}">
|
| +
|
| + <span class="container vertical center layout">
|
| + <iron-icon icon="{{item}}"></iron-icon>
|
| + <div>{{item}}</div>
|
| + </span>
|
| +
|
| + </template>
|
| +
|
| + </div>
|
| +
|
| + </template>
|
| +
|
| + </template>
|
| +
|
| +</body>
|
| +</html>
|
|
|