Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<head>
  <title>Simple app-layout toolbars</title>
  <!-- import latest release version of all components from polygit -->
  <base href="https://polygit.org/components/">
  <script src="webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="app-layout/app-toolbar/app-toolbar.html">
  <!-- sample-content included for demo purposes only -->
  <link rel="import" href="app-layout/demo/sample-content.html">
  
  <!-- elements for the icons in the toolbar -->
  <link rel="import" href="paper-icon-button/paper-icon-button.html">
  <link rel="import" href="iron-icons/iron-icons.html">
  <style is="custom-style">
    body {
      /* No margin on body so toolbar can span the screen */
      margin: 0;
    }
    app-toolbar {
      /* Toolbar is the main header, so give it some color */
      background-color: #1E88E5;
      font-family: 'Roboto', Helvetica, sans-serif;
      color: white;
      --app-toolbar-font-size: 24px;
    }
  </style>
</head>
<body>
  <app-toolbar>
    <div title>Spork</div>
  </app-toolbar>
  
  <!-- Uncomment this if you want icons in your toolbar -->
  <!-- <app-toolbar>
    <paper-icon-button icon="menu"></paper-icon-button>
    <div title>Spork</div>
    <paper-icon-button icon="search"></paper-icon-button>
  </app-toolbar> -->
  <sample-content size="10"></sample-content>
</body>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
notwaldorfpro
0viewers