Index: bower_components/paper-elements/demos/core-toolbar.html |
diff --git a/bower_components/paper-elements/demos/core-toolbar.html b/bower_components/paper-elements/demos/core-toolbar.html |
deleted file mode 100644 |
index ba76d18f3373f78df1d855013ec20b75ff7663e1..0000000000000000000000000000000000000000 |
--- a/bower_components/paper-elements/demos/core-toolbar.html |
+++ /dev/null |
@@ -1,110 +0,0 @@ |
-<!doctype html> |
-<!-- |
-Copyright (c) 2014 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> |
- |
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes"> |
- |
- <title>core-toolbar</title> |
- |
- <script src="../../platform/platform.js"></script> |
- |
- <link rel="import" href="../../font-roboto/roboto.html"> |
- <link rel="import" href="../../core-icons/core-icons.html"> |
- <link rel="import" href="../../core-toolbar/core-toolbar.html"> |
- <link rel="import" href="../../core-media-query/core-media-query.html"> |
- <link rel="import" href="../../paper-icon-button/paper-icon-button.html"> |
- |
- <style> |
- |
- body { |
- font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; |
- margin: 0; |
- padding: 24px; |
- } |
- |
- core-toolbar { |
- color: #f1f1f1; |
- fill: #f1f1f1; |
- } |
- |
- </style> |
- |
-</head> |
-<body unresolved> |
- |
- <core-toolbar style="background: #4285f4;"> |
- <paper-icon-button icon="menu"></paper-icon-button> |
- <span flex>Title</span> |
- <paper-icon-button icon="refresh"></paper-icon-button> |
- <paper-icon-button icon="more-vert"></paper-icon-button> |
- </core-toolbar> |
- |
- <br> |
- |
- <core-toolbar style="background: #3f51b5;"> |
- <paper-icon-button icon="menu"></paper-icon-button> |
- <span flex>Title</span> |
- <paper-icon-button icon="refresh"></paper-icon-button> |
- <paper-icon-button icon="more-vert"></paper-icon-button> |
- </core-toolbar> |
- |
- <br> |
- |
- <core-toolbar class="tall" style="background: #0f9d58;"> |
- <paper-icon-button icon="menu"></paper-icon-button> |
- <span flex>Title</span> |
- <paper-icon-button icon="refresh"></paper-icon-button> |
- <paper-icon-button icon="more-vert"></paper-icon-button> |
- </core-toolbar> |
- |
- <br> |
- |
- <core-toolbar class="tall" style="background: #ffeb3b; color: #333; fill: #333;"> |
- <paper-icon-button icon="menu" class="bottom"></paper-icon-button> |
- <span flex class="bottom">Title</span> |
- <paper-icon-button icon="refresh" class="bottom"></paper-icon-button> |
- <paper-icon-button icon="more-vert" class="bottom"></paper-icon-button> |
- </core-toolbar> |
- |
- <br> |
- |
- <core-toolbar class="medium-tall" style="background: #ff5722;"> |
- <paper-icon-button icon="menu"></paper-icon-button> |
- <span flex></span> |
- <paper-icon-button icon="refresh"></paper-icon-button> |
- <paper-icon-button icon="more-vert"></paper-icon-button> |
- <span class="bottom indent">Title</span> |
- </core-toolbar> |
- |
- <br> |
- |
- <core-toolbar class="tall" style="background: #9c27b0;"> |
- <paper-icon-button icon="menu"></paper-icon-button> |
- <div flex></div> |
- <paper-icon-button icon="refresh"></paper-icon-button> |
- <paper-icon-button icon="more-vert"></paper-icon-button> |
- <div flex class="middle indent">Title</div> |
- <div flex class="bottom indent" style="font-size: 18px;">Title2</div> |
- </core-toolbar> |
- |
- <core-media-query id="mediaQuery" query="max-width: 800px"></core-media-query> |
- |
- <script> |
- |
- document.querySelector('#mediaQuery').addEventListener('core-media-change', |
- function(e) { |
- document.body.classList.toggle('core-narrow', e.detail.matches); |
- }); |
- |
- </script> |
- |
-</body> |
-</html> |