Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<!--
Copyright 2013 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<title>polymer-ui-tabs</title>
<script src="../../polymer/polymer.js"></script>
<!-- use default polymer icon set -->
<polymer-ui-icon-button icon="menu"></polymer-ui-icon-button>
<polymer-ui-icon-button icon="trash"></polymer-ui-icon-button>
<polymer-ui-menu-item icon="add" label="Add"></polymer-ui-menu-item>
<polymer-ui-menu-item icon="trash" label="Trash"></polymer-ui-menu-item>
<polymer-ui-menu-item icon="settings" label="Settings"></polymer-ui-menu-item>
<!-- register user defined icon set (note: polymer-ui-iconset isa polymer-meta) -->
<polymer-ui-iconset id="my-icons" src="../assets/my-icons.png" width="1000" iconsize="40"
<!-- using polymer icon set -->
<polymer-ui-toolbar>
<polymer-ui-icon-button icon="menu"></polymer-ui-icon-button>
<div flex>polymer icon set</div>
<polymer-ui-icon-button icon="trash"></polymer-ui-icon-button>
</polymer-ui-toolbar>
<br><br>
<polymer-ui-menu selected="0">
<polymer-ui-menu-item icon="add" label="Add"></polymer-ui-menu-item>
<!doctype html>
<!--
Copyright 2013 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<title>polymer-ui-menu</title>
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@frankiefu
frankiefu / designer.html
Created September 3, 2014 22:09
designer
<link rel="import" href="../paper-calculator/paper-calculator.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@frankiefu
frankiefu / designer.html
Created September 3, 2014 23:30
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
<!doctype html>
<html>
<head>
<title></title>
<script src="../../../platform/platform.js"></script>
<link rel="import" href="../../polymer.html">
</head>
<body>
<polymer-element name="x-foo" noscript>
<template>x-foo</template>
<core-drawer-panel>
<core-header-panel drawer>
<core-toolbar>
<div>Application</div>
</core-toolbar>
<div> Drawer content... </div>
</core-header-panel>
<core-header-panel main>
<core-toolbar>
<!--
@license
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
-->
<link rel="import" href="../components/polymer/polymer.html">